Results 1 to 5 of 5
hi all,
i am using debian sarge, if anyone can help that wud be great.
i've tried
mount -t -vfat /dev/sda1 /mnt/usbkey
but i get the error message "unknow filesystem ...
- 07-11-2006 #1Just Joined!
- Join Date
- Aug 2005
- Posts
- 4
usb key mounting
hi all,
i am using debian sarge, if anyone can help that wud be great.
i've tried
mount -t -vfat /dev/sda1 /mnt/usbkey
but i get the error message "unknow filesystem type -vfat"
thx
- 07-11-2006 #2
Try the same command as above, without the dash in front of "vfat":
Code:mount -t vfat /dev/sda1 /mnt/usbkey
Registered Linux user #270181
TechieMoe's Tech Rants
- 07-11-2006 #3Just Joined!
- Join Date
- Aug 2005
- Posts
- 4
that doesn't work either i get the error
mount: special device dev/sda does not exist
- 07-11-2006 #4Are you sure your USB device is being identified as /dev/sda1? Is that what the output of dmesg is telling you?
Originally Posted by docetes Registered Linux user #270181
TechieMoe's Tech Rants
- 07-11-2006 #5Make sure you are using the right device.
Originally Posted by docetes
Upon inserting the USB key, type :
to know the exact device.Code:dmesg | tail
It will tell you a bunch of stuff like that :
Then you can mount the thing :
Originally Posted by output of "dmesg | tail"
EDIT: Oups, didn't saw your post techieMoe...Code:mount -t vfat -o iocharset=utf8,umask=0000,user /dev/sdb1 /mnt/usbkey
"To express yourself in freedom, you must die to everything of yesterday. From the 'old', you derive security; from the 'new', you gain the flow."
-Bruce Lee


Reply With Quote
