Advertisement
Johnny2

Installing_Element_in_Linux_systems

Aug 13th, 2021
154
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.61 KB | None | 0 0
  1. Installing_Element_in_Linux_systems
  2. Its FOSS https://itsfoss.com/element/
  3.  
  4. Element officially supports Debian/Ubuntu for installation. You can just add the package repository and install element.
  5.  
  6. The commands used for this is:
  7.  
  8. sudo apt install -y wget apt-transport-https
  9.  
  10. sudo wget -O /usr/share/keyrings/riot-im-archive-keyring.gpg https://packages.riot.im/debian/riot-im-archive-keyring.gpg
  11.  
  12. echo "deb [signed-by=/usr/share/keyrings/riot-im-archive-keyring.gpg] https://packages.riot.im/debian/ default main" | sudo tee /etc/apt/sources.list.d/riot-im.list
  13.  
  14. sudo apt update
  15.  
  16. sudo apt install element-desktop
  17.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement