32GBのMicroSDしか無い状態なので、外付けでHDDを追加します。
用意したのは裸族の集合住宅5Bay。
Raspberry側はUSB2.0だけど、気にしない。
接続してからfdiskで、接続場所を確認。
$ sudo fdisk -l Disk /dev/mmcblk0: 31.5 GB, 31486640128 bytes 4 heads, 16 sectors/track, 960896 cylinders, total 61497344 sectors Units = sectors of 1 * 512 = 512 bytes Sector size (logical/physical): 512 bytes / 512 bytes I/O size (minimum/optimal): 512 bytes / 512 bytes Disk identifier: 0xa6202af7 Device Boot Start End Blocks Id System /dev/mmcblk0p1 8192 122879 57344 c W95 FAT32 (LBA) /dev/mmcblk0p2 122880 61497343 30687232 83 Linux WARNING: GPT (GUID Partition Table) detected on '/dev/sda'! The util fdisk doesn't support GPT. Use GNU Parted. Disk /dev/sda: 3000.6 GB, 3000592982016 bytes 255 heads, 63 sectors/track, 364801 cylinders, total 5860533168 sectors Units = sectors of 1 * 512 = 512 bytes Sector size (logical/physical): 512 bytes / 4096 bytes I/O size (minimum/optimal): 4096 bytes / 4096 bytes Disk identifier: 0x00000000 Device Boot Start End Blocks Id System /dev/sda1 1 4294967295 2147483647+ ee GPT Partition 1 does not start on physical sector boundary.
こんなカンジ。
接続場所が確認できたら、今度はUUIDの確認。
$ sudo blkid /dev/sda1 /dev/sda1: UUID="e4da63ba-3a37-4970-a150-43e26f28a42b" TYPE="xfs"
ふむ。
UUIDが確認できたら、この情報を元にfstabへ追記。
$ sudo vi /etc/fstab # Drive-1 3TB UUID=e4da63ba-3a37-4970-a150-43e26f28a42b /media/D xfs defaults 0 0
こんなんで。
あとは
mount -a
でマウントさせればOK。