How to Install Admin GUI on Linux Ubuntu Server

Ubuntu Linux Forum
Post Reply
User avatar
hepek
Site Admin
Posts: 451
Joined: 24 Oct 2018, 00:03
Location: @HEPEK HQ
Contact:

How to Install Admin GUI on Linux Ubuntu Server

Post by hepek »

How to Install WEBMIN on Linux Ubunu Server

This precedure is tested on Linux Ubuntu Server 16.04 32bit and 18.04 64bit

Webmin Installation and dependecies for Ubuntu/Debian:

1. Update Repositories:

Code: Select all

sudo apt update
2. Dependencies part one:
software-properties-common
apt-transport-https
wget

Code: Select all

sudo apt install software-properties-common apt-transport-https wget

3. Import GPG key for Webmin:

Code: Select all

wget -q http://www.webmin.com/jcameron-key.asc -O- | sudo apt-key add -

4. Add installation repository:

Code: Select all

sudo add-apt-repository "deb [arch=amd64] http://download.webmin.com/download/repository sarge contrib"
Again Update Repositories:

Code: Select all

sudo apt update
or

Download the installaion:

Code: Select all

wget http://prdownloads.sourceforge.net/webadmin/webmin_1.960_all.deb
5.
Dependecies part two:
perl
libnet-ssleay-perl
openssl
libauthen-pam-perl
libpam-runtime
libio-pty-perl
apt-show-versions
python

Install dependencies manualy:

Code: Select all

sudo apt-get install perl libnet-ssleay-perl openssl libauthen-pam-perl libpam-runtime libio-pty-perl apt-show-versions python
6.
or automatically (preffered) during Webmin Installation:

Code: Select all

sudo apt install webmin

Second part of Dependencies are located in the Univesre I Multiverse repositories:

Code: Select all

sudo add-apt-repository universe

Code: Select all

sudo add-apt-repository multiverse
After installation https://your_server_ip_or_hostname:10000/


7. If your Server has an active Firewall, You need to open port 10000 :

Code: Select all

sudo ufw allow 10000/tcp
Post Reply

Return to “Ubuntu Linux”