From bc30b771b98492b4b761e2354560c9b9a810d077 Mon Sep 17 00:00:00 2001 From: larsec Date: Thu, 11 Jan 2024 09:14:49 +0000 Subject: [PATCH] Add readme Added instructions for APT repository --- README.md | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 README.md diff --git a/README.md b/README.md new file mode 100644 index 0000000..481c4ac --- /dev/null +++ b/README.md @@ -0,0 +1,19 @@ +# Linux Registry Usage +These are the usage instructions for the cloudyne package repository for linux packages + +## Aptitude +```bash +# Ensure prerequisites are installed +apt-get update +apt-get -y install gnupg2 apt-transport-https curl + +# Download and import the public key for verifying packages +sudo curl https://pkg.cloudyne.io/debian/repository.key -o /etc/apt/trusted.gpg.d/cloudyne.asc + +# Add the package repository +source /etc/os-release +sudo echo "deb https://pkg.cloudyne.io/debian ${VERSION_CODENAME} main" | tee /etc/apt/sources.list.d/cloudyne.list + +# Check that the repository works +sudo apt-get update +``` \ No newline at end of file