Update README.md

New deb instructions
This commit is contained in:
2025-05-22 21:52:53 +00:00
parent 535e7b0635
commit c4d6b7a282

View File

@@ -20,14 +20,17 @@ sudo apt-get update
sudo apt-get -y install gnupg2 apt-transport-https curl sudo apt-get -y install gnupg2 apt-transport-https curl
# Download and import the public key for verifying packages # 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 # Prev: sudo curl https://pkg.cloudyne.io/debian/repository.key -o /etc/apt/keyrings/cloudyne.asc
sudo curl https://pkg.cloudyne.io/debian/repository.key -o /etc/apt/keyrings/cydeb.asc
# Add the package repository # Add the package repository
source /etc/os-release # Prev source /etc/os-release
echo "deb https://pkg.cloudyne.io/debian all main" | sudo tee /etc/apt/sources.list.d/cloudyne.list # Prev echo "deb https://pkg.cloudyne.io/debian all main" | sudo tee /etc/apt/sources.list.d/cloudyne.list
# For some packages you need the version-specific repository # For some packages you need the version-specific repository
echo "deb https://pkg.cloudyne.io/debian ${VERSION_CODENAME} main" | sudo tee /etc/apt/sources.list.d/cloudyne.list # Prev echo "deb https://pkg.cloudyne.io/debian ${VERSION_CODENAME} main" | sudo tee /etc/apt/sources.list.d/cloudyne.list
echo "deb [signed-by=/etc/apt/keyrings/cydeb.asc] https://pkg.cloudyne.io/debian all main" | sudo tee -a /etc/apt/sources.list.d/cydeb.list
# Check that the repository works # Check that the repository works
sudo apt-get update sudo apt-get update