Yota
Very Senior Member
On the RT-AC68U model, the GUI loading speed is really, really slow, one reason is the CPU clock speed, and the other reason is the ROM read speed.
So, a few days ago, I started trying to mount all webpages on a RAM DISK to improve loading speed, and sure enough it significantly improved GUI page loading speed.
You can do this:
This will consume about 25MB of RAM, but it's worth it.
Create a init-start script that will automatically load the GUI to the RAM DISK every time you boot.
Any old model should try this tutorial, It really makes you feel like you bought a new router.
So, a few days ago, I started trying to mount all webpages on a RAM DISK to improve loading speed, and sure enough it significantly improved GUI page loading speed.
You can do this:
Code:
mkdir -p /tmp/gui
cp -r /www /tmp/gui
mount --bind /tmp/gui/www /www
This will consume about 25MB of RAM, but it's worth it.
Create a init-start script that will automatically load the GUI to the RAM DISK every time you boot.
Code:
#!/bin/sh
if [ ! -d /tmp/gui ]; then
mkdir -p /tmp/gui
cp -r /www /tmp/gui
mount --bind /tmp/gui/www /www
fi
Any old model should try this tutorial, It really makes you feel like you bought a new router.
Last edited: