On this page, , you see a list of repository list for xpra.
But what commands do I need to run it? Confused. Completely new to linux and ubuntu.
I am on Ubuntu 18.04 LTS
11 Answer
Before you proceed it should be noted that xpra package is already included in official Ubuntu repositories (in the universe pocket). So you can simply get version 2.1.3 on your Ubuntu 18.04 LTS with simple commands like:
sudo add-apt-repository universe
sudo apt-get install xpraIf you really need to add their repository - proceed with the following commands:
# add GPG key
wget -q -O- | sudo apt-key add -
# add XPRA repository
sudo add-apt-repository "deb bionic main"
# install XPRA package
sudo apt-get install xpraand you will get the latest version from xpra.org.
3