How to add xpra repository list?

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

1

1 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 xpra

If 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 xpra

and you will get the latest version from xpra.org.

3

Your Answer

Sign up or log in

Sign up using Google Sign up using Facebook Sign up using Email and Password

Post as a guest

By clicking “Post Your Answer”, you agree to our terms of service, privacy policy and cookie policy

You Might Also Like