http://us.archive.ubuntu.com/ubuntu/dists/lucid/main/source/Sources를 가져 오지 못했습니다. 404 찾을 수 없음 [IP : 91.189.91.26 80]


9

우분투 16.04 LTS를 사용하고 있습니다. 오늘 아침에 실행했을 때 sudo apt-get update다음 오류가 발생했습니다.

W: The repository 'http://us.archive.ubuntu.com/ubuntu lucid Release' does not have a Release file.
N: Data from such a repository can't be authenticated and is therefore potentially dangerous to use.
N: See apt-secure(8) manpage for repository creation and user configuration details.
E: Failed to fetch http://us.archive.ubuntu.com/ubuntu/dists/lucid/main/source/Sources  404  Not Found [IP: 91.189.91.26 80]
E: Some index files failed to download. They have been ignored, or old ones used instead.

인터넷에서 답을 확인했습니다. 비슷한 게시물을 찾았지만 해결책이 없습니다. 내가 시도한 흥미로운 해결책 중 하나는 다음과 같습니다.

가장 간단한 해결책은 다음 두 단계를 수행하는 것입니다.

1- 소스 목록 백업-> sudo cp /etc/apt/sources.list /etc/apt/sources.list.backup

us.archive의 모든 인스턴스의 이름을 바꾸거나에 보관 "/etc/apt/sources.list의"2 오픈 소스 파일 http://us.archive.ubuntu.com/ubuntu/

http://old-releases.ubuntu.com/ubuntu/

또한 동일하게 http://security.ubuntu.com/ubuntu/dists/saucy-security/universe/binary-i386/Packages

3- 위의 작업을 수행 한 후 sudo apt-get update를 실행하십시오.

무엇을 추측하십시오 .. 작동하지 않았다. 실제로 더 많은 오류가 발생했습니다.

W: The repository 'http://old-releases.ubuntu.com/ubuntu xenial Release' does not have a Release file.
N: Data from such a repository can't be authenticated and is therefore potentially dangerous to use.
N: See apt-secure(8) manpage for repository creation and user configuration details.
W: The repository 'http://old-releases.ubuntu.com/ubuntu xenial-updates Release' does not have a Release file.
N: Data from such a repository can't be authenticated and is therefore potentially dangerous to use.
N: See apt-secure(8) manpage for repository creation and user configuration details.
W: The repository 'http://old-releases.ubuntu.com/ubuntu xenial-backports Release' does not have a Release file.
N: Data from such a repository can't be authenticated and is therefore potentially dangerous to use.
N: See apt-secure(8) manpage for repository creation and user configuration details.
W: The repository 'http://old-releases.ubuntu.com/ubuntu xenial-security Release' does not have a Release file.
N: Data from such a repository can't be authenticated and is therefore potentially dangerous to use.
N: See apt-secure(8) manpage for repository creation and user configuration details.
W: The repository 'http://us.archive.ubuntu.com/ubuntu lucid Release' does not have a Release file.
N: Data from such a repository can't be authenticated and is therefore potentially dangerous to use.
N: See apt-secure(8) manpage for repository creation and user configuration details.
E: Failed to fetch http://old-releases.ubuntu.com/ubuntu/dists/xenial/main/binary-amd64/Packages  404  Not Found
E: Failed to fetch http://old-releases.ubuntu.com/ubuntu/dists/xenial-updates/main/binary-amd64/Packages  404  Not Found
E: Failed to fetch http://old-releases.ubuntu.com/ubuntu/dists/xenial-backports/main/binary-amd64/Packages  404  Not Found
E: Failed to fetch http://old-releases.ubuntu.com/ubuntu/dists/xenial-security/main/binary-amd64/Packages  404  Not Found
E: Failed to fetch http://us.archive.ubuntu.com/ubuntu/dists/lucid/main/source/Sources  404  Not Found [IP: 91.189.91.23 80]
E: Some index files failed to download. They have been ignored, or old ones used instead.

도와주세요.

편집하다:

여기 내 원본 출처입니다.

# deb cdrom:[Ubuntu 16.04 LTS _Xenial Xerus_ - Release amd64 (20160420.1)]/ xenial main restricted

# See http://help.ubuntu.com/community/UpgradeNotes for how to upgrade to
# newer versions of the distribution.
deb http://in.archive.ubuntu.com/ubuntu/ xenial main restricted
# deb-src http://in.archive.ubuntu.com/ubuntu/ xenial main restricted

## Major bug fix updates produced after the final release of the
## distribution.
deb http://in.archive.ubuntu.com/ubuntu/ xenial-updates main restricted
# deb-src http://in.archive.ubuntu.com/ubuntu/ xenial-updates main restricted

## N.B. software from this repository is ENTIRELY UNSUPPORTED by the Ubuntu
## team, and may not be under a free licence. Please satisfy yourself as to
## your rights to use the software. Also, please note that software in
## universe WILL NOT receive any review or updates from the Ubuntu security
## team.
deb http://in.archive.ubuntu.com/ubuntu/ xenial universe
# deb-src http://in.archive.ubuntu.com/ubuntu/ xenial universe
deb http://in.archive.ubuntu.com/ubuntu/ xenial-updates universe
# deb-src http://in.archive.ubuntu.com/ubuntu/ xenial-updates universe

