Install package update!
This commit is contained in:
parent
8ef1520cbd
commit
d36f606f9b
|
@ -1,2 +1,3 @@
|
|||
site/
|
||||
site.tar.gz
|
||||
.DS_Store
|
||||
|
|
|
@ -23,13 +23,13 @@ risks!
|
|||
|
||||
Download and install the .deb that suits your distro:
|
||||
|
||||
* [Bullseye](http://repo.hibbian.org/packetrepo/pool/main/h/hibbian-archive-keyring/hibbian-archive-keyring_20240924~packetrepo11+1_all.deb)
|
||||
* [Bookworm](http://repo.hibbian.org/packetrepo/pool/main/h/hibbian-archive-keyring/hibbian-archive-keyring_20240924~packetrepo12+1_all.deb)
|
||||
* [Testing](http://repo.hibbian.org/packetrepo/pool/main/h/hibbian-archive-keyring/hibbian-archive-keyring_20240924~packetrepo~TRIXIE+1_all.deb)
|
||||
* [Bullseye](http://repo.hibbian.org/packetrepo/pool/main/h/hibbian-archive-keyring/hibbian-archive-keyring_20240924~packetrepo11+3_all.deb)
|
||||
* [Bookworm](http://repo.hibbian.org/packetrepo/pool/main/h/hibbian-archive-keyring/hibbian-archive-keyring_20240924~packetrepo12+3_all.deb)
|
||||
* [Testing](http://repo.hibbian.org/packetrepo/pool/main/h/hibbian-archive-keyring/hibbian-archive-keyring_20240924~packetrepo~TRIXIE+3_all.deb)
|
||||
|
||||
## Set up Repo
|
||||
|
||||
`sudo apt install ./keyring.deb`
|
||||
`sudo apt install ./keyring-file.deb`
|
||||
|
||||
## Update
|
||||
|
||||
|
|
|
@ -13,31 +13,31 @@ apt update && apt install curl
|
|||
case `echo $osver` in
|
||||
"Debian trixie/sid"*)
|
||||
echo "Installing Repo, please wait..."
|
||||
curl http://repo.hibbian.org/packetrepo/pool/main/h/hibbian-archive-keyring/hibbian-archive-keyring_20240924~packetrepo~TRIXIE+2_all.deb | tee /tmp/hibbian-archive-keyring.deb
|
||||
curl http://repo.hibbian.org/packetrepo/pool/main/h/hibbian-archive-keyring/hibbian-archive-keyring_20240924~packetrepo~TRIXIE+3_all.deb | tee /tmp/hibbian-archive-keyring.deb
|
||||
apt install /tmp/hibbian-archive-keyring.deb
|
||||
echo -e "\033[32mRepository added correctly.\033[0m"
|
||||
;;
|
||||
"Debian 12"*)
|
||||
echo "Installing Repo, please wait..."
|
||||
curl http://repo.hibbian.org/packetrepo/pool/main/h/hibbian-archive-keyring/hibbian-archive-keyring_20240924~packetrepo12+2_all.deb | tee /tmp/hibbian-archive-keyring.deb
|
||||
curl http://repo.hibbian.org/packetrepo/pool/main/h/hibbian-archive-keyring/hibbian-archive-keyring_20240924~packetrepo12+3_all.deb | tee /tmp/hibbian-archive-keyring.deb
|
||||
apt install /tmp/hibbian-archive-keyring.deb
|
||||
echo -e "\033[32mRepository added correctly.\033[0m"
|
||||
;;
|
||||
"Raspbian 12"*)
|
||||
echo "Installing Repo, please wait..."
|
||||
curl http://repo.hibbian.org/packetrepo/pool/main/h/hibbian-archive-keyring/hibbian-archive-keyring_20240924~packetrepo12+2_all.deb | tee /tmp/hibbian-archive-keyring.deb
|
||||
curl http://repo.hibbian.org/packetrepo/pool/main/h/hibbian-archive-keyring/hibbian-archive-keyring_20240924~packetrepo12+3_all.deb | tee /tmp/hibbian-archive-keyring.deb
|
||||
apt install /tmp/hibbian-archive-keyring.deb
|
||||
echo -e "\033[32mRepository added correctly.\033[0m"
|
||||
;;
|
||||
"Raspbian 11"*)
|
||||
echo "Installing Repo, please wait..."
|
||||
curl http://repo.hibbian.org/packetrepo/pool/main/h/hibbian-archive-keyring/hibbian-archive-keyring_20240924~packetrepo11+2_all.deb | tee /tmp/hibbian-archive-keyring.deb
|
||||
curl http://repo.hibbian.org/packetrepo/pool/main/h/hibbian-archive-keyring/hibbian-archive-keyring_20240924~packetrepo11+3_all.deb | tee /tmp/hibbian-archive-keyring.deb
|
||||
apt install /tmp/hibbian-archive-keyring.deb
|
||||
echo -e "\033[32mRepository added correctly.\033[0m"
|
||||
;;
|
||||
"Debian 11"*)
|
||||
echo "Installing Repo, please wait..."
|
||||
curl http://repo.hibbian.org/packetrepo/pool/main/h/hibbian-archive-keyring/hibbian-archive-keyring_20240924~packetrepo11+2_all.deb | tee /tmp/hibbian-archive-keyring.deb
|
||||
curl http://repo.hibbian.org/packetrepo/pool/main/h/hibbian-archive-keyring/hibbian-archive-keyring_20240924~packetrepo11+3_all.deb | tee /tmp/hibbian-archive-keyring.deb
|
||||
apt install /tmp/hibbian-archive-keyring.deb
|
||||
echo -e "\033[32mRepository added correctly.\033[0m"
|
||||
;;
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
site_name: Hibby's Packet Radio Guide
|
||||
site_url: https://guide.foxk.it
|
||||
site_url: https://guide.hibbian.org
|
||||
|
||||
nav:
|
||||
- Home: index.md
|
||||
|
|
Loading…
Reference in New Issue