Need Help How to install webmin on ubuntu 12.04 desktop not on ubuntu server?
i wan't to install webmin on my ubuntu desktop not on server
Need Help How to install webmin on ubuntu 12.04 desktop not on ubuntu server?
i wan't to install webmin on my ubuntu desktop not on server
I'm now adding the steps to install
Webmin 1.580
on Ubuntu 12.04. Please ensure that you haveOpenSSL
installed, otherwise you are not going to be able to run Webmin over TLS. To do that just runopenssl version
in your terminal, you should get an output similar to the following, if you have it installed:OpenSSL 1.0.1 14 Mar 2012
There is no specialized Ubuntu version, so we need to install the Debian version and make manual changes. The steps are:
/etc/apt/sources.list
file:deb http://download.webmin.com/download/repository sarge contrib
You can use,
sudo vi /etc/apt/sources.list
for the above.wget http://www.webmin.com/jcameron-key.asc
When thejcameron-key.asc
file has completed its download, do the following:sudo apt-key add ~/jcameron-key.asc
sudo apt-get update
sudo apt-get install webmin
You should now be able to access
webmin
athttps://<hostname>:10000/
as root with your root password, or as any user who can use sudo to run commands as root.Courtesy: http://www.kelvinwong.ca/2010/05/22/installing-webmin-on-ubuntu-server-10-04-lts-lucid/ N.B: This is a faithful reproduction of the steps posted in the above link.
Solved here: http://ubuntuforums.org/showthread.php?t=1985535