"sudo apt update"가 패키지를 다운로드할 수 없습니다.

"sudo apt update"가 패키지를 다운로드할 수 없습니다.

내 서버에서 이 작업을 수행 하려고 하면 sudo apt update다음 오류가 발생합니다.

<... Removed for clarity ...>

Ign https://deb.nodesource.com jessie/main Translation-en                                                                                         
Get:37 http://deb.freexian.com wheezy-lts-kernel/main amd64 Packages [11.8 kB]                                                                    
Err http://debian.uberglobalmirror.com stretch InRelease                                                                                          
  
Get:38 http://nsolid-deb.nodesource.com jessie/main amd64 Packages [1467 B]                                       
Get:39 http://repo.mongodb.org jessie/mongodb-org/4.0/main amd64 Packages [16.0 kB]                                                      
Ign http://deb.freexian.com wheezy-lts/contrib Translation-en                                                                            
Ign http://deb.freexian.com wheezy-lts/main Translation-en                                                        
Ign http://deb.freexian.com wheezy-lts/non-free Translation-en                              
Ign http://deb.freexian.com wheezy-lts-kernel/main Translation-en                           
Err http://debian.uberglobalmirror.com stretch-updates InRelease                            
  
Ign http://repo.mongodb.org jessie/mongodb-org/4.0/main Translation-en                      
Ign http://nsolid-deb.nodesource.com jessie/main Translation-en       
Err http://debian.uberglobalmirror.com stretch Release.gpg            
  Temporary failure resolving 'debian.uberglobalmirror.com'
Err http://debian.uberglobalmirror.com stretch-updates Release.gpg
  Temporary failure resolving 'debian.uberglobalmirror.com'
Fetched 20.4 kB in 2s (8219 B/s)                
Reading package lists... Done
W: There is no public key available for the following key IDs:
112695A0E562B32A
W: Failed to fetch http://debian.uberglobalmirror.com/debian/dists/stretch/InRelease  

W: Failed to fetch http://debian.uberglobalmirror.com/debian/dists/stretch-updates/InRelease  

W: Failed to fetch http://debian.froxlor.org/dists/jessie/main/source/Sources  HttpError404

W: Failed to fetch http://debian.froxlor.org/dists/jessie/main/binary-amd64/Packages  HttpError404

W: Failed to fetch http://debian.uberglobalmirror.com/debian/dists/stretch/Release.gpg  Temporary failure resolving 'debian.uberglobalmirror.com'

W: Failed to fetch http://debian.uberglobalmirror.com/debian/dists/stretch-updates/Release.gpg  Temporary failure resolving 'debian.uberglobalmirror.com'

W: Some index files failed to download. They have been ignored, or old ones used instead.

데비안 버전:

No LSB modules are available.
Distributor ID: Debian
Description:    Debian GNU/Linux 8.11 (jessie)
Release:        8.11
Codename:       jessie

내가 지금까지 시도한 것 :

  • 콘솔 unset http_proxy에 들어가서unset https_proxy
  • /etc/apt/sources.list다음으로 변경합니다 .
deb http://debian.uberglobalmirror.com/debian/ stretch main
deb-src http://debian.uberglobalmirror.com/debian/ stretch main

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

# stretch-updates, previously known as 'volatile'
deb http://debian.uberglobalmirror.com/debian/ stretch-updates main contrib
deb-src http://debian.uberglobalmirror.com/debian/ stretch-updates main contrib
sudo cp /etc/apt/sources.list ~/ 
sudo wget "http://pastebin.com/raw.php?i=uzhrtg5M" -O /etc/apt/sources.list 
sudo apt-get update
sudo rm /etc/apt/sources.list.d/ubuntu-extras.list
sudo apt-get update
  • sudo apt-get upgrade그리고 sudo apt-get upgrade -f로부터여기.
  • apt-get clean

나는 많은 기사를 읽었지만 언급된 솔루션 중 어느 것도 나에게 도움이 되지 않았습니다. 어떤 도움이라도 대단히 감사하겠습니다.

답변1

여기에는 많은 문제가 있습니다.

  • 2020년 6월부터 Jessie는 더 이상 지원되지 않으므로 더 이상 패키지 저장소에 표시되지 않으므로 이에 대한 모든 참조를 제거해야 합니다.

  • Stretch를 사용할 수 있지만 2022년 6월까지는 LTS로만 가능합니다.

  • 버스터는 현재 '안정적'이다.

  • 맞아요 Temporary failure resolving 'debian.uberglobalmirror.com'. 그것은더이상저장소 서버이므로 실제로 전체 컬렉션을 다음으로 교체하는 것이 좋습니다 sources.list.추천상품, 필요한 경우 buster다음으로 교체stretch

      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-security/ buster/updates main contrib non-free
      deb-src http://deb.debian.org/debian-security/ buster/updates main contrib non-free
    
      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
    
  • 업데이트된 패키지 서명 키를 설치해야 할 수도 있습니다.

  • "buster"를 다시 설치하는 것이 더 좋습니다. 저장소에 더 이상 존재하지 않는 릴리스에서 업그레이드하는 것은 재미가 없습니다.

관련 정보