Skip to main content

How To Install TinyCP on Ubuntu and Debian

In this tutorial we will explain how to install TinyCP on Ubuntu (starting from 20.04 version) and Debian 12.

Updated over a week ago

TinyCP is a great tool, a control panel for managing Linux. It is very lightweight and includes features for managing domains, mailboxes, databases, FTP, Samba and Firewall.

1. Install Required Packages

Before installing TinyCP, you need to install gnupg and ca-certificates.

Run the following command:

apt install gnupg ca-certificates

2. Add TinyCP Repository Keys

Next, add the TinyCP repository key using the command below:

apt-key adv --fetch-keys http://repos.tinycp.com/ubuntu/conf/gpg.key

3. Add TinyCP Repository

Now, add the TinyCP repository to your system’s package sources:

echo "deb http://repos.tinycp.com/ubuntu all main" | tee /etc/apt/sources.list.d/tinycp.list

4. Update Package List

To apply the new repository settings, update your package list:

apt-get update

5. Install TinyCP

Now, install TinyCP by running:

apt-get install tinycp

Once the installation is complete, you will see a confirmation message with the URL to access TinyCP and your login details (username and password).

6. Access TinyCP Web Interface

Open your browser and navigate to the URL from the previous command output.

Use the provided username and password to log in and you will have access to the TinyCP control panel:

Conclusion

You have successfully installed TinyCP on your VPS! Now you can use its web interface to configure and manage your server efficiently.

Did this answer your question?