How to Install Telegram on Linux Mint 21 or 20 - LinuxCapable (2024)

Telegram is a widely used messaging platform known for its robust security measures and many user-friendly features. If you’re interested in learning how to install Telegram on Linux Mint 21 or its older stable release of Linux Mint 20 utilizing various methods via CLI, this guide is for you.

Key Features of Telegram:

  • Security: Telegram offers end-to-end encryption for its “secret chats,” ensuring your conversations are secure.
  • Cloud-Based Storage: Telegram stores messages in the cloud, allowing you to access your chats across multiple devices seamlessly.
  • Rich Functionality: Telegram supports many features, including large group chats with up to 200,000 members, channels, and bots. It also allows file sharing up to 2GB.
  • Message Editing: Unlike many other messaging apps, Telegram allows you to edit sent messages, a feature that enhances usability.
  • Open Source: Telegram’s open-source nature allows for third-party clients and customizations, creating a diverse ecosystem for developers and users.
  • User Privacy: Telegram is committed to user privacy and promises not to share data with third parties or use it for targeted ads.

In summary, Telegram offers a feature-rich and secure messaging experience. Its capabilities range from basic text messaging to advanced features like large group chats and file sharing. The following guide will outline the steps to install Telegram on Linux Mint 21 or its older stable release of Linux Mint 20. We will cover multiple installation methods, including using the default repository, Launchpad PPA, and Flatpak with Flathub via the command-line terminal. Stay tuned for detailed instructions.

Table of Contents

Install Telegram on Linux Mint 21 or 20 via APT

Step 1: Update Linux Mint Before Installing Telegram

Before you begin, update your system to ensure all packages are up-to-date, avoiding any conflicts during the installation. First, update the package lists for upgrades and new package installations:

sudo apt update

Proceed to upgrade any outdated packages using the following command:

sudo apt upgrade

Step 2: Choose Your Installation Method with APT on Linux Mint

Option 1: Install Telegram with APT Default Repository on Linux Mint

The first option is to use the default APT repository. This is a stable and secure version and is most recommended to install over any other package manager. Still, it can be outdated compared to Flatpak’s alternative, which is usually up-to-date.

First, execute the following apt install command:

sudo apt install telegram-desktop

For users who would prefer a much more updated version package, use the APT PPA that is next.

Option 2: Install Telegram with PPA via APT on Linux Mint

The following method to install Telegram, but this time an updated version, while still using the APT package manager, is to install Telegram from the PPA maintained by the “atareao-team” team. To add this PPA to your system, execute the following command:

sudo add-apt-repository ppa:atareao/telegram -y

Before running the installation command, run an apt update to reflect the newly imported PPA and rebuild the cache:

sudo apt update

Install the software using the following command:

sudo apt install telegram

Install Telegram on Linux Mint 21 or 20 via Flatpak and Flathub

The next option is to use the Flatpak package manager. Flatpak comes pre-installed on Linux Mint unless you remove it. It’s another popular option, similar to Snap, and is featured across many distributions as an alternative third-party installation package manager for the latest packages.

Step 1: Enable Flathub on Linux Mint for Telegram

Flathub should be enabled by default, but it’s always handy to run this command quickly to ensure it is:

sudo flatpak remote-add --if-not-exists flathub https://flathub.org/repo/flathub.flatpakrepo

This command checks if Flathub is already added as a remote repository, and if not, it adds Flathub as a source for Flatpak applications.

Step 2: Install Telegram with Flatpak on Linux Mint

Now run the installation using the following flatpak command:

flatpak install flathub org.telegram.desktop -y

This command fetches the Telegram package from Flathub and installs it on your system.

Launch Telegram on Linux Mint 21 or 20

Launching Telegram can be done in a few ways now that you have the software installed.

CLI Commands to Launch Telegram

First, you can launch the application immediately by typing the following command in your terminal:

telegram-desktop

For Flatpak users, you can run the application from the terminal using the following command:

flatpak run org.telegram.desktop

