Method 1: Installing webmin via APT
To install webmin in Ubuntu 12.04, open terminal and add the following repository (from root account):
1- Edit /etc/apt/sources.list file
# vim /etc/apt/sources.list
2- Add the following lines
.
deb http://download.webmin.com/download/repository sarge contrib
deb http://webmin.mirror.somersettechsolutions.co.uk/repository sarge contrib
Save and exit the file
3- Now you need to import GPG key
wget http://www.webmin.com/jcameron-key.asc
apt-key add jcameron-key.asc
4- Update the source list
sudo apt-get update
5- Now install webmin
sudo apt-get install webmin
Method 2: Installing Manualy
Download the latest webmin archive (this might change in time) and choose debian package
wget http://www.webmin.com/download/deb/webmin-current.deb
Install webmin with following command:
dpkg --install webmin-current.deb
Now to access webmin open your browser and enter: http://yourserverip:10000/
That`s all.