Skip to content
Follow
Ubuntu Linux

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

Richard
Written by
Richard
Dec 11, 2024 Updated Aug 13, 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

Discord on Ubuntu 24.04 gives you a free space for voice, video, and text chat with friends and gaming groups. This chat app runs on your Linux desktop using either a downloadable package or a containerized app system called Flatpak.

You can set up the program with a downloaded .deb file through the command line or install it via Flatpak for a secure sandbox setup that keeps the software separate from the rest of your system.

⚡ 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

The official DEB package installs Discord on Ubuntu 24.04 directly through the command line. Downloading the package file first allows a single terminal command to finish the setup.

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.

After installing Discord, launching the application happens by typing `discord` in your terminal or opening the Discord app icon from your desktop apps center.

Installing Discord on Ubuntu 24.04 with Snap provides an alternative route for anyone preferring it over the DEB package. Snap packages handle software deployment by bundling dependencies together, letting the application run through a single terminal command.

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

🐧Bash / Shell
sudo snap install discord

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

Flatpak offers another installation route. This utility isolates applications in a secure sandbox, keeping them separate from the rest of the operating system. Flatpak does not ship with Ubuntu by default, requiring manual setup beforehand.

This third-party system for distributing applications requires installing the Flatpak manager before the Discord deployment can proceed.

Setting up the Flatpak manager must happen first, followed by the Discord installation.

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, launch the program using the command below or open the app in the desktop apps center.

The Ubuntu Software Center functions as a graphical application store that streamlines adding software. Open the Software Center application. Search for "Discord" within the Software Center interface. Click the install button to add Discord to your computer.

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 completes the setup process.

Conclusion:

Getting Discord installed on Ubuntu 24.04 offers multiple routes to match different administration preferences. Review these key points before proceeding:

  • 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.

Select the installation method matching your workflow preferences and enjoy connecting with others on Discord.

Is Discord compatible with Ubuntu?

Discord's Linux app relies on Electron (a framework for building desktop applications using web technologies), matching its architecture on other platforms. Even so, it integrates nicely with the GNOME Shell desktop environment that Ubuntu uses. A status tray indicator provides basic controls alongside 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 installed, launch Discord from the 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 has historically experienced minor quirks across various Linux distributions. Performance remains generally more stable on X11 display servers compared to Wayland, though display server behavior varies.

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 *