tbd
# Use this locally by cloneing
git clone [email protected]:5a8e9fe406ea9dddef3d258210747b85.git
I have used the following hardware:
- Raspberry Pi Model B, Revision 2.0
- RF Modulator (Composit-Video to UHF)
- external IDE drive [MAXTOR MaxLine II, 300GB]
- IDE to USB Adaper with external Power-supply.
See https://www.cyberciti.biz/faq/linux-disk-format/ for details.
# use fdisk to format disk:
# - p – display the partition table
# - i – show information about a partition
# - d – delete a partition
# - n – create a new partition
# - v – verify the partition table
# - w – write the new partition table and exit
fdisk
# Format using the ext4 fiel system
mkfs.ext4 /dev/sda1
# mount the drive to /mnt/usbdrive/
mount /dev/sda1 /mnt/usbdrive/
# mount on boot
### TODO: see https://www.cyberciti.biz/faq/linux-disk-format/
# Add debian-transmission user to the pi group
sudo usermod -a -G pi debian-transmission
# Make the directories group-writable
sudo chmod -R g+rwx /mnt/usbdrive/
# Ensure new files maintain the group permissions
sudo chmod g+s /mnt/usbdrive/
sudo chmod g+s /mnt/usbdrive/downloads