데비안: 이제 버스터는 안정적입니다. 테스트에서 벗어나 어떻게 "사이드레벨"할 수 있나요?

데비안: 이제 버스터는 안정적입니다. 테스트에서 벗어나 어떻게

testing나는 한동안 그것을 사용해왔고 더 많은 시스템을 원했기 stable때문에 이를 달성하는 가장 좋은 방법은 내 시스템을 에 고정하는 것이라고 생각했습니다 buster.

다운그레이드가 위험하다는 것을 알고 있지만생각하다이것은 2차 순위이므로 위험이 없나요?

이것은 내 현재 설정입니다.

------------------------------

$ cat /etc/apt/sources.list

# I've added non-free, to allow installation of nvidia-driver 

deb http://ftp.us.debian.org/debian/ testing main contrib non-free
deb-src http://ftp.us.debian.org/debian/ testing main

deb http://security.debian.org/debian-security testing-security main
deb-src http://security.debian.org/debian-security testing-security main

deb http://ftp.us.debian.org/debian/ testing-updates main
deb-src http://ftp.us.debian.org/debian/ testing-updates main

deb http://deb.debian.org/debian stretch-backports main contrib non-free


------------------------------

$ cat /etc/debian_version
buster/sid

저 할 수 있어요:

  1. 모두 또는 관련 미러 testing로 변경buster

  2. 실행 apt update+apt dist-upgrade

그래서 내 새로운 /etc/apt/sources.list:

deb http://deb.debian.org/debian/ buster main contrib non-free
deb-src http://deb.debian.org/debian/ buster main contrib non-free

deb http://deb.debian.org/debian/ buster-updates main
deb-src http://deb.debian.org/debian/ buster-updates main

deb http://deb.debian.org/debian-security buster/updates main
deb-src http://deb.debian.org/debian-security buster/updates main

deb http://ftp.debian.org/debian buster-backports main contrib non-free
deb-src http://ftp.debian.org/debian buster-backports main contrib non-free

ベストアンサー1

베타에서 데비안의 최신 안정 버전으로 "측면 업그레이드"하는 정확한 시기는 베타가 안정될 때 또는 그 직후입니다. 이러한 변경이 더 이상 불가능하다는 주요 지표는 다음 버전의 출시 시기입니다.glibc테스트로 마이그레이션 – 이런 일이 일어났습니다9월 중순.

어떤 경우든 지원되지 않는 다운그레이드 영역에 있는 경우 glibc 업그레이드 후에는 한 번에 많은 패키지를 다운그레이드해야 할 가능성이 높아지므로 상황은 더욱 악화됩니다.

apt upgradeapt full-upgradeAPT는 기본적으로 패키지를 다운그레이드하지 않기 때문에 제안한 대로 저장소 구성을 변경해도 다음에 실행할 때 실제로 변경 사항이 발생하지 않습니다 . 테스트에서 안정으로 전환하려면 (임시로) 다음을 구성해야 합니다.고정된 우선순위이런 방식으로 Buster 패키지의 우선순위는 1000보다 큽니다.

Package: *
Pin: release a=buster
Pin-Priority: 1001

그런 다음 "업그레이드"하고 다운그레이드를 주의 깊게 기록한 후 다음과 같이 추가합니다.AB언급한 대로 영향을 받는 패키지를 다시 설치하여 모든 파일이 있는지 확인하세요.

나는 추천하고 싶다아니요이 작업을 수행. 안정 버전을 다시 설치하거나 다음 안정 버전(아마도 2021년쯤)까지 테스트를 계속하는 것이 더 나을 것입니다.

おすすめ記事