GUI Method to Launch Telegram

Most desktop users will not always have a terminal open, so use the following path using your taskbar to open the Telegram client:

Taskbar > Internet > Telegram
Pin

First-Time Tips with Telegram on Linux Mint 21 or 20

Once you have installed and launched Telegram on your Linux Mint system, there are several tips and tricks to enhance your experience, customize the application, and make the most of its features. This section will cover general tips, customization, and other valuable suggestions to get you started with Telegram on Linux Mint.

General Telegram Tips with Linux Mint

  1. Notifications: To avoid getting distracted by constant notifications, you can customize the notification settings for individual chats or groups. To do so, right-click on the chat or group name and select “Mute notifications” or “Notification settings.”
  2. Text Formatting: Telegram allows you to format your text using bold, italics, code, and hyperlinks. To format your text, use the following syntax:
    • Bold: **text**
    • Italics: *text*
    • Code: `text`
    • Hyperlink: [text](URL)
  3. Replying to Messages: To reply to a specific message, right-click on the message and choose “Reply.” This way, your reply will be linked to the original message, making it easier to follow the conversation.
  4. Secret Chats: Secret chats offer end-to-end encryption, self-destructing messages, and screenshot protection. To start a secret chat, click on the hamburger menu in the top-left corner, select “New Secret Chat,” and choose a contact.

Telegram Customizations with Linux Mint

  1. Themes: Telegram supports custom themes, allowing you to personalize the appearance of your chat window. To change the theme, go to “Settings” > “Chat settings” > “Choose a theme.”
  2. Chat Background: Customize your chat background by going to “Settings” > “Chat settings” > “Change Chat Background.” You can choose from the default options or upload your own image.
  3. Auto-Night Mode: Enable Auto-Night Mode to automatically switch to a dark theme at night or in low-light conditions. Go to “Settings” > “Chat settings” > “Auto-Night Mode” and choose your preferred settings.
  4. Font Scaling: Adjust the font size to suit your preferences by going to “Settings” > “Chat settings” > “Font scaling.”

Other Telegram Tips with Linux Mint

  1. File Sharing: Telegram allows you to share files up to 2GB in size. To share a file, click the attachment icon in the chat window and choose “File.”
  2. Voice and Video Calls: Make voice and video calls by clicking on the contact’s name and selecting the phone or camera icon at the top of the chat window.
  3. Using Bots: Bots are automated accounts that can perform various tasks, such as sending weather updates, setting reminders, or even playing games. To add a bot, use the search bar to find the bot you want and click on “Start.”
  4. Creating Channels and Groups: Channels and groups provide an excellent way to broadcast messages to a large audience or collaborate. To create a channel or group, click on the hamburger menu in the top-left corner and choose “New Channel” or “New Group.”

Following these tips and customizations can enhance your Telegram experience on Linux Mint, making it more personalized and efficient. Remember to explore and experiment with the various features and settings to find the perfect setup that suits your needs.

Pin
Pin

Additional Commands for Telegram on Linux Mint

Update Telegram on Linux Mint

Updates should appear in notifications, but checking for updates manually using the terminal is recommended if these fail to show up sometimes. Follow the appropriate commands to check for updates depending on your installation method.

APT Update Method for Telegram

For users who installed Telegram with APT, use the standard update and upgrade commands as you did at the start of the tutorial. This will check all installed packages on your system, including Telegram.

sudo apt update

If updates are available, use the upgrade command:

sudo apt upgrade

Flatpak Update Method for Telegram

For Flatpak users, use the following command to check for new updates on installed Flatpak packages:

flatpak update

Remove (Uninstall) Telegram on Linux Mint

To uninstall Telegram, use the appropriate command depending on your original installation method.

APT Remove Command for Telegram

For APT installations, use the following command:

sudo apt remove telegram-desktop

PPA Remove Commands for Telegram

First, remove the Telegram PPA client version using the following command:

sudo apt remove telegram

For users who installed Telegram using the PPA and are not going to utilize this any further, remove the PPA with the following command:

sudo add-apt-repository --remove ppa:atareao/telegram -y

Flatpak Remove Command for Telegram

If you installed the Flatpak version, use the following command:

flatpak remove --delete-data org.telegram.desktop -y

Conclusion

In conclusion, installing Telegram on Linux Mint is straightforward, offering various installation methods to suit your preferences. Following this guide, you can choose the best installation method using the APT default repository, a PPA, or Flatpak with Flathub. Once installed, you can explore Telegram’s numerous features, customizations, and options to enhance your messaging experience on Linux Mint.

Share This Post:

FacebookXRedditLinkedInTumblrEmailTelegramWhatsAppPinterestHacker NewsMastodonPocketVKFlipboardCopy

I am an expert and enthusiast. While I don't have first-hand experience or personal beliefs, I have been trained on a wide range of topics and can provide information on various subjects. I can generate code snippets and provide detailed explanations based on the input I receive.

The article you provided discusses how to install Telegram on Linux Mint 21 or its older stable release of Linux Mint 20 using different methods via the command-line interface (CLI). It also highlights the key features of Telegram, such as security, cloud-based storage, rich functionality, message editing, open-source nature, and user privacy.

Key Features of Telegram:

  • Security: Telegram offers end-to-end encryption for its "secret chats," ensuring secure conversations.
  • Cloud-Based Storage: Telegram stores messages in the cloud, allowing seamless access across multiple devices.
  • Rich Functionality: Telegram supports large group chats with up to 200,000 members, channels, bots, and file sharing up to 2GB.
  • Message Editing: Telegram allows you to edit sent messages, enhancing usability.
  • Open Source: Telegram's open-source nature allows for third-party clients and customizations, creating a diverse ecosystem for developers and users.
  • User Privacy: Telegram is committed to user privacy and promises not to share data with third parties or use it for targeted ads.

The article provides a step-by-step guide on how to install Telegram on Linux Mint 21 or 20 using different methods:

  1. Install Telegram on Linux Mint 21 or 20 via APT: This method involves using the default APT repository or the APT PPA maintained by the "atareao-team" team.
  2. Install Telegram on Linux Mint 21 or 20 via Flatpak and Flathub: This method utilizes the Flatpak package manager, which is pre-installed on Linux Mint.

The article also explains how to launch Telegram on Linux Mint 21 or 20 using both CLI commands and the GUI method. It provides tips and tricks to enhance the Telegram experience on Linux Mint, including customizations, text formatting, replying to messages, and using secret chats, among others.

Lastly, the article covers additional commands for updating Telegram on Linux Mint and uninstalling it using the appropriate commands based on the installation method.

Please note that I can provide more specific information or answer any questions you may have related to any of the concepts mentioned in the article.

How to Install Telegram on Linux Mint 21 or 20 - LinuxCapable (2024)

FAQs

Is Telegram available for Linux? ›

Another advantage of using Telegram on Linux is its multi-platform support. Telegram is available on various operating systems, including Windows, macOS, iOS, and Android. This cross-platform compatibility allows users to seamlessly switch between devices while maintaining access to their chats and files.

Is Telegram for Linux safe? ›

Yes, every chat and call on Telegram is encrypted. Telegram offers end-to-end encryption for one-to-one calls, plus messages if you select the Secret Chats option.

How to install Telegram? ›

Installing the App

Depending on your device type, this process may vary slightly. For Android devices, open up your “File Manager” app and locate the downloaded file. Tap on it to begin installation. For iOS devices, locate the downloaded file in your “Files” folder and tap on it to begin installation.

How do I install downloads on Linux Mint? ›

Installing softwares in linux
  1. open software manager/center. ...
  2. search your desired software in the search box.
  3. if it's in the list then it will appear before you . ...
  4. now double click on the desired software entry and then click "install".
  5. it will be installed on your system as per your network connection speed.

How to install Telegram for Linux? ›

