diff --git a/README.md b/README.md index dd763d8..4f1c22e 100644 --- a/README.md +++ b/README.md @@ -13,6 +13,7 @@ Ubuntu: - lunar (23.04) - mantic (23.10) ### Usage +#### Ubuntu/Debian ```bash # Ensure prerequisites are installed sudo apt-get update @@ -30,4 +31,31 @@ echo "deb https://pkg.cloudyne.io/debian ${VERSION_CODENAME} main" | sudo tee /e # Check that the repository works sudo apt-get update -``` \ No newline at end of file +``` + +### Alpine +```bash +# get and save the key +cd /etc/apk/keys && curl -JO https://git.cloudyne.io/api/packages/linux/alpine/key + +# Add the following line to /etc/apk/repositories +echo 'https://git.cloudyne.io/api/packages/linux/alpine/all/repository' >> /etc/apk/repositories + +# Update +apk update +``` + +### RPM +```bash +# on RedHat based distributions +dnf config-manager --add-repo https://git.cloudyne.io/api/packages/linux/rpm.repo + +# on SUSE based distributions +zypper addrepo https://git.cloudyne.io/api/packages/linux/rpm.repo + +# Install +dnf install vvv + +``` + +### RPM \ No newline at end of file