How to install bup on Ubuntu 22.04

I’ve built a PPA that currently publishes bup0.33 for Ubuntu 22.04 for x64 computers

This one-liner installs the PPA, updates the APT package cache and installs bup:

example.sh
sudo add-apt-repository -y ppa:ulikoehler/bup && sudo apt update && sudo apt -y install bup

Want to build it yourself?

The bup package has been built using my deb-buildscripts toolchain. In order to build it yourself:

example.sh
git clone https://github.com/ulikoehler/deb-buildscripts
cd deb-buildscripts
./deb-bup.py

You might need to install some build dependencies for the build process to work, but the script will tell you what is missing.

Additionally you should install python3-xattr- the package in Ubuntu is too old, so install it using

example.sh
pip install -U pyxattr

Check out similar posts by category: Linux