Method 1: Using the APT Package Manager
  1. Step 1: Telegram's current stable version may be found in the official Ubuntu APT package repository. ...
  2. Step 2: Then, in the terminal of your Ubuntu 20.04 system, enter the following command: sudo apt install telegram-desktop.
Jun 2, 2022

What is the minimum OS for Telegram? ›

It is available for Android, iOS, Windows, macOS, Linux, and web browsers. Telegram also offers end-to-end encryption in voice and video calls, and in optional private chats, which Telegram calls Secret Chats.

What operating system does Telegram use? ›

We have apps for iOS (11.0 and above), Android (6.0 and up), a native macOS app and a universal desktop app for Windows, macOS, and Linux. Telegram Web can also help to quickly do something on the go.

Can Telegram be tracked? ›

Can Telegram be traced? In general, Telegram messages can't be traced if the police or other authorities don't have direct access to the app on a user's phone. However, Telegram stores some of the users' data on its servers for up to 12 months, so some of your information might be compromised due to a security breach.

Which is the safest Telegram? ›

Best Way to Secure your Chats on Telegram by Using a VPN

To be more private and secure, it is better to use a premium VPN service for Telegram. A VPN service hides your real IP address from the server, allowing you to present your location from a different country.

What is safer than Telegram? ›

While Telegram does have a significant privacy feature that Signal lacks—the ability for you to use a username and not reveal your phone number—Signal uses end-to-end encryption for all conversations and engages almost no data collection. Therefore, Signal is safer.

Why won't Telegram install? ›

If your device is not compatible with the application to be downloaded, you will not be able to download the application. Please check the Supported devices article to find out if your device is eligible to download the application. If that doesn't work, please contact the application developer for further assistance.

Which app is similar to Telegram? ›

Below we'll introduce you to 10 Telegram alternatives, each tried and true and capable of meeting your communication needs.
  • Brosix. One of the more secure Telegram alternatives out there, Brosix is an all-in-one team communication and collaboration solution. ...
  • WhatsApp. ...
  • Viber. ...
  • Messenger. ...
  • Signal. ...
  • Threema. ...
  • Mattermost. ...
  • Google Chat.
Dec 11, 2023

How can I use Telegram for the first time? ›

Once you're there, here's how to get it:
  1. Type telegram into the search bar, and tap Telegram in the search results. ...
  2. Tap INSTALL and follow the on-screen instructions.
  3. Tap OPEN to launch Telegram.
  4. Follow the on-screen instructions to log in or create a new account.
Oct 1, 2021

How can I install Telegram in Linux? ›

How to Install the Telegram Desktop App in Linux
  1. Install Telegram From the Software Center.
  2. Install Telegram With the Official Binary.
  3. Install Telegram From the Terminal.
  4. Install Telegram Using a Universal Package Manager.
  5. Frequently Asked Questions.
Aug 9, 2023

How to install Telegram via terminal Ubuntu? ›

Installation of Telegram-Desktop in Ubuntu
  1. Step 1: Telegram's current stable version may be found in the official Ubuntu APT package repository. ...
  2. Step 2: Then, in the terminal of your Ubuntu 20.04 system, enter the following command: sudo apt install telegram-desktop.
Jun 2, 2022

Top Articles
Latest Posts
Article information

Author: Amb. Frankie Simonis

Last Updated:

Views: 6628

Rating: 4.6 / 5 (76 voted)

Reviews: 83% of readers found this page helpful

Author information

Name: Amb. Frankie Simonis

Birthday: 1998-02-19

Address: 64841 Delmar Isle, North Wiley, OR 74073

Phone: +17844167847676

Job: Forward IT Agent

Hobby: LARPing, Kitesurfing, Sewing, Digital arts, Sand art, Gardening, Dance

Introduction: My name is Amb. Frankie Simonis, I am a hilarious, enchanting, energetic, cooperative, innocent, cute, joyous person who loves writing and wants to share my knowledge and understanding with you.