tetromino Retired Dev
Joined: 02 Dec 2003 Posts: 215
|
Posted: Wed Apr 20, 2005 3:34 am Post subject: |
|
|
There aren't any special device nodes for usb drives. When you plug in a usb mass-storage device, linux usually pretends it's a SCSI hard drive (e.g. drive /dev/sda, partition /dev/sda1). Look for something like this Code: | Attached scsi removable disk sda at scsi2, channel 0, id 0, lun 0 | in your dmesg -- then you know the usb key is /dev/sda, and to access it you can mount -t vfat /dev/sda1 /mnt/usb |
|