How to set up nas for using with transmission

For help with mounting a drive with fstab, we need to know how it’s formatted. Mounting drives in OSMC with fstab is the same as about every other linux distro I’ve used so there’s plenty of help figuring out how to do so on the web. Here’s what I’m using to mount my drive, it’s formatted with ext4 which works very nicely with linux. NTFS will work but not as well.

osmc@osmc:~$ cat /etc/fstab 
/dev/mmcblk0p1  /boot    vfat     defaults,noatime    0   0
/dev/mmcblk0p2  /    ext4      defaults,noatime    0   0

/dev/sda1    /mnt/Main    ext4    rw,user,exec 0 0

I installed Deluge following @cocomic’s simple instructions here

Flexget installed pretty much standard. I followed this guide from their site. If you run into errors about “six”, it just needs to be upgraded.

To start them at boot I installed cron, ‘sudo apt-get install cron’ and am starting them thus:

@reboot /usr/bin/python /usr/local/bin/deluged
@reboot /usr/bin/python /usr/local/bin/flexget daemon start -d

with a blank line at the end when doing sudo crontab -e.