Mengatasi Error "N: Repository 'http://mirror.smkn1klaten.sch.id/ debian buster InRelease' changed its 'Suite' value from 'stable' to 'oldstable' "

Pada saat melakukan update Debian Buster ke salah satu server repository yang ada di internet, Saya Mendapatkan pesan kesalahan sebagai berikut :

root@ns100:/home/hyd# apt update
		
Get:1 http://mirror.smkn1klaten.sch.id/debian buster InRelease [122 kB]
Get:2 http://mirror.smkn1klaten.sch.id/debian buster-updates InRelease [51.9 kB]
Get:3 http://mirror.smkn1klaten.sch.id/debian-security buster/updates InRelease [65.4 kB]
Ign:4 http://mirror.smkn1klaten.sch.id/debian-security buster/updates/main Sources
Ign:5 http://mirror.smkn1klaten.sch.id/debian-security buster/updates/main amd64 Packages
Ign:6 http://mirror.smkn1klaten.sch.id/debian-security buster/updates/main Translation-en
Get:4 http://mirror.smkn1klaten.sch.id/debian-security buster/updates/main Sources [199 kB]
Get:5 http://mirror.smkn1klaten.sch.id/debian-security buster/updates/main amd64 Packages [302 kB]
Get:6 http://mirror.smkn1klaten.sch.id/debian-security buster/updates/main Translation-en [158 kB]
Fetched 898 kB in 1s (811 kB/s)
Reading package lists... Done
Building dependency tree
Reading state information... Done
2 packages can be upgraded. Run 'apt list --upgradable' to see them.
N: Repository 'http://mirror.smkn1klaten.sch.id/debian buster InRelease' changed its 'Suite' value from 'stable' to 'oldstable'
N: Repository 'http://mirror.smkn1klaten.sch.id/debian buster-updates InRelease' changed its 'Suite' value from 'stable-updates' to 'oldstable-updates'
N: Repository 'http://mirror.smkn1klaten.sch.id/debian-security buster/updates InRelease' changed its 'Suite' value from 'stable' to 'oldstable'

di shell. Untuk itu saya ingin berbagi tips dan solusi untuk mengatasi hal tersebut. Untuk itu ikuti langkah-langkahnya.

Solution 1

Tambahkan opsi pada perintah apt update

root@ns100:/home/hyd# apt update --allow-releaseinfo-change

 

Solution 2

Jalankan baris perintah berikut ini.

root@ns100:/home/hyd# apt --allow-releaseinfo-change update
root@ns100:/home/hyd# apt install -y unzip xvfb libxi6 libgconf-2-4 gnupg2
root@ns100:/home/hyd# curl -sS -o - https://dl-ssl.google.com/linux/linux_signing_key.pub | apt-key add
root@ns100:/home/hyd# echo "deb https://dl.google.com/linux/chrome/deb/ stable main" >> /etc/apt/sources.list.d/google-chrome.list
root@ns100:/home/hyd# apt -y update
root@ns100:/home/hyd# apt -y install google-chrome-stable
root@ns100:/home/hyd# wget -N https://chromedriver.storage.googleapis.com/89.0.4389.23/chromedriver_linux64.zip -P ~/
root@ns100:/home/hyd# unzip ~/chromedriver_linux64.zip -d ~/
root@ns100:/home/hyd# rm ~/chromedriver_linux64.zip
root@ns100:/home/hyd# mv -f ~/chromedriver /usr/local/bin/chromedriver
root@ns100:/home/hyd# chown root:root /usr/local/bin/chromedriver
root@ns100:/home/hyd# chmod 0755 /usr/local/bin/chromedriver

 

Solution 3

root@ns100:/home/hyd# wget -q -O - https://dl-ssl.google.com/linux/linux_signing_key.pub | apt-key add - && sh -c 'echo "deb [arch=amd64] http://dl.google.com/linux/chrome/deb/ stable main" >> /etc/apt/sources.list.d/google.list' && apt-get --allow-releaseinfo-change update && apt-get install -y google-chrome-unstable --no-install-recommends && rm -rf /var/lib/apt/lists/*

 

Demikian, Semoga solusi-solusi tersebut dapat membantu dan bermanfaat

 

 

 

Sumber

  • https://exerror.com/repository-http-deb-debian-org-debian-buster-updates-inrelease-changed-its-suite-value-from-stable-updates-to-oldstable-updates/