You are not logged in.
Pages: 1
Know how to mount a cd-rom but how do one mount a USB-stick?
Last edited by ftornell (2008-12-29 22:42:48)
[ logicspot.NET | mempad.org ]
Archlinux x64
Offline
Maybe starte here:
http://wiki.archlinux.org/index.php/USB … ormal_user
Offline
first create a mountpoint: mkdir /mnt/usbstick (for example)
mount -t vfat /dev/sdb (usbstick) /mnt/usbstick
vfat is the filesystem
Last edited by arch0r (2008-12-29 22:28:17)
Offline
Perhaps the mount command given in the thread has to be done with root...................
Prediction...This year will be a very odd year!
Hard work does not kill people but why risk it: Charlie Mccarthy
A man is not complete until he is married..then..he is finished.
When ALL is lost, what can be found? Even bytes get lonely for a little bit! X-ray confirms Iam spineless!
Offline
and ...
I betcha it should be '/dev/sdb1'
And as an en-passant, if you are not quite sure about the fs-type, try '-t auto' or simply, just omit it alltogether
mount /dev/sdb1 /mnt/usbstick
If you want to know the fs-type, do a 'cat /etc/mtab' after it has been mounted
Last edited by perbh (2008-12-30 13:30:10)
Offline
Pages: 1