Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save avinayak/183dab384413319bc16ec49699fd78b4 to your computer and use it in GitHub Desktop.
Save avinayak/183dab384413319bc16ec49699fd78b4 to your computer and use it in GitHub Desktop.
Installing transmission & plex in RPi for NTFS drives
install ntfs-3g from sudo apt-get install
install transmission-daemon
add next line to end of ~/.bashrc
sudo mount -t ntfs-3g -o uid=pi,gid=debian-transmission,umask=007 /dev/sda1 /mnt/d1
stop transmission daemon
sudo nano /etc/transmission-daemon/settings.json # set all folders an stuff
sudo usermod -a -G debian-transmission pi
sudo nano /etc/init.d/transmission-daemon #change USER=pi
restart and test from a browser
Plex!
install plex as in https://thepi.io/how-to-set-up-a-raspberry-pi-plex-server/ but do not do step 7
sudo usermod -a -G plex pi
sudo usermod -a -G debian-transmission plex
@avinayak
Copy link
Author

avinayak commented Jun 1, 2018

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment