Mounting and Accessing a USB Drive on the Raspberry Pi

Mounting a USB is easy!

First you have to make/name your drive.

sudo mkdir /mnt/nameofyourdrive

Now we mount it.

sudo mount -o uid=pi,gid=pi /dev/sda /mnt/nameofyourdrive

Bada bing and you’re done.