Tag: update
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”"
Problem parsing dependency Depends
13/11/2013
Got this message this morning while trying to do an update/upgrade check…
E: Problem parsing dependency Depends
E: Error occurred while processing zita-rev1 (NewVersion2)
E: Problem with MergeList /var/lib/apt/lists/mirrordirector.raspbian.org_raspbian_dists_wheezy_main_binary-armhf_Packages
E: The package lists or status file could not be parsed or opened.
You can fix this with the next command:
1 |
sudo rm /var/lib/apt/lists/* -vf |
-v means verbose and the f stands for force.. (Remove all files and show the user what it is doing.
After that do the update as usualy:
1 |
sudo apt-get update |
Share the post "Problem parsing dependency Depends"
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)"