32

Signal is a cross-platform encrypted messaging service developed by the Signal Foundation and Signal Messenger. It uses the Internet to send one-to-one and group messages, which can include files, voice notes, images and videos.

muru
  • 193,181
  • 53
  • 473
  • 722
mubasshir00
  • 761
  • 1
  • 7
  • 13

4 Answers4

31

For all releases of Ubuntu 18.04 and newer:

sudo snap install signal-desktop

  • The snap is provided by the all-volunteer Snapcrafters team, a group of experienced and trusted experts from the Ubuntu Community who have been providing safe and secure snap packaging and regular updates for their adopted applications since 2017. The upstream Signal project does not provide a Snap package.
user535733
  • 58,040
  • 10
  • 106
  • 136
27

Open your terminal and copy-paste the below command one by one

sudo apt install curl
curl -s https://updates.signal.org/desktop/apt/keys.asc | sudo apt-key add -
echo "deb [arch=amd64] https://updates.signal.org/desktop/apt xenial main" | sudo tee -a /etc/apt/sources.list.d/signal-xenial.list
sudo apt update 
sudo apt install signal-desktop

All credit goes to https://websiteforstudents.com/how-to-install-signal-desktop-on-ubuntu-16-04-17-10-18-04/

Dan
  • 12,494
  • 7
  • 70
  • 94
mubasshir00
  • 761
  • 1
  • 7
  • 13
2

Apart from a deb package from the Signal PPA and snap package (sudo snap install signal-desktop), you can install it as flatpak (Follow the setup guide before installing):

sudo apt install flatpak  
flatpak install flathub org.signal.Signal  

Once installed, you can run it from the menu or use the following command in the terminal:

flatpak run org.signal.Signal

If you don't have/want to enable/d the Flathub repository:

flatpak install https://dl.flathub.org/repo/appstream/org.signal.Signal.flatpakref

enter image description here

Source: How to Install Signal on Ubuntu & Other Linux Distributions

Filbuntu
  • 12,241
  • 34
  • 87
  • 110
0

Conveniently from the Ubuntu Software App (see below) as a snap package (no terminal command needed).
Once opened, type the Signal Desktop keyword in the search bar. Click on the Signal Desktop option available.
Now, click on the Install button available under the Signal Desktop to begin the installation.
For more details regarding the packaging, see comments of the other answer.

More details (e.g. how to remove it) and pictures, see Vitux page. enter image description here

Glorfindel
  • 965
  • 3
  • 13
  • 20
Filbuntu
  • 12,241
  • 34
  • 87
  • 110