How To Install Discord on Ubuntu

Discord is a communication app that is not only used by gaming community but is also used as regular communication medium between friends, family and work colleagues. For Ubuntu and other Linux distributions, Discord provides as dedicated client which makes it one of the best options for communication.

Moreover, you can find Linux communities on Discord to get help with troubleshooting Ubuntu issues, or simply connect with other Linux users. To install Discord on Ubuntu, there are a number of different methods like using its deb file or using Ubuntu App Center. This blog will explain multiple methods to install Discord on Ubuntu.

6 – Ways to Install Discord on Ubuntu

Generally the resource usage by Discord on Ubuntu is quite less, but it can increase in case of video/audio call or screen sharing. Discord provides most of the basic features for free, but there are some extended features of Discord that are only available in the paid version or come under the Nitro subscription.

1: Through Discord Deb File

The first method for installing Discord on Ubuntu is using its Deb file, which is a better option if you are looking for the latest version. You can download the deb file from Discord download page by clicking on the Download for Linux and selecting deb option:

 

Downloading Discord deb file on Ubuntu directly from Discord download page

On the other hand, you can use the command below to download it using the file download link and wget utility in the command line:

sudo wget https://dl.discordapp.net/apps/linux/0.0.60/discord-0.0.60.deb

Downloading Discord deb file on Ubuntu from file download link

Now use the apt package manager to install Discord on Ubuntu via its deb file:

sudo apt install ./discord-0.0.60.deb

Installing Discord on Ubuntu via Discord deb file

After the installation is completed, you can launch Discord either from the Apps menu or by running the discord command in terminal:

discord

Launching discord via command line on Ubuntu installed via apt package installer

2: Through Flatpak Package Manager

The next method to install Discord is by using the third party repository named Flathub that is used by the Flatpak app installer. Although you need to install it first on Ubuntu, to install Discord via Flatpak use the below command:

sudo flatpak install flathub com.discordapp.Discord

Installing Discord on Ubuntu via Flatpak app installer

Next, launch Discord installed via Flatpak by running the following command:

flatpak run com.discordapp.Discord

Launching Discord on Ubuntu installed via Flatpak app installer

3: Through Discord tar File

If you are looking for a pre-built version of Discord on Ubuntu, then you can use its tar file which you can download from Discord download page by clicking on the Download for Linux and selecting tar.gz option:

Downloading Discord tar file on Ubuntu directly from Discord download page

Further, you can use the below command to download the Discord tar file using the terminal:

wget https://dl.discordapp.net/apps/linux/0.0.61/discord-0.0.61.tar.gz

Downloading Discord tar file on Ubuntu from file download link

Now, extract the tar file using the tar utility along with the xvf flags as in the command below:

sudo tar -xvf discord-0.0.61.tar.gz

Extracting Discord tar file on Ubuntu

Now all you need is to move to the extracted file directory and execute the discord file as in the command below:

./Discord

Launching Discord from using its executable file on Ubuntu by extracting the tar file

4: Through Ubuntu App Center

The fourth method for installing Discord is by using the Ubuntu App Center, which is a GUI method and is best for the user having the preference of using its GUI or who are not familiar with commands. Further, this method provides the option of selecting from multiple versions of Discord as well. Simply search for it in App Center and then click on the Install option:

Installing Discord via Ubuntu App Center

Next, after the installation is completed, you can launch it either by clicking on the open button or use the App menu later:

Launching discord on Ubuntu installed via app center

5: Through GDebi Package Manager

Another GUI method to install Discord is to use the GUI version of GDebi package installer that uses the Deb file. You can either download the deb file directly from the Discord Download page or using the below command:

sudo wget https://dl.discordapp.net/apps/linux/0.0.60/discord-0.0.60.deb

Downloading Discord deb file on Ubuntu from file download link

Next, navigate to the directory where the file is downloaded and from its right menu click on the Open With option:

Opening Discord Deb file with GDebi package installer on Ubuntu

Next, select the GDebi package installer from the list:

Opening Discord Deb file with GDebi package installer on Ubuntu

Once the package installer is launched, wait for some time till the deb file is loaded properly and then click on the Install Package to proceed with installation:

Installing Discord on Ubuntu via GDebi package Installer

Once the installation is completed, close the status bar:

Installing Discord on Ubuntu via GDebi package Installer

Now launch the Discord app from the Ubuntu app menu:

Launching Discord on Ubuntu from apps menu

6: Through Snap App Installer

The last method to get Discord is to use the Snap package installer and for that use the below command:

sudo snap install discord

Installing Discord on Ubuntu using Snap package installer

For validation of Discord installation, you can list the installed applications on Ubuntu via Snap:

sudo snap list

Listing snap installed apps on Ubuntu to check Discord installation via snap

How to Create Discord Desktop Launcher on Ubuntu

If you are using the pre-installed or pre-built version of Discord that is available as a tar file, then instead of creating the symbolic link or navigating to the extracted directory, you can create its desktop icon. To create the desktop icon, simply create a discord.desktop file in the applications directory and paste the following code:

[Desktop Entry]
Name=Discord
Exec=[path-for-discord-executable-file]
Icon=[path-for-discord-logo-image]
Comment=communcation
Type=Application
Terminal=false
Encoding=UTF-8
Categories=Utility;

Here, you can change the path for both the discord executable file and its logo file, once you have added the code, close the file after saving it:

Creating Discord desktop icon on Ubuntu for its executable file

Next, when you search for Discord in the app menu you will see its icon which you can also pin to Dash for quick access:

Launching Discord on Ubuntu from apps menu after creating its icon

Conclusion

This guide explained 6 different methods for installing Discord on Ubuntu, these included using the Discord deb file, Flatpak app installer, Discord tar file, Ubuntu App Center, GDebi package installer and Snap app installer. If you want to use the Deb file for installation but looking for a GUI method then use the GDebi package installer, otherwise  the best way is to use apt app installer.

 

Index
Scroll to Top