Follow
Ubuntu Linux

How to Install Discord on Ubuntu 24.04: Step-by-Step Guide

Richard
Written by
Richard
Dec 11, 2024 Updated Mar 20, 2026 3 min read
How to Install Discord on Ubuntu 24.04: Step-by-Step Guide
How to Install Discord on Ubuntu 24.04: Step-by-Step Guide

You install Discord on Ubuntu 24.04 by downloading the .deb package or using Flatpak.

Discord is a free voice, video, and text communication application designed for communities, often used by gamers and teams.

This guide shows you how to get the latest version of Discord running on your Ubuntu 24.04 desktop. We’ll cover two straightforward methods.

The .deb package method is quick if you prefer using the terminal. Alternatively, using Flatpak offers a sandboxed experience and easier updates.

⚡ Quick Answer

Install Discord on Ubuntu 24.04 by downloading the DEB package and installing it with `sudo apt install ./discord.deb` in the terminal, or use `sudo snap install discord` for a Snap package. You can also use the Software Center for a graphical installation.

Install Discord using the DEB package

One way to install Discord is to download its official DEB package and install it using the terminal or software center.

Run this command in your terminal to download the Discord DEB package.

💻Code
wget -O discord.deb "https://discord.com/api/download?platform=linux&format=deb"

Then, run the command below to install the downloaded package.

🐧Bash / Shell
sudo apt install ./discord.deb

Once installed, you can launch it using the command below or open the app in the desktop apps center.

💻Code
discord

Install Discord using Snap

If the DEB package method doesn’t work for you, consider using the Snap package manager to install Discord.

To do that, run the command below in your terminal.

🐧Bash / Shell
sudo snap install discord

Once installed, you can launch it using the command below or open the app in the desktop apps center.

💻Code
discord

Install Discord using Flatpak

Another way to install Discord is to use the Flatpak package manager. Flatpak uses a sandboxing approach to install packages, which improves security and makes updates easier.

Flatpak is a third-party system for distributing applications, not included in Ubuntu by default.

You’ll need to install the Flatpak manager first, then install Discord through it.

First, update and install Flatpak.

🐧Bash / Shell
sudo apt update && sudo apt upgrade
sudo apt install flatpak

Next, add the Flatpak repository to Ubuntu.

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

Finally, install Discord.

💻Code
flatpak install flathub com.discordapp.Discord

Once installed, you can launch it using the command below or open the app in the desktop apps center.

💻Code
flatpak run com.discordapp.Discord

Install Discord from the Software Center

If you’re not keen on using the terminal, you can install Discord through Ubuntu’s Software Center. Just keep in mind that this method might not always install the absolute latest version.

Click on the Software Center icon on the sidebar to open it.

Ubuntu Software Center
Ubuntu Software Center

Search for Discord and install it.

Ubuntu Software Center search discord
Ubuntu Software Center search discord

Click Install.

Ubuntu Software Center search discord install
Ubuntu Software Center search discord install

Use the app launcher and launch it.

Ubuntu Discord launch
Ubuntu Discord launch

That should do it!

Conclusion:

Getting Discord installed on Ubuntu 24.04 is a flexible process with several options to fit how you like to work. Here are the key points to remember:

  • Multiple Installation Methods: You can choose between DEB package, Snap, Flatpak, or the Software Center.
  • User-Friendly: Most methods can be executed through the terminal, but the Software Center offers a graphical interface for ease of use.
  • Secure and Updated: Flatpak enhances security with its sandboxing approach and allows easy updates.
  • Accessibility: Once installed, launching Discord is straightforward, whether from the terminal or desktop apps center.
  • Community and Collaboration: Discord provides a robust platform for gamers, communities, and teams to communicate effectively.

Choose the installation method best for your comfort level and enjoy connecting with others on Discord!

Is Discord compatible with Ubuntu?

Discord’s Linux app is built with Electron, similar to its other platforms. Even so, it integrates nicely with the GNOME Shell desktop environment that Ubuntu uses. You get a status tray indicator with basic options and can even receive native desktop notifications.

How to install Discord on Ubuntu without Snap?

Method 3: Installing Discord via Flatpak. Flatpak is another system for managing applications on Linux, much like Snap. Discord is available as a Flatpak package. Once it’s installed, you can launch Discord from your application menu or by running the command flatpak run com.discordapp.Discord in the terminal.

Which Linux distro is best for Discord?

The official Discord desktop app hasn’t always worked perfectly on every Linux distribution. It tends to perform better on X11 compared to Wayland, but it’s not always flawless even then.

Was this guide helpful?

Was this helpful?
Richard

About the Author

Richard

Tech Writer, IT Professional

Richard, a writer for Geek Rewind, is a tech enthusiast who loves breaking down complex IT topics into simple, easy-to-understand ideas. With years of hands-on experience in system administration and enterprise IT operations, he’s developed a knack for offering practical tips and solutions. Richard aims to make technology more accessible and actionable. He's deeply committed to the Geek Rewind community, always ready to answer questions and engage in discussions.

📚 Related Tutorials

How to Install GNOME Desktop on Ubuntu 24.04
Ubuntu Linux How to Install GNOME Desktop on Ubuntu 24.04
How to Install KDE Desktop on Ubuntu 24.04
Ubuntu Linux How to Install KDE Desktop on Ubuntu 24.04

No comments yet — be the first to share your thoughts!

Leave a Comment

Your email address will not be published. Required fields are marked *