commit bc30b771b98492b4b761e2354560c9b9a810d077 Author: larsec Date: Thu Jan 11 09:14:49 2024 +0000 Add readme Added instructions for APT repository 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