Basic Instalation - rmhulle/NAATS GitHub Wiki

Install

sudo apt-get -y install transmission-daemon

sudo apt-get -y install python-pip

sudo apt-get -y install smbd

sudo apt-get -y install ntfs-3g

sudo pip install flexget

sudo pip install transmissionrpc

Mount flash driver

sudo mount /dev/sda1 /mnt/pendrive -o umask=000 type=ntfs

sudo mount driver location mount location -o umask=000 type=ntfs/vfat/ext2/ext3/ext4

Unmount flash drive

sudo umount -l /dev/sda1

sudo mount -l driver location

Automount flash drive

Add new lines to file: /etc/fstab

/dev/sda1 /mnt/pendrive auto rw,nobootwait,nofail,umask=000 0 0

/dev/sda1 /mnt/pendrive ntfs-3g rw,nobootwait,nofail,auto,user,fmask=0111,dmask=0000 0 0

sudo mount -a

Configure Samba

TODO

Configure Transmission

Edit the settings.json file with your configuration (settings.json

sudo service transmission-daemon reload

Configure Flexget

Edit the config.yml file with your torrent preferences (config.yml

sudo crontab -e

Add the following line to crontab: @hourly /usr/local/bin/flexget execute --cron

To test the config file use: /usr/local/bin/flexget --test execute

Start services

sudo service transmission-daemon start

sudo service smba start

sudo /usr/local/bin/flexget daemon start