Reply
 
Thread Tools Display Modes
  #1  
Old 01-13-2008, 01:05 PM
Doc Doc is offline
Junior Member
 
Join Date: Sep 2006
Posts: 8
Thanks: 0
Thanked 0 Times in 0 Posts
Default Unable to mount USB stick
Hi everyone. I've just installed the latest version of PC-BSD after lurking on these forums for the last year or so. Everything went well and in general the system seems to be working fine. The only problem I've encountered so far is that I'm unable to mount my usb stick.

I've tried inserting three different usb sticks and always get the same error message from dmesg | tail:

Code:
uhub1: device problem (SHORT_XFER), disabling port 4
All these sticks mount without a problem in Linux and Windows so I'm fairly sure they're not the problem. I don't know if it helps, but here's the spec of my system:

AMD 64 3800+ (single core), 3GB RAM, Nvidia 6600GT, 3xSATA hard drives, USB WACOM tablet (system seems to recognise this), PS2 mouse and keyboard, MSI K8 Neo4 Platinum motherboard (with latest bios).

Any suggestions?
Reply With Quote
  #2  
Old 01-14-2008, 06:21 AM
Gerard's Avatar
Gerard Gerard is offline
Super Moderator
 
Join Date: Jul 2005
Location: UK
Posts: 466
Thanks: 0
Thanked 1 Time in 1 Post
Default Re: Unable to mount USB stick
If it's a large memory stick, try:

Code:
mount -t msdosfs -o large /dev/YOURDISK /mnt
__________________
FreeBSD News:
www.freebsdnews.net
Reply With Quote
  #3  
Old 01-14-2008, 07:56 AM
Doc Doc is offline
Junior Member
 
Join Date: Sep 2006
Posts: 8
Thanks: 0
Thanked 0 Times in 0 Posts
Default Re: Unable to mount USB stick
Originally Posted by Gerard
If it's a large memory stick, try:

Code:
mount -t msdosfs -o large /dev/YOURDISK /mnt
OK, but given the error message I'm not sure a device node has even been created. How can I check this (there's no clue in dmesg)? Also, it's a 4GB fat32 partition on the stick, so I would presume I need to use vfat rather than msdosfs?

Thanks for the help so far.
Reply With Quote
  #4  
Old 01-14-2008, 10:32 AM
DragnLord DragnLord is offline
Senior Member
 
Join Date: Feb 2006
Location: C'ville, Va.
Posts: 695
Thanks: 0
Thanked 0 Times in 0 Posts
Default Re: Unable to mount USB stick
Originally Posted by Doc
OK, but given the error message I'm not sure a device node has even been created. How can I check this (there's no clue in dmesg)?
"ls /dev" will list all device nodes
Quote:
Also, it's a 4GB fat32 partition on the stick, so I would presume I need to use vfat rather than msdosfs?
BSD is very efficient, "msdosfs" covers FAT32 filesystems.
__________________
add [SOLVED] to topics with solutions
psearch: use it, love it
Reply With Quote
  #5  
Old 01-14-2008, 11:38 AM
Gerard's Avatar
Gerard Gerard is offline
Super Moderator
 
Join Date: Jul 2005
Location: UK
Posts: 466
Thanks: 0
Thanked 1 Time in 1 Post
Default Re: Unable to mount USB stick
Originally Posted by Doc
Originally Posted by Gerard
If it's a large memory stick, try:

Code:
mount -t msdosfs -o large /dev/YOURDISK /mnt
OK, but given the error message I'm not sure a device node has even been created. How can I check this (there's no clue in dmesg)? Also, it's a 4GB fat32 partition on the stick, so I would presume I need to use vfat rather than msdosfs?

Thanks for the help so far.



Code:
mount -t msdosfs -o large /dev/YOURDISK /mnt
This is how I mount my external 200GB Fat32 drive
__________________
FreeBSD News:
www.freebsdnews.net
Reply With Quote
  #6  
Old 01-14-2008, 03:38 PM
Doc Doc is offline
Junior Member
 
Join Date: Sep 2006
Posts: 8
Thanks: 0
Thanked 0 Times in 0 Posts
Default Re: Unable to mount USB stick
OK. tried again and again I got this message:
Code:
uhub1: device problem (SHORT_XFER), disabling port 4
ls /dev returned:

Code:
%ls /dev
acd0       ata        dsp0.0     fwmem0     net3       ptyp4      ttyv4
acpi       atkbd0     dsp0.1     fwmem0.0   net4       random     ttyv5
ad0        audio0.0   dsp0.2     geom.ctl   net5       sndstat    ttyv6
ad0s1      audio0.1   dsp0.3     io         net6       stderr     ttyv7
ad0s2      audio0.2   dsp0.4     kbd0       network    stdin      ttyv8
ad0s5      audio0.3   dsp0.5     kbd1       nfs4       stdout     ttyv9
ad1        audio0.4   dspW0.0    kbdmux0    nfslock    sysmouse   ttyva
ad1s1      audio0.5   dspW0.1    klog       null       ttyd0      ttyvb
ad1s2      bpsm0      dspW0.2    kmem       nvidia0    ttyd0.init ttyvc
ad1s5      cd0        dspW0.3    log        nvidiactl  ttyd0.lock ttyvd
ad2        cdrom      dspW0.4    lpt0       pass0      ttyp0      ttyve
ad2s1      console    dspW0.5    lpt0.ctl   pci        ttyp1      ttyvf
ad2s1a     consolectl dspr0.1    md0        pf         ttyp2      ums0
ad2s1b     ctty       dvd        mdctl      ppi0       ttyp3      urandom
ad2s1c     cuad0      fd         mem        psm0       ttyp4      usb
ad2s2      cuad0.init fd0        mixer0     ptyp0      ttyv0      usb0
ad2s3      cuad0.lock fido       net        ptyp1      ttyv1      usb1
ad2s5      devctl     fw0        net1       ptyp2      ttyv2      xpt0
apm        devstat    fw0.0      net2       ptyp3      ttyv3      zero
This is a corsair voyager usbstick, and I can't see anything that could be it.
Reply With Quote
  #7  
Old 01-15-2008, 04:31 AM
DragnLord DragnLord is offline
Senior Member
 
Join Date: Feb 2006
Location: C'ville, Va.
Posts: 695
Thanks: 0
Thanked 0 Times in 0 Posts
Default Re: Unable to mount USB stick
This may seem like an odd question, but it has to asked so as to not assume.
Have you tried all the USB ports on that computer?
__________________
add [SOLVED] to topics with solutions
psearch: use it, love it
Reply With Quote
  #8  
Old 01-15-2008, 06:07 AM
Doc Doc is offline
Junior Member
 
Join Date: Sep 2006
Posts: 8
Thanks: 0
Thanked 0 Times in 0 Posts
Default Re: Unable to mount USB stick
Originally Posted by DragnLord
This may seem like an odd question, but it has to asked so as to not assume.
Have you tried all the USB ports on that computer?
Don't worrry, I'm an IT tech for a job so I've got used to checking the obvious first. So yes, all usb ports return the same type of error.
Reply With Quote
  #9  
Old 03-30-2008, 04:07 AM
wmjodea wmjodea is offline
Member
 
Join Date: Mar 2008
Posts: 30
Thanks: 0
Thanked 0 Times in 0 Posts
Default Re: Unable to mount USB stick
Try mount -t msdosfs /dev/da0 /media or mount -t msdosfs /dev/da0s1. Sometimes da0 is used for usb memory sticks some sticks mount as da0s1. Configure you /etc/fstab file: /dev/da0 /media msdosfs rw,noauto 0 0 then to mount just type mount /dev/da0 (or /dev/da0s1).
Reply With Quote
  #10  
Old 03-30-2008, 07:07 AM
Oko Oko is offline
Senior Member
 
Join Date: May 2007
Posts: 677
Thanks: 0
Thanked 0 Times in 0 Posts
Default Re: Unable to mount USB stick
Originally Posted by wmjodea
Try mount -t msdosfs /dev/da0 /media or mount -t msdosfs /dev/da0s1. Sometimes da0 is used for usb memory sticks some sticks mount as da0s1. Configure you /etc/fstab file: /dev/da0 /media msdosfs rw,noauto 0 0 then to mount just type mount /dev/da0 (or /dev/da0s1).

That is actually a good advice.
Go to su - mode and read dmesg.
Your USB stick should be seen by a SCSI driver da but it should be mounted as
Code:
 
mount -t msdosfs /dev/da0s1 /mnt
Auto mounting should work too but you will have to do little bit more configuration then just fstab. You will have to edit usbd.conf file as well.
Reply With Quote
Reply

Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off

Forum Jump

Similar Threads
Thread Thread Starter Forum Replies Last Post
Unable to mount audio CD bradleyjpb Sound and Multimedia 1 12-06-2009 11:35 AM
smbfs/cifs unable to mount shares basketcase Usage Bug Reports 3 01-08-2009 03:03 AM
Unable to Mount CDs following update! rodonn Usage Bug Reports 0 10-02-2007 08:36 AM
Unable to mount ext3 & ntfs ... void_man() General Questions 5 09-15-2007 09:54 PM
[solved] PCBSD unable to mount usb flash device! csynt Drives 8 09-30-2006 11:32 PM


All times are GMT. The time now is 12:38 PM.


Powered by vBulletin® Version 3.8.5
Copyright ©2000 - 2013, Jelsoft Enterprises Ltd.

Copyright 2005-2010, The PC-BSD Project. PC-BSD and the PC-BSD logo are registered trademarks of iXsystems.
All other content is freely available for sharing under the terms of the Creative Commons Attribution License.