Raspberry Pi - Tutorial #8 - Mounting Drives - Learn how to mount drives on your Pi!

Commands used in this tutorial:

tail -f /var/log/messages
sudo fdisk -l
cd /mnt
sudo mkdir /mnt/usbstick
sudo mount -t vfat -o uid=pi,gid=pi /dev/sda1 /mnt/usbstick
cd /mnt
sudo umount /mnt/usbstick
sudo umount /dev/sda1

Comments