Viper4Linux-GUI
Viper4Linux-GUI copied to clipboard
Adding the PPA on Ubuntu breaks the installation process
curl -s --compressed "https://thepbone.github.io/PPA-Repository/KEY.gpg" | gpg --dearmor | sudo tee /etc/apt/trusted.gpg.d/thepbone_ppa.gpg sudo curl -s --compressed -o /etc/apt/sources.list.d/thepbone_ppa.list "https://thepbone.github.io/PPA-Repository/thepbone_ppa.list" sudo apt update
the above creates a broken .list file in /etc/apt/sources.list.d because one of the developers of the project has changed their username, and now the PPA is outdated.
To fix this, add this PPA instead:
curl -s --compressed "https://timschneeb.github.io/PPA-Repository/KEY.gpg" | sudo apt-key add - sudo curl -s --compressed -o /etc/apt/sources.list.d/timschneeb_ppa.list "https://timschneeb.github.io/PPA-Repository/timschneeb_ppa.list" sudo apt update