I'm trying to get Raspbian to recognize a USB memory stick. Simonsmall wrote recently:
*****************
First issue this command -
pi@raspberrypi ~ $ ls -laF /dev/disk/by-uuid/
total 0
drwxr-xr-x 2 root root 120 Jan 1 1970 ./
drwxr-xr-x 6 root root 120 Jan 1 1970 ../
lrwxrwxrwx 1 root root 15 Jan 1 1970 1A8A-8E1C -> ../../mmcblk0p1
lrwxrwxrwx 1 root root 15 Jun 21 17:53 1B97-0057 -> ../../mmcblk0p5
lrwxrwxrwx 1 root root 15 Jun 21 17:53 53990179-b4d2-8e98-1c7d-a23b681c0419 -> ../../mmcblk0p6
lrwxrwxrwx 1 root root 15 Jan 1 1970 c37891bd-e98a-97e2-81cd-b3c78d7c93b5 -> ../../mmcblk0p3
pi@raspberrypi ~ $
This shows the "devices" that the hardware knows about, in this case the parts of the SD Card that NOOBS created.
Now, plug in the thumb drive into a USB socket. Type the same thing again.
pi@raspberrypi ~ $ ls -laF /dev/disk/by-uuid/
total 0
drwxr-xr-x 2 root root 120 Jan 1 1970 ./
drwxr-xr-x 6 root root 120 Jan 1 1970 ../
lrwxrwxrwx 1 root root 15 Jan 1 1970 1A8A-8E1C -> ../../mmcblk0p1
lrwxrwxrwx 1 root root 15 Jun 21 17:53 1B97-0057 -> ../../mmcblk0p5
lrwxrwxrwx 1 root root 10 Jun 17 11:36 38C1-D07C -> ../../sda1
lrwxrwxrwx 1 root root 15 Jun 21 17:53 53990179-b4d2-8e98-1c7d-a23b681c0419 -> ../../mmcblk0p6
lrwxrwxrwx 1 root root 15 Jan 1 1970 c37891bd-e98a-97e2-81cd-b3c78d7c93b5 -> ../../mmcblk0p3
pi@raspberrypi ~ $
There is a 'new' line that shows what the thumb drive has been called, in this case "sda1")
****************
Trouble is, in my case there is no new line with sda1 or anything else. The output is identical both times. What is wrong? I have files on the memory stick I want to use on the Pi (tar files). How do I get Raspbian to "see" the memory stick so I can hook it into the file structure? (Yes, I'm a complete newbie...)
