alexreinert/piVCCU

Proposed update for Installation instructions

brgbrg opened this issue · 2 comments

Hi,

after a defect on my SD card, i had to reinstall my Raspberry Pi 2 with piVCCU.
I choose the latest Raspberry Pi OS version, based on debian bullseye and followed the "Manual installation": https://github.com/alexreinert/piVCCU/blob/master/docs/setup/raspberrypi.md

Everything went smooth, except that in step 1 and 2 I had to adapt things to the new archive signature management.

I propose to replace:

  1. Add the public key of the repository
    wget -q -O - https://www.pivccu.de/piVCCU/public.key | sudo apt-key add -
  2. Add the package repository
    sudo bash -c 'echo "deb https://www.pivccu.de/piVCCU stable main" > /etc/apt/sources.list.d/pivccu.list'
    sudo apt update

with:

  1. Add the public key of the repository
    Check the version of your operating system:
    lsb_release -d
    For "buster" use:
    wget -q -O - https://www.pivccu.de/piVCCU/public.key | sudo apt-key add -
    For "bullseye" use:
    wget -q -O - https://www.pivccu.de/piVCCU/public.key | gpg --dearmor | sudo sed -n "w /usr/share/keyrings/piVCCU-keyring.gpg"
  2. Add the package repository
    For "buster" use:
    sudo bash -c 'echo "deb https://www.pivccu.de/piVCCU stable main" > /etc/apt/sources.list.d/pivccu.list'
    For "bullseye" use:
    sudo bash -c 'echo "deb [signed-by=/usr/share/keyrings/piVCCU-keyring.gpg] https://www.pivccu.de/piVCCU stable main" > /etc/apt/sources.list.d/pivccu.list'
    sudo apt update

Kind regards

Rolf Breuning
stale commented

This issue has been automatically marked as stale because it has not had recent activity. It will be closed if no further activity occurs. Thank you for your contributions.

stale commented

This issue has been automatically marked as stale because it has not had recent activity. It will be closed if no further activity occurs. Thank you for your contributions.