Senin, 29 April 2013

HowTo: Install Webmin On Ubuntu Quantal 12.10

Webmin is a web-based interface for system administration for Unix. Using any browser, you can setup user accounts, Apache, DNS, file sharing and so on. Webmin consists of a simple web server, and a number of CGI programs which directly update system files like /etc/inetd.conf and /etc/passwd. The web server and all CGI programs are written in Perl version 5, and use no non-standard Perl modules.

Prepare your system

Now you need to install webmin from APT repository

You need to edit the /etc/apt/sources.list file and add the following lines
1
2
deb http://download.webmin.com/download/repository sarge contrib
deb http://webmin.mirror.somersettechsolutions.co.uk/repository sarge contrib
Save and exit the file
Now you need to download GPG key
1
2
wget http://www.webmin.com/jcameron-key.asc
sudo apt-key add jcameron-key.asc

Update source list
1
sudo apt-get update

Install webmin using the following command
1
sudo apt-get install webmin

This will install webmin now you need to access https://your-server-ip:10000
Ubuntu in particular don't allow logins by the root user by default. However, the user created at system installation time can use sudo to switch to root. Webmin will allow any user who has this sudo capability to login with full root privileges. Once you logged in you should see similar to the following screen




Congrats, you are Succesfull install webmin on Ubuntu Quantal 12.10