Plug in your USB stick , and after a minute , type:
- Code: Select all
dmesg | grep -i "SCSI"
( or
dmesg | tail might work also )
you should then see something like this:
- Code: Select all
SCSI device sda: 64512 512-byte hdwr sectors (33 MB)
SCSI device sda: 64512 512-byte hdwr sectors (33 MB)
Then you need a place to mount the drive , I just mount mine at home:
- Code: Select all
mkdir ~/Flash
Then mount it something like this: ( might need to change the path )
- Code: Select all
mount -t vfat -o uid=pluto,gid=users /dev/sda1 /home/pluto/Flash
and then to unmount it:
- Code: Select all
umount /home/pluto/Flash
As always ,the man(ual) page might help , or post back
- Code: Select all
man mount