Debian 9 Stretch의 i3 -- 설치 오류 -- "충족되지 않은 종속성"

Debian 9 Stretch의 i3 -- 설치 오류 -- "충족되지 않은 종속성"

내 Debian 컴퓨터에 i3(창 관리자)를 설치하려고 할 때 일부 유선 종속성 오류가 발생했습니다.

The following packages have unmet dependencies:
gsettings-desktop-schemas : Breaks: gnome-settings-daemon (< 3.19.92) but 3.14.2-3+deb8u1 is to be installed
                            Breaks: mutter (< 3.19.92) but 3.14.4-1~deb8u1 is to be installed
N: Ignoring file '50unattended-upgrades.ucf-old' in directory '/etc/apt/apt.conf.d/' as it has an invalid filename extension
E: Error, pkgProblemResolver::Resolve generated breaks, this may be caused by held packages.

데비안은 지난 토요일 런타임에 apt-get upgrade8 "Jessie"에서 9 "Stretch"로 업그레이드되었습니다 . 이 문제가 이 업그레이드와 관련이 있습니까?

도움을 검색할 때 내 상황에 맞는 것을 찾을 수 없었습니다. 나는 데비안을 매우 좋아하지만 고급 사용자는 아닙니다. 어떤 지원이라도 정말 감사하겠습니다.

apt-cache policy gnome-settings-daemon mutter프로그램

gnome-settings-daemon:
  Installed: 3.14.2-3+deb8u1
  Candidate: 3.22.2-2
  Version table:
     3.22.2-2 0
        500 http://ftp.de.debian.org/debian/ stable/main amd64 Packages
 *** 3.14.2-3+deb8u1 0
        500 http://ftp.de.debian.org/debian/ oldstable/main amd64 Packages
        500 http://httpredir.debian.org/debian/ jessie/main amd64 Packages
        100 /var/lib/dpkg/status
mutter:
  Installed: 3.14.4-1~deb8u1
  Candidate: 3.22.3-2
  Version table:
     3.22.3-2 0
        500 http://ftp.de.debian.org/debian/ stable/main amd64 Packages
 *** 3.14.4-1~deb8u1 0
        500 http://ftp.de.debian.org/debian/ oldstable/main amd64 Packages
        500 http://httpredir.debian.org/debian/ jessie/main amd64 Packages
        100 /var/lib/dpkg/status
N: Ignoring file '50unattended-upgrades.ucf-old' in directory '/etc/apt/apt.conf.d/' as it has an invalid filename extension

답변1

충돌을 일으키는 소스는 특히 코드명 기반 저장소("jessie")와 일반 저장소("stable")가 혼합되어 있습니다.

이제 Debian 9로 (부분적으로) 업그레이드했으므로 다음과 같이 소스 코드를 편집해야 합니다.

  • "oldstable"을 참조하는 모든 줄은 주석 처리됩니다.
  • "stable"을 언급하는 모든 줄은 "stretch"를 의미합니다.
  • "jessie"를 참조하는 모든 줄은 "stretch"를 나타냅니다.

버전 코드명을 지정하면 다음 버전이 출시될 때 갑작스러운 업그레이드를 피할 수 있습니다.

관련 정보