RackNerd Billboard Banner

How to Install the Telegram Chat Client on Linux

Telegram is a fast, secure messaging app with cloud-based sync across devices. If you’re running Linux and want to use Telegram natively—without relying on the web app or mobile—you’re in luck. Telegram offers a standalone desktop client that’s lightweight and easy to install.

Here’s how to get Telegram up and running on your Linux machine.


Method 1: Install Telegram via Your Package Manager

Ubuntu/Debian-based distros

sudo apt update
sudo apt install telegram-desktop

Arch Linux/Manjaro

sudo pacman -S telegram-desktop

Fedora

sudo dnf install telegram-desktop

These commands pull Telegram from your distro’s official repositories. You’ll get a stable release that integrates cleanly with your system.


Method 2: Use the Official Binary from Telegram

If you want the latest version directly from Telegram, go this route:

Step 1: Download the Tarball

Go to the official website:
https://desktop.telegram.org

Or use the terminal:

wget https://telegram.org/dl/desktop/linux -O telegram.tar.xz

Step 2: Extract the Archive

tar -xf telegram.tar.xz

Step 3: Move Telegram to a System Directory

sudo mv Telegram /opt/telegram

Step 4: Create a Shortcut

sudo ln -s /opt/telegram/Telegram /usr/local/bin/telegram

Step 5: Launch Telegram

From terminal:

telegram

Or create a desktop entry:

nano ~/.local/share/applications/telegram.desktop

Paste this:

[Desktop Entry]
Name=Telegram
Exec=/opt/telegram/Telegram
Icon=/opt/telegram/telegram.png
Type=Application
Categories=Network;InstantMessaging;

Then save and exit. Telegram will now appear in your app launcher.


Bonus: Install Telegram with Flatpak or Snap

Prefer sandboxed apps or want a cross-distro solution?

Flatpak (recommended for most)

flatpak install flathub org.telegram.desktop

If you’re new to Flatpak, here’s a guide to get you started:
👉 How to Install and Run Flatpak Applications

Snap

sudo snap install telegram-desktop

Both Flatpak and Snap handle dependencies and updates for you, which is ideal for hassle-free maintenance.


Final Thoughts

Telegram runs smoothly on Linux, and you’ve got options—from repo installs to official binaries and universal packages. Whether you’re a minimalist or like staying on the bleeding edge, there’s an installation method that fits your setup.

Got questions or tips of your own? Drop them in the comments below.

0 0 votes
Article Rating
Subscribe
Notify of
guest
0 Comments
Inline Feedbacks
View all comments
RackNerd Billboard Banner
© 2025 Computer Everywhere
Your Everyday Guide to the Digital World.
Terms of Service | Privacy Policy
Copy link