Azimul Kabir Apu
Occasional Visitor
You can use transmission without any problem if you install it on Entware. I had same problem with router transmission so I installed it on Entware and working flawlessly since then.Your release is still the best to me. I prefer yours than other open firmwares.
Looking forward to your Transmission problem fix due to this Custom firmware build for R7800 v. 1.0.2.73SF
fyi: I've tested Transmission build on openwrt, it work fine with http/https tracker.
You can follow the following guide:
Connect to router through Telnet. Go to: www.routerlogin.net/debug.htm and activate Telnet Access.
Code:
# Entware Installation (it will format the drive, so backup the drive if required)
mkfs.ext4 -L optware -O ^metadata_csum,^64bit /dev/sda1
cd /tmp/mnt/sda1
wget https://www.voxel-firmware.com/Downloads/Voxel/Entware/entware-cortex-a15-3x-initial-generic.tar.gz
tar -xzf entware-cortex-a15-3x-initial-generic.tar.gz
reboot
ls -l /opt/*
# Check if above command shows entware directories or symlinks (bin, usr, share, var etc.)
Code:
# Create swap file (optional) in /mnt/sda1or /mnt/sdb1or /mnt/sdc1 etc.:
cd /mnt/sda1
dd if=/dev/zero of=swap bs=1024 count=1048576
mkswap swap
chmod 0600 swap
swapon swap
reboot
/opt/bin/opkg update
/opt/bin/opkg upgrade
Code:
# Disable Router Version of Transmission:
nvram set transmission_disable=1
nvram commit
# Install followings:
/opt/bin/opkg install transmission-daemon-openssl
/opt/bin/opkg install transmission-web-control
/opt/etc/init.d/S88transmission stop
# Change Transmission settings file as per your requirements, which is located at:
/tmp/mnt/sda1/entware/etc/transmission/settings.json (/opt/etc/transmission/settings.json)
# After changing execute following:
/opt/etc/init.d/S88transmission start
# Access Transmission from: 192.168.1.1:9091
Last edited: