Due to compatibility issues between apt and B2 object storage, manual installation is the most reliable method. Browse the Available Packages on the home page and download the desired .deb:
wget https://debs.golder.tech/pool/main/<package>_<version>_<arch>.deb
sudo dpkg -i <package>_<version>_<arch>.deb
# Install any missing dependencies
sudo apt-get install -f
Alternatively, configure apt to use the repository directly:
echo "Types: deb
URIs: https://debs.golder.tech
Suites: stable
Components: main
Signed-By: /usr/share/keyrings/golder-tech.gpg" | \
sudo tee /etc/apt/sources.list.d/golder-tech.sources
echo "deb [signed-by=/usr/share/keyrings/golder-tech.gpg] https://debs.golder.tech stable main" | \
sudo tee /etc/apt/sources.list.d/golder-tech.list
Note: Some apt clients may experience "Content-Range header" errors with B2 object storage. If you encounter issues, use the manual installation method above.