|
You know, I can't see shit from such downscaled pictures. As for automounting USB-devices: I have no idea if Raspbian does that or not; some distros do automount, some don't, and usually automounting works only when you have a GUI-desktop running anyways. Check with the dmesg - command for what disk-device the system uses for it, ie. /dev/sdb or /dev/sdc or whatever and just proceed to mount it manually. It is probably sdb, so something along the lines of- mount /dev/sdb1 /mnt/wherever_you_want_it_mounted
Copy code should work if you are using FAT or ext2/3/4 on it,- ntfs-3g /dev/sdb1 /mnt/wherever_you_want_it_mounted
Copy code if it's NTFS.
Do chime back in if you run into more trouble. |
|