Created
January 16, 2026 01:10
-
-
Save sogaiu/5ffeb2b969fda83836b3b967a25b8921 to your computer and use it in GitHub Desktop.
signal installation on debian-based
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
| # NOTE: These instructions only work for 64-bit Debian-based | |
| # Linux distributions such as Ubuntu, Mint etc. | |
| # 1. Install our official public software signing key: | |
| wget -O- https://updates.signal.org/desktop/apt/keys.asc | gpg --dearmor > signal-desktop-keyring.gpg; | |
| cat signal-desktop-keyring.gpg | sudo tee /usr/share/keyrings/signal-desktop-keyring.gpg > /dev/null | |
| # 2. Add our repository to your list of repositories: | |
| wget -O signal-desktop.sources https://updates.signal.org/static/desktop/apt/signal-desktop.sources; | |
| cat signal-desktop.sources | sudo tee /etc/apt/sources.list.d/signal-desktop.sources > /dev/null | |
| # 3. Update your package database and install Signal: | |
| sudo apt update && sudo apt install signal-desktop | |
| # via: https://signal.org/download/linux/ |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment