Update and upgrade the Raspbian installation.
1 | sudo apt-get update && sudo apt-get upgrade |
Install the package necessary to automatically mount USB drives.
1 | sudo apt-get install usbmount |
Now plug a USB drive and issue the df command to view all volumes. My USB drive was recognized /dev/sdb and mounted as /media/usb0 by the system.
1 | df -hT |
To un-mount a volume make use of the df command above to discover the USB drive mount point and issue the unmount command as follows.
1 | sudo umount /media/usb0 |
— Apr 28, 2015