MountUsb
From MorphixWiki
To [mount] your USB Key, you can use two ways:
[edit] Graphical.
Get root and type :
nano /etc/fstab
and add:
/dev/sda1 /mnt/auto/key1 auto defaults,rw,user,noexec,noauto 0 0
and mount:
mount /mnt/auto/key1
Use your mouse right button on the desktop and select Disk/Key1 (instead of Key1 you can use USB if you want; but key1 it's more clear if you have another USB devices).
Aditional links
- http://hegel.ittc.ukans.edu/topics/linux/man-pages/man5/fstab.5.html
- http://www.mepis.org/book/view/189
- http://users.actrix.co.nz/michael/usbmount.html
[edit] Textual
Get root and type:
mount /dev/sda1 /mnt/usb
or
mount /dev/sda1 /mnt/auto/key1
If it doesn't work then try this:
mount -t vfat /dev/sda1 /mnt/usb
If it still doesn't work try this (some usb keys don't have a partition table on them):
mount -t vfat /dev/sda /mnt/usb

