Thursday 4 July 2024

Transmission in Proxmox LXC containers


To allow containers to share same storage:
Config file of container: (/etc/pve/lxc/)
arch: amd64
cores: 1
features: nesting=1
hostname: transmossion
memory: 256
mp0: /USB/SEAGATE/NFS/TORRENT,mp=/TORRENT
nameserver: 192.168.1.1
net0: name=eth0,bridge=vmbr0,firewall=1,gw=192.168.0.1,hwaddr=XX:XX:XX:XX:XX:7F,ip=192.168.1.41/24,type=veth
onboot: 1
ostype: alpine
rootfs: local-lvm:vm-101-disk-0,mountoptions=lazytime,size=1G
swap: 256
unprivileged: 1

Change the file group ID:
chown -R 0:101000 /USB/SEAGATE/NFS/TORRENT 

To to allow connection to TRANSMISION from web GUI port 9091 edit the config file
FIRST STOP THE TRANSMISION (alpine i my cass uses inetd)
/etc/init.d/transmission-daemon stop

Edit the config file
vi /var/lib/transmission/config/settings.json 

    "rpc-whitelist": "192.168.1.*,127.0.0.1,::1",
    "rpc-whitelist-enabled": true,

Srart transmision after config change:
/etc/init.d/transmission-daemon stop

No comments:

Post a Comment