Skip to content

How to Install Signal Desktop on Ubuntu 24.04

Richard
Written by
Richard
Jan 8, 2025 Updated Mar 20, 2026 3 min read
How to Install Signal Desktop on Ubuntu 24.04

You install Signal Desktop on Ubuntu 24.04 by adding the official Signal repository to your system.

Signal Desktop is a secure, end-to-end encrypted messaging app that prioritizes your privacy, offering both text messages and voice/video calls.

Ubuntu 24.04 LTS, codenamed “Noble Numbat,” is the latest stable release from Canonical, making it a great time to set up your favorite private communication tools.

Using the official repository means you’ll always get the newest Signal updates directly from the source, ensuring you have the latest features and security patches.

⚡ Quick Answer

Install Signal Desktop on Ubuntu 24.04 by adding the official Signal repository. Update your package list, install prerequisites, and then add the Signal repository and GPG key. Finally, install Signal Desktop using the apt install signal-desktop command.

Install Signal Desktop via APT

The most common method to install Signal on Ubuntu is to use the APT package repository.

To do that, first, install some prerequisites by running the command below.

🐧Bash / Shell
sudo apt update && sudo apt upgrade
sudo apt install software-properties-common apt-transport-https curl

Next, run the command below to import the Signal Desktop GPG key for its repository.

💻Code
curl -fSsL https://updates.signal.org/desktop/apt/keys.asc | gpg --dearmor | sudo tee /usr/share/keyrings/signal-desktop-keyring.gpg

Once the GPG key is imported, run the command below to add the Signal Desktop repository to Ubuntu.

Command Prompt
echo deb [arch=amd64 signed-by=/usr/share/keyrings/signal-desktop-keyring.gpg] https://updates.signal.org/desktop/apt xenial main | sudo tee /etc/apt/sources.list.d/signal-messenger.list

After that, update the Ubuntu packages index and install Signal.

🐧Bash / Shell
sudo apt update
sudo apt install signal-desktop

Once installed, you can launch the app using the command below.

💻Code
signal-desktop

You can also launch Signal directly from your desktop environment by using the steps below:

  • Open Activities.
  • Click on Show Applications.
  • Search for Signal and launch the app.
Install Signal on Ubuntu Linux

Install Signal Desktop via Snap

Another way to install Signal Desktop on Ubuntu is from the Snap package manager.

To do that, install the Snap package manager if it’s not already installed.

🐧Bash / Shell
sudo apt install snapd

Next, install core Snap by running the command below.

🐧Bash / Shell
sudo snap install core

After that, run the command below to install the Snap Desktop app.

🐧Bash / Shell
sudo snap install signal-desktop

To run the app after installing, run the command below.

💻Code
snap run signal-desktop

To uninstall, run the command below.

🐧Bash / Shell
sudo snap remove signal-desktop

Install Signal Desktop via Flatpak

Yet, another way to install Signal Desktop on Ubuntu is to use the Flatpak package manager.

Flatpak uses a sandboxing package installation, enhancing security and allowing easy updates. Flatpak is a third-party application distribution system that is not included in Ubuntu by default.

You must install the Flatpak package manager and then install the Signal app.

First, update and install Flatpak.

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

Next, add the Flatpak repository to Ubuntu.

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

Finally, install Signal Desktop.

💻Code
flatpak install flathub org.signal.Signal

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

💻Code
flatpak run org.signal.Signal

Uninstall the app using the command below.

💻Code
flatpak uninstall org.signal.Signal

That should do it!

Conclusion:

In conclusion, installing Signal Desktop on Ubuntu 24.04 is straightforward, with multiple methods available to suit your preferences. Here are the key takeaways:

  • Multiple Installation Methods: You can install Signal Desktop using APT, Snap, or Flatpak, depending on your comfort level and system configuration.
  • Secure Communication: Signal Desktop ensures your messages remain private with strong encryption and privacy-focused features.
  • Easy to Launch: After installation, launching Signal is simple, whether from the command line or your desktop environment.
  • Uninstallation Simplicity: If you need to remove Signal Desktop, each installation method provides a straightforward command for uninstallation.
  • Up-to-date Features: Using these package managers lets you easily keep Signal Desktop updated to the latest version for enhanced security and features.

Now, you can enjoy secure messaging on your Ubuntu system!

Is there a Signal desktop app for Linux?

Signal Desktop links with Signal on Android or iOS and lets you message from your Windows, macOS, and Linux computers. Install the production version or help us out by installing the beta version.

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.

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

Leave a Comment

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

Exit mobile version