

Code: Select all
/dev/sda /mnt/usbdrive auto defaults,user,noauto 0 0
it should be /dev/sda1 right? it doesn't mount in eighter case...azuriel wrote:Code: Select all
/dev/sda /mnt/usbdrive auto defaults,user,noauto 0 0

Code: Select all
$ mount -t vfat /dev/sda1 /home/me/usb
mount: only root can do thatCode: Select all
$ su
# fdisk -l
^^^this is THE most useful hack I've ever seen.
It lists all the formattable (and therefore mountable)
disks in your entire system, along with their partition type.
If you don't see your usbdrive there, you probably won't
be able to mount it
# mkdir /mnt/usb
^^^I would always try and keep your temporary mounts
somewhere within /mnt because then things don't get lost.
If you need permissions, see below
# chmod 775 /mount/usb
# chown alsuren:users /mnt/usb
# mount -t vfat /dev/sda1 /mnt/usb
# ls /mnt/usb

Code: Select all
/dev/ipod /mnt/ipod vfat user,noauto,defaults 0 0