Webmin on Entware for DD-WRT: Difference between revisions
No edit summary |
No edit summary |
||
Line 1: | Line 1: | ||
Question: Can Webmin be installed on a router running DD-WRT firmware with Entware installed? | |||
Answer: Yes (and I did it) | |||
This is not a step by step list of instructions on how to do it, so it probably isn't for beginners. Instead it is a brain dump of all the important information I used that hopefully will be useful to people somewhat experienced with Linux operating systems and DD-WRT (OpenWRT too). | |||
When making references to downloads or other external resources, see the Helpful Links section at the end of this page | |||
== The Beginning == | |||
I'm using a Buffalo WZR-600DHP Router with an Atheros AR7161 CPU (AKA System on a Chip) which is based on the MIPS 24Kc foundation (single CPU, not dual) | |||
There are no OPKG installations available, so I downloaded the TAR file and used the instructions | |||
Well as it turns out the opkg install command doesn't allow for wildcards, so after a quick bit of research, I located a webpage (https://www.linuxquestions.org/questions/linux-newbie-8/how-to-install-a-package-using-opkg-from-a-piped-search-result-4175580790/) where a nice guy named "magische_vogel" had come up with this command; | |||
opkg list | grep WhatEverNamePackagesBeginWith| awk '{print $1}' | xargs opkg install | |||
== Helpful Links == | |||
[http://bin.entware.net/mipssf-k3.4/ Entware Repositories] for my router (go up one level for other CPU types) | [http://bin.entware.net/mipssf-k3.4/ Entware Repositories] for my router (go up one level for other CPU types) | ||
[https://downloads.openwrt.org/releases/packages-19.07/mips_24kc/packages/ OpenWRT Repositories] for my router (go up one level for other CPU types) | |||
[https://download.webmin.com/download/modules/ Webmin Modules] (No URL I could find worked in making it possible for the Webmin Module GUI to download standard or third party modules via the GUI, all had to be installed from a local directory) |
Revision as of 23:48, 11 September 2018
Question: Can Webmin be installed on a router running DD-WRT firmware with Entware installed?
Answer: Yes (and I did it)
This is not a step by step list of instructions on how to do it, so it probably isn't for beginners. Instead it is a brain dump of all the important information I used that hopefully will be useful to people somewhat experienced with Linux operating systems and DD-WRT (OpenWRT too).
When making references to downloads or other external resources, see the Helpful Links section at the end of this page
The Beginning
I'm using a Buffalo WZR-600DHP Router with an Atheros AR7161 CPU (AKA System on a Chip) which is based on the MIPS 24Kc foundation (single CPU, not dual)
There are no OPKG installations available, so I downloaded the TAR file and used the instructions
Well as it turns out the opkg install command doesn't allow for wildcards, so after a quick bit of research, I located a webpage (https://www.linuxquestions.org/questions/linux-newbie-8/how-to-install-a-package-using-opkg-from-a-piped-search-result-4175580790/) where a nice guy named "magische_vogel" had come up with this command;
opkg list | grep WhatEverNamePackagesBeginWith| awk '{print $1}' | xargs opkg install
Helpful Links
Entware Repositories for my router (go up one level for other CPU types)
OpenWRT Repositories for my router (go up one level for other CPU types)
Webmin Modules (No URL I could find worked in making it possible for the Webmin Module GUI to download standard or third party modules via the GUI, all had to be installed from a local directory)