Debian Buster 저장소에서 패키지를 설치하는 데 문제가 있습니다.

Debian Buster 저장소에서 패키지를 설치하는 데 문제가 있습니다.

해결되었습니다! 해결 방법은 아래 의견을 참조하세요.

Debian Buster에 i3를 설치하려고 하는데 패키지를 찾을 수 없습니다. 이 패키지를 설치하기 위해 무엇이 누락되었는지 잘 모르겠습니다.

다음과 같은 오류가 발생합니다.

> apt install i3
Reading package lists... Done
Building dependency tree       
Reading state information... Done
E: Unable to locate package i3
> apt install i3-wm
Reading package lists... Done
Building dependency tree       
Reading state information... Done
E: Unable to locate package i3-wm

이건 내 /etc/apt/sources.list파일이야

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

# buster-updates, previously known as 'volatile'
deb http://deb.debian.org/debian/ buster-updates main contrib non-free
deb-src http://deb.debian.org/debian/ buster-updates main contrib non-free

apt update패키지를 설치하기 전에 및 를 실행해 보았지만 apt-get update동일한 오류가 발생했습니다.

데비안 저장소는 다음과 같습니다.https://packages.debian.org/sid/i3

추적기는 다음과 같습니다.https://tracker.debian.org/pkg/i3-wm

혹시 도움이 될까해서 설치해봤는데열성하지만 같은 오류가 발생합니다.

이 패키지를 설치하는 데 필요한 설정이나 뭔가가 누락되었나요?

답변1

다음 /etc/apt/sources.list줄이 누락되었습니다.

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

그런 다음 apt-get update, apt-get upgrade그리고 apt install i3.

답변2

현재는 LTS 및 업데이트 저장소만 있습니다. 여기에는 모든 패키지가 아닌 업데이트만 있습니다. 기본 데비안 저장소가 누락되었습니다. 즉:

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

관련 정보