How To Install Telegram on Ubuntu 24.04 LTS
In this tutorial, we will show you how to install Telegram on Ubuntu 24.04 LTS. Telegram, the popular cross-platform messaging app, has gained a massive following due to its focus on privacy, security, and ease of use. With features like end-to-end encryption, self-destructing messages, and support for various file types, Telegram has become a go-to choice for users seeking a reliable and feature-rich messaging experience. While many users enjoy Telegram on their mobile devices, the desktop version offers additional convenience and enhanced functionality.
This article assumes you have at least basic knowledge of Linux, know how to use the shell, and most importantly, you host your site on your own VPS. The installation is quite simple and assumes you are running in the root account, if not you may need to add ‘sudo
‘ to the commands to get root privileges. I will show you the step-by-step installation of the Telegram on Ubuntu 24.04 (Noble Numbat). You can follow the same instructions for Ubuntu 22.04 and any other Debian-based distribution like Linux Mint, Elementary OS, Pop!_OS, and more as well.
Prerequisites
- A server running one of the following operating systems: Ubuntu and any other Debian-based distribution like Linux Mint.
- It’s recommended that you use a fresh OS install to prevent any potential issues.
- Basic familiarity with the terminal and command-line interface.
- SSH access to the server (or just open Terminal if you’re on a desktop).
- An active internet connection. You’ll need an internet connection to download the necessary packages and dependencies.
- An Ubuntu 24.04 system with root access or a user with sudo privileges.
Install Telegram on Ubuntu 24.04
Step 1. Updating the Package Repository.
Before installing any new software, it’s crucial to ensure that your system is up-to-date. This step helps prevent potential conflicts and ensures that you have the latest security patches and bug fixes. Open a terminal window and run the following commands:
sudo apt update sudo apt upgrade
These commands will update the package list and upgrade any existing packages to their latest versions.
Step 2. Installing Telegram.
There are multiple ways to install Telegram on Ubuntu 24.04 LTS, each with its own advantages. We will cover three popular methods: using the Snap package manager and Flatpak.
- Method 1: Installing via Snap Package
Snap is a package management system developed by Canonical that allows users to easily install and manage applications on Linux systems. Snaps are self-contained packages that include all the necessary dependencies, making them a convenient and reliable way to install software.
Install Telegram using the snap command:
sudo snap install telegram-desktop
Once the installation is complete, you can launch Telegram from the application menu or by typing telegram-desktop
in the Terminal.
- Method 2: Installing via Flatpak
Flatpak is another popular package management system for Linux that allows users to install applications in a sandboxed environment. Like Snaps, Flatpaks are self-contained and include all the necessary dependencies, ensuring a smooth installation process.
Install Flatpak on your Ubuntu 24.04 LTS system by running the following command in the Terminal:
sudo apt install flatpak
Add the Flathub repository, which is the official Flatpak repository:
sudo flatpak remote-add --if-not-exists flathub https://flathub.org/repo/flathub.flatpakrepo
Install Telegram using the Flatpak command:
sudo flatpak install flathub org.telegram.desktop
After the installation is complete, you can launch Telegram from the application menu or by typing flatpak run org.telegram.desktop
in the Terminal.
Congratulations! You have successfully installed Telegram. Thanks for using this tutorial for installing Telegram on the Ubuntu 24.04 LTS system. For additional help or useful information, we recommend you check the official Telegram website.