This guide explains how to add the Golder Tech Debian repository to your system and install packages with GPG signature verification.
- Debian-based Linux distribution (Ubuntu, Debian, etc.)
curlorwgetfor downloading filesgnupgfor GPG key management (usually pre-installed)
First, import the repository's GPG public key to verify package signatures:
# Option 1: Import directly from URL (replace with actual URL)
curl -fsSL https://debs.golder.tech/gpg-key.asc | gpg --dearmor | sudo tee /usr/share/keyrings/golder-tech-archive-keyring.gpg > /dev/null
# Option 2: Download and import manually
wget -O- https://debs.golder.tech/gpg-key.asc | gpg --dearmor | sudo tee /usr/share/keyrings/golder-tech-archive-keyring.gpg > /dev/null
# Option 3: Manual download and import
wget https://debs.golder.tech/gpg-key.asc
gpg --dearmor golder-tech-gpg-key.asc
sudo mv golder-tech-gpg-key.asc.gpg /usr/share/keyrings/golder-tech-archive-keyring.gpgVerify the key was imported:
gpg --list-keys --keyring /usr/share/keyrings/golder-tech-archive-keyring.gpgCreate a new sources file:
sudo tee /etc/apt/sources.list.d/golder-tech.list > /dev/null << EOF
deb [signed-by=/usr/share/keyrings/golder-tech-archive-keyring.gpg] https://debs.golder.tech stable main
EOFUpdate your package index:
sudo apt updateIf you encounter GPG verification errors, ensure the key was imported correctly and try again.
Install the libvirt-volume-provisioner package:
sudo apt install libvirt-volume-provisionerIf you see errors like "The following signatures couldn't be verified":
-
Verify key import:
gpg --list-keys --keyring /usr/share/keyrings/golder-tech-archive-keyring.gpg
-
Re-import the key:
curl -fsSL https://debs.golder.tech/gpg-key.asc | gpg --dearmor | sudo tee /usr/share/keyrings/golder-tech-archive-keyring.gpg > /dev/null sudo apt update
If apt update fails:
-
Check sources file syntax:
cat /etc/apt/sources.list.d/golder-tech.list
-
Verify repository URL is accessible:
curl -I https://debs.golder.tech/dists/stable/Release
-
Check for network/firewall issues
If package installation fails:
-
Check package availability:
apt search libvirt-volume-provisioner
-
Clear apt cache:
sudo apt clean && sudo apt update
- Repository URL: https://debs.golder.tech
- Suite: stable
- Components: main
- Architecture: amd64
- GPG Key ID: 20879EBE6582F6BF1506DE02DB5CF7EA238FE114
- This repository uses GPG signature verification for package integrity
- Always verify GPG key fingerprints when importing keys
- The repository serves packages for libvirt volume provisioning tools
For issues with this repository:
- Check the GitHub repository
- Verify your system meets the prerequisites
- Ensure network connectivity to the repository
The GPG key has the following fingerprint:
2087 9EBE 6582 F6BF 1506 DE02 DB5C F7EA 238F E114
Verify this matches when importing the key.