Ghostboard pixel

How to Install Discord Application in Ubuntu and Other Linux Distributions [3 Methods]

Discord is a popular messaging application. It was originally intended for gamers but these days, it is considered a Slack alternative even for team and community communication. You can use it for text, voice and video messaging.

Several open source projects use it for communicating with project members and users.

Discord is available on various platforms, including desktop Linux. In this tutorial, I’ll show you various ways of installing Discord on Ubuntu, Debian and other Linux distributions.

Note: Discord application is not open source. Since they provide a Linux client and many Linux users rely on it, it’s been covered here.

Method 1: Installing Discord in Ubuntu and Debian-based Linux Distributions

Go to the download page of Discord and download the deb file. Keep in mind that, Discord is only available for 64-bit systems.

Download Discord for Linux
Download Discord for Linux

Installing deb file is easy. Just double click on it to open it in the software manager and install it from there. You may also install and use Gdebi tool for this purpose.

It will take a few seconds for installing and you should see a log in screen like this:

Discord Login Screen in Linux

Once you are logged in, you should have full desktop integration. It shows a red dot next to its icon in the top panel when you have unseen messages.

discord app indicator ubuntu
App indicator indicating new unread messages

You can also see the number of unread notifications in the launcher.

discord notification number

Updating Discord

The problem with this approach is that though you’ll have the latest Discord version, it won’t be updated to a newer version automatically in the future.

When there is a new update available, it will notify you to download the new version.

discord new update available
Discord notifies about update

When you hit the download button, it downloads a new Deb file. Now, here’s how things get interesting. When you double click this deb file, it will open in Software Center but it will ask you to delete Discord first.

discord delete
Delete the existing version first

You must delete it first and then double-click the newly downloaded deb file again to install the new version.

Don’t worry. You won’t have to log in again. But this way of updating could confuse people.

Removing Discord

You can either uninstall it from the software center or use this command in the terminal:

sudo apt remove discord

Tip: Pressing Ctrl and / keys gives a nice graph of keyboard discord shortcuts which could be useful for quick interactions.

Method 2: Installing Discord on Ubuntu and other Linux distributions using Snap package

You can easily install Discord using Snap package in Ubuntu and various other Linux distributions with snap package support.

The advantage is that you’ll always have the latest version of Discord and your installed version gets automatically updated. The downside is that Snap packages take longer to start.

Ubuntu users can find Discord snap package in the Software Center and install it from there:

Install Discord in Snap format from Ubuntu Software Center
Discord snap package is available in Ubuntu Software Center

If you have enabled Snap support on your Linux distribution, you can use the following command to install it:

sudo snap install discord

If you want to remove it, you can use the snap command to uninstall it:

sudo snap remove discord

Please note that Discord is also available in Flatpak package format. You can use Flatpak to install Discord in Fedora and other Linux distributions.

Method 3: Installing Discord in other Linux Distributions (intermediate to advanced level)

Discord also provides a generic installer for using Discord on Linux. It comes in the traditional tar gz file.

If you go for this way of installing Discord on Linux, then you should have at least a moderate understanding of Linux directory structure and Linux commands. You must also be comfortable using the terminal because this method involves using the terminal all the way.

Step 1: Download Discord for Linux

First download the tar.gz file from Discord’s website.

I am using Discord version 0.0.10 in the tutorial. Your file name may or may not be different. Pay attention to it.

Step 2: Extract the downloaded file to opt directory

Go to directory where you have downloaded the file. Use the tar command to extract the .tar.gz file in the /opt directory.

sudo tar -xvzf discord-0.0.10.tar.gz -C /opt

Traditionally, the /opt directory is used for installing/keeping files of optional or additional Linux software. Since you opted for the traditional way, it only makes sense to use the traditional convention.

Step 3: Create Discord command in bin directory

Now you should have /opt/Discord directory with files related to Discord. You should have two important files to tackle here. A binary file named Discord and a desktop file named discord.desktop.

Now, you should create a symbolic link to this binary file in /usr/bin directory.

sudo ln -sf /opt/Discord/Discord /usr/bin/Discord

The /usr/bin directory contains the binary executables for commands in your system. This way, any user can run the commands from anywhere in the system.

Step 4: Create desktop icon and menu entry

You have Discord available as a command for all users on the system. But you cannot find it in the system menu to launch it graphically.

For that, you’ll have to use the discord.desktop file located in the extracted folder in the opt directory.

You should pay attention to two lines here: Exec and Icon.

The exec is for executable file and you can set it to /usr/bin/Discord . The Icon is for the image of Discord that will be displayed when you search for Discord in the menu. You can set it to the /opt/Discord/discord.png. This image is present in the extracted folder.

You can use nano editor with sudo for editing this file or whichever terminal-based text editor you prefer. Your discord.desktop may look something like this:

Installing Discord In Linux Traditional Way by creating desktop entry

Your discord.desktop file is still in the /opt/Discord directory. You need to move it to /usr/share/applications directory so that your system can access this desktop entry.

sudo cp -r /opt/Discord/discord.desktop /usr/share/applications

Normally, you should see Discord added in the list of available applications in the menu immediately. If not, log out and log in again.

Step 5: Run Discord

You are done. Now if you search for Discord, you will find it in the menu and when you run it for the first time, it will do some configuration.

Discord Installing in Linux
Running Discord for the first time

After that, it will bring you to the login screen. It automatically tried to log you in from your default browser.

Discord Login Screen in Linux

Enjoy Discord on Linux. If there is a new version of Discord in the future, you’ll have to remove the already installed version and then repeat the procedure with the new version.

Removing Discord installed in the traditional way

It would be unfair to just discuss how to install Discord. Let me give you some pointers about removing it as well.

When you install Discord on Linux, it saves config file in .config/discord folder in your home directory. Delete these files:

rm -r ~/.config/discord

Next, remove the Discord directory from the /opt directory:

sudo rm -rf /opt/Discord

Also delete the symbolic link you had created:

sudo rm /usr/bin/Discord

As the last step, remove the desktop file:

sudo rm /usr/share/applications/discord.desktop

Did you manage to install Discord on Linux? Which method did you use?

I gave you various ways of installing Discord application on Linux. The traditional Linux way is somewhat complicated but at least this way you can install it on any Linux distribution.

On a related note, check out this list of open source bots to better manager your Discord servers.

Did you manage to install it? Which method did you use and prefer?

Become a Better Linux User

With the FOSS Weekly Newsletter, you learn useful Linux tips, discover applications, explore new distros and stay updated with the latest from Linux world

It's FOSS

Great! You’ve successfully signed up.

Welcome back! You've successfully signed in.

You've successfully subscribed to It's FOSS.

Success! Check your email for magic link to sign-in.

Success! Your billing info has been updated.

Your billing was not updated.