> From: r32 <http://www.comcast.net/~r32> > Date: Tue, 26 Jun 2012 09:18:06 -0400 > > How do I mount a USB flash drive? > I tried sudo mount -t msdos /dev/usbmon0 /usb0 (after I made > a usb0 directory) > "Not a Block device" You need to do $ dmesg | less and hit 'G' to go to the end. Right after you plug it in, it will detect it. Usually, it will say that the device name is "sdb". In which case, you'd want do something like $ sudo mount /dev/sdb /usb0 or $ sudo mount /dev/sdb1 /usb0 (If you're running a GUI, of course, all of the above is unnecessary because it usually automounts it and you can just access it through the mount point.)