Print

  • 0

Installing Webmin on Ubuntu

1. Update the System

Update your server to ensure all packages are current:

bash
Copy code
sudo apt update && sudo apt upgrade -y

2. Install Required Dependencies

Install the required software:

bash
Copy code
sudo apt install software-properties-common apt-transport-https wget -y

3. Add the Webmin Repository

Add the Webmin repository to your system:

bash
Copy code
wget -qO - http://www.webmin.com/jcameron-key.asc | sudo apt-key add - sudo add-apt-repository "deb http://download.webmin.com/download/repository sarge contrib"

4. Install Webmin

Run the following command to install Webmin:

bash
Copy code
sudo apt update sudo apt install webmin -y

5. Access Webmin

  • Open your browser and navigate to:
    arduino
    Copy code
    https://<your-server-ip>:10000
  • Log in using your server's root username and password.

Alternative: Use a VPS Control Panel Like CyberPanel

If you need cPanel-like functionality, CyberPanel is another excellent option for Ubuntu. Here's how to install it:

Install CyberPanel on Ubuntu:

bash
Copy code
sudo apt update && sudo apt upgrade -y sudo apt install wget -y wget -O installer.sh https://cyberpanel.net/install.sh sudo bash installer.sh

Follow the on-screen instructions to complete the installation.


Was this answer helpful?

« Back