Tag: upgrade
Howto fix: InRelease’ changed its ‘Suite’ value from ‘testing’ to ‘stable’ “error”
08/07/2019
Well, its not really an error..
So: YAY!!! We are going from testing to stable on the raspberry pi (debian buster).
What now?
1 2 3 4 |
sudo apt-get update E: Repository 'http://raspbian.raspberrypi.org/raspbian buster InRelease' changed its 'Suite' value from 'testing' to 'stable' N: This must be accepted explicitly before updates for this repository can be applied. See apt-secure(8) manpage for details. |
Run it like this:
1 |
apt-get update --allow-releaseinfo-change |
Your will see something like this:
1 2 3 4 5 6 |
Hit:1 http://archive.raspberrypi.org/debian buster InRelease Get:2 http://raspbian.raspberrypi.org/raspbian buster InRelease [15.0 kB] Get:3 http://raspbian.raspberrypi.org/raspbian buster/main armhf Packages [13.0 MB] Fetched 13.0 MB in 1min 41s (129 kB/s) Reading package lists... Done N: Repository 'http://raspbian.raspberrypi.org/raspbian buster InRelease' changed its 'Suite' value from 'testing' to 'stable' |
And ofcourse dont forget to upgrade!
1 2 3 4 5 6 |
sudo apt-get upgrade Reading package lists... Done Building dependency tree Reading state information... Done Calculating upgrade... Done 0 upgraded, 0 newly installed, 0 to remove and 0 not upgraded. |
Share the post "Howto fix: InRelease’ changed its ‘Suite’ value from ‘testing’ to ‘stable’ “error”"
Updating the Raspberry pi (and firmware)
19/08/2013
First the normal update
1 |
sudo apt-get update && sudo apt-get upgrade |
Upgrade your firmware:
1 |
sudo apt-get -y dist-upgrade |
And:
1 |
sudo rpi-update |
Share the post "Updating the Raspberry pi (and firmware)"