|
| 1 | +# External Storage configuration |
| 2 | +You can connect your external hard disk drive (HDD) to any of the USB ports on the Raspberry Pi, and mount the file system to access the data stored on your HDD. |
| 3 | + |
| 4 | +By default, Raspberry Pi automatically mounts some of the popular file systems such as FAT, NTFS, and HFS+ at `/media/pi/<HARD-DRIVE-LABEL>` location. |
| 5 | + |
| 6 | +To set up your HDD so that it always mounts to a specific location of your choice, you must manually mount your HDD. |
| 7 | + |
| 8 | +If your HDD has an exFAT partition, install the exFAT driver. |
| 9 | + |
| 10 | +## Installing the exFAT driver |
| 11 | +Run the following commands in the command line to update the Aptitude repository, then install the exFAT driver using the Aptitude Package Manager. |
| 12 | +``` |
| 13 | +sudo apt-get update |
| 14 | +sudo apt-get install exfat-fuse |
| 15 | +``` |
| 16 | + |
| 17 | +## Mounting an HDD |
| 18 | +You can mount your HDD at specific empty folder locations. |
| 19 | + |
| 20 | +1. Plug in the external HDD to a USB port on the Raspberry Pi. |
| 21 | +2. List the disk partitions on the device. Run the following command:
|
| 22 | + |
| 23 | + ``` |
| 24 | + sudo lsblk -o UUID,NAME,FSTYPE,SIZE,MOUNTPOINT,LABEL,MODEL |
| 25 | + ``` |
| 26 | + The Raspberry Pi uses mount points `/` and `/boot`. |
| 27 | +3. Use the SIZE, LABEL, and MODEL columns to identify the name of the disk partition that points to your HDD. For example, `sda1`. |
| 28 | +4. Run the following command to get the location of the disk partition. |
| 29 | +
|
| 30 | + ``` |
| 31 | + sudo blkid |
| 32 | + ``` |
| 33 | + For example, `/dev/sda1`. |
| 34 | +5. Create a target folder to be the mount point of the HDD. |
| 35 | + The mount point name used in this case is `PIHDD`. You can specify a name of your choice. |
| 36 | + Run the following command:
|
| 37 | +
|
| 38 | + ``` |
| 39 | + sudo mkdir /mnt/PIHDD |
| 40 | + ``` |
| 41 | +6. Mount the HDD from the location of the partition to the mount point you created. Run the following command:
|
| 42 | +
|
| 43 | + ``` |
| 44 | + sudo mount /dev/sda1 /mnt/PIHDD |
| 45 | + ``` |
| 46 | +7. Verify that the HDD is mounted successfully by listing the content. Run the following command:
|
| 47 | +
|
| 48 | + ``` |
| 49 | + ls /mnt/PIHDD |
| 50 | + ``` |
| 51 | +
|
| 52 | +## Setting up automatic mounting |
| 53 | +You can modify the `fstab` file to define the location where the HDD will be automatically mounted when the Raspberry Pi starts up. In the `fstab` file, the disk partition is identified by the universally unique identifier (UUID). |
| 54 | +
|
| 55 | +1. Get the UUID of the disk partition. Run the following command:
|
| 56 | +
|
| 57 | + ``` |
| 58 | + sudo blkid |
| 59 | + ``` |
| 60 | +2. Find the disk partition from the list and note the UUID. For example, `5C24-1453`. |
| 61 | +3. Edit the fstab file using a command line editor such as nano. Run the following command:
|
| 62 | +
|
| 63 | + ``` |
| 64 | + sudo nano /etc/fstab |
| 65 | + ``` |
| 66 | +4. Add the following line in the `fstab` file.
|
| 67 | +
|
| 68 | + ``` |
| 69 | + UUID=5C24-1453 /mnt/PIHDD exfat defaults,auto,umask=000,users,rw 0 0 |
| 70 | + ``` |
| 71 | +
|
| 72 | +For more information on the Linux commands, refer to the specific manual pages using the `man` command. For example, `man fstab`. |
| 73 | +
|
| 74 | +## Unmounting an HDD |
| 75 | +Before you unmount your HDD, ensure that there are no programs accessing the HDD. You can do this using the `lsof` command. |
| 76 | +
|
| 77 | +1. Run the following commands to install `lsof`. |
| 78 | +
|
| 79 | + ``` |
| 80 | + sudo apt-get update |
| 81 | + sudo apt-get install -y lsof |
| 82 | + ``` |
| 83 | +2. Get the list of programs using the mount point:
|
| 84 | +
|
| 85 | + ``` |
| 86 | + lsof /mnt/PIHDD |
| 87 | + ``` |
| 88 | + where `PIHDD` is the mount point name. |
| 89 | +3. Manually close all the programs that are using the mount point. |
| 90 | +4. Unmount the HDD. Run the following command:
|
| 91 | +
|
| 92 | + ``` |
| 93 | + sudo umount /mnt/PIHDD |
| 94 | + ``` |
| 95 | +5. Unplug the HDD and delete the mount point folder
. Run the following command: |
| 96 | +
|
| 97 | + ``` |
| 98 | + sudo rmdir /mnt/PIHDD |
| 99 | + ``` |
0 commit comments