Migrate from Ubuntu PPA to new repository

TL;DR. Due to technical reasons, I've migrating from Ubuntu Launchpad PPA to self-hosted repository. To perform automatic migration, run this command (root access required):

curl -Sl https://deb.melianmiko.ru/setup | sudo bash -

After that, you'll continue to receive updates of my applications, like OpenFreebuds, ZMake, ZeppPlayer.

Why I'm migrated to self-hosted repo

I don't want to run unknown scripts, how-to setup all by myself

This is the long way.

# Remove old repository
sudo add-apt-repository -r ppa:melianmiko/software

# Add key to trusted APT keys
curl -s https://deb.melianmiko.ru/pubkey.gpg| gpg --dearmor | sudo tee /etc/apt/trusted.gpg.d/melianmiko-pub.gpg > /dev/null

# Connect repo, replace `bookworm` with your distribution codename
# Supported: bookworm, jammy, kinetic, lunar
echo 'deb https://deb.melianmiko.ru/ bookworm main' | sudo tee /etc/apt/sources.list.d/melianmiko-repo.list > /dev/null

# Update apt cache
sudo apt update
thumb_up 0 thumb_down 0 chat Comments (0) favorite Donate