What's new

R7800 Entware implement

  • SNBForums Code of Conduct

    SNBForums is a community for everyone, no matter what their level of experience.

    Please be tolerant and patient of others, especially newcomers. We are all here to share and learn!

    The rules are simple: Be patient, be nice, be helpful or be gone!

ducdeptrai1234

Occasional Visitor
Just a good note about Entware in R7800: Even though the Voxel firmware itself is stable and good-performing, install Entware is totally worth it. The throughput increase dramatically, and it seems to perform even smoother than Voxel-only firmware. There is also a summarized tutorial for Entware from user Azimul Kabir Apu , which is very intuitive to follow:
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.
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
Enjoy.
 

Latest threads

Sign Up For SNBForums Daily Digest

Get an update of what's new every day delivered to your mailbox. Sign up here!
Top