## N.B. software from this repository is ENTIRELY UNSUPPORTED by the Ubuntu 
## team, and may not be under a free licence. Please satisfy yourself as to 
## your rights to use the software. Also, please note that software in 
## multiverse WILL NOT receive any review or updates from the Ubuntu
## security team.
deb http://in.archive.ubuntu.com/ubuntu/ xenial multiverse
# deb-src http://in.archive.ubuntu.com/ubuntu/ xenial multiverse
deb http://in.archive.ubuntu.com/ubuntu/ xenial-updates multiverse
# deb-src http://in.archive.ubuntu.com/ubuntu/ xenial-updates multiverse

## N.B. software from this repository may not have been tested as
## extensively as that contained in the main release, although it includes
## newer versions of some applications which may provide useful features.
## Also, please note that software in backports WILL NOT receive any review
## or updates from the Ubuntu security team.
deb http://in.archive.ubuntu.com/ubuntu/ xenial-backports main restricted universe multiverse
# deb-src http://in.archive.ubuntu.com/ubuntu/ xenial-backports main restricted universe multiverse

## Uncomment the following two lines to add software from Canonical's
## 'partner' repository.
## This software is not part of Ubuntu, but is offered by Canonical and the
## respective vendors as a service to Ubuntu users.
# deb http://archive.canonical.com/ubuntu xenial partner
# deb-src http://archive.canonical.com/ubuntu xenial partner

deb http://security.ubuntu.com/ubuntu xenial-security main restricted
# deb-src http://security.ubuntu.com/ubuntu xenial-security main restricted
deb http://security.ubuntu.com/ubuntu xenial-security universe
# deb-src http://security.ubuntu.com/ubuntu xenial-security universe
deb http://security.ubuntu.com/ubuntu xenial-security multiverse
# deb-src http://security.ubuntu.com/ubuntu xenial-security multiverse


1
@mikewhatever 복제본이 유효하지 않습니다. OP의 문제는 '가장 빠른 미러'를 선택하는 것이 아니라 Lucid 리포지토리 경고 문제를 해결하려고 시도했으며 그 과정에서 Xenial 설정을 중단했습니다.
토마스 워드

답변:


13

여기에 몇 가지 중대한 오류가 있습니다.

먼저 16.04를 실행 중입니다. 즉, 일반 보관 미러를 맹목적으로 바꿀 수 없습니다 old-releases. 이것이 현재 Xenial repos missing에 관한 에러를 얻는 이유입니다.

둘째, 여전히 Lucid 저장소에서 그리기를 시도하고 있습니다. Lucid 저장소의 항목 중 상당 부분이 Xenial에서 작동하지 않거나 다양한 이유로 저장소에서 제거되었거나 업데이트 된 버전으로 대체되었으므로 도움이되지 않습니다. 또한 이전 릴리스에서 수행 한 지침은 구성에 포함 된 Lucid 저장소 라인 에만 적용됩니다.


발생한 문제를 해결하는 방법은 다음과 같습니다.

  1. 를 통해 /etc/apt/sources.list시작하고 모든 old-releases.ubuntu.com항목을 원래 미러 로 바꾸 십시오 us.archive.ubuntu.com.
  2. 참조하는 행을 찾아서 lucid주석 처리하거나 old-releases.ubuntu.com 해당 저장소에만 사용하십시오 .

    당신이 어떤 항목을 알 수없는 경우 /etc/apt/sources.list또는 /etc/apt/sources.list.d/*이 '명쾌한'항목이,이 명령을에서 실행 /etc/apt/: grep -r -i lucid /etc/apt/; 'lucid'라는 단어가 포함 된 파일을 식별합니다.

  3. sudo apt-get update 비슷한 명령이 이제 문제없이 작동합니다.

나는 Lucid 저장소가 수명이 끝났기 때문에 주석을 달 것을 강력히 권장합니다. 실제로 무언가를 필요로 하지 않는 한 , 활성화하지 마십시오.


참조하는 행을 찾을 수 없습니다 lucid. 질문을 편집하고 내을 추가했습니다 sources.list. 좀 봐 주실 래요?
utkarsh2k2

/etc/apt/sources.list.d/의 모든 곳을 확인하십시오. 어딘가에 Lucid가 있거나 처음에 한 실수를 얻지 못했을 것입니다. apt-get update오류가 해결되었는지 확인하기 위해 너무 시도해보십시오 . ( grep -r -i lucid /etc/apt/루시드 참조를 찾는 데 사용 )
토마스 워드

그것을 발견. 안에 2 개의 참조가있었습니다 /etc/apt/sources.list.d/alternative_Repo.list. 주석 처리 한 후에는 오류가 사라졌습니다.
utkarsh2k2
당사 사이트를 사용함과 동시에 당사의 쿠키 정책개인정보 보호정책을 읽고 이해하였음을 인정하는 것으로 간주합니다.
Licensed under cc by-sa 3.0 with attribution required.