From 0f92e1dfa65b09e4c27e35759e07e94b1bc72ec2 Mon Sep 17 00:00:00 2001 From: larsec Date: Wed, 18 Dec 2024 00:02:45 +0000 Subject: [PATCH] Update README.md --- README.md | 30 +++++++++++++++++++++++++++++- 1 file changed, 29 insertions(+), 1 deletion(-) 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