Created
July 3, 2025 16:01
-
-
Save gmolveau/3d37731d8ce90b4411f6018752eb63d9 to your computer and use it in GitHub Desktop.
Installing Signal on Ubuntu without gpg errors
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# avoids the common error : The following signatures couldn't be verified because the public key is not available: NO_PUBKEY D980A17457F6FB06 | |
sudo mkdir -m 0755 -p /etc/apt/keyrings/ | |
wget -O- https://updates.signal.org/desktop/apt/keys.asc | gpg --dearmor | sudo tee /usr/share/keyrings/signal-desktop-keyring.gpg > /dev/null | |
sudo chmod 644 /usr/share/keyrings/signal-desktop-keyring.gpg | |
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-xenial.list | |
sudo apt update && sudo apt install signal-desktop |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment