2017-11-06 12 views
0

Ubuntu 16.04サーバーで「sudo apt -y update」を実行しましたが、次のエラー:apt update error:リポジトリ 'http://us.archive.ubuntu.com/ubuntu saucy Release'にリリースファイルがありません

# apt -y update      
Reading package lists... Done                          
E: The repository 'http://us.archive.ubuntu.com/ubuntu saucy Release' does not have a Release file. 
N: Updating from such a repository can't be done securely, and is therefore disabled by default. 
N: See apt-secure(8) manpage for repository creation and user configuration details. 
E: The repository 'http://us.archive.ubuntu.com/ubuntu saucy-updates Release' does not have a Release file. 
N: Updating from such a repository can't be done securely, and is therefore disabled by default. 
N: See apt-secure(8) manpage for repository creation and user configuration details. 
[email protected]:/var/lib/apt# apt -y update 
Get:1 http://cn.archive.ubuntu.com/ubuntu xenial InRelease [132 B] 
Err:1 http://cn.archive.ubuntu.com/ubuntu xenial InRelease                   
    Clearsigned file isn't valid, got 'NOSPLIT' (does the network require authentication?) 
Get:2 http://cn.archive.ubuntu.com/ubuntu xenial-updates InRelease [132 B]               
Err:2 http://cn.archive.ubuntu.com/ubuntu xenial-updates InRelease                 
    Clearsigned file isn't valid, got 'NOSPLIT' (does the network require authentication?) 
Get:3 http://cn.archive.ubuntu.com/ubuntu xenial-backports InRelease [132 B]               
Err:3 http://cn.archive.ubuntu.com/ubuntu xenial-backports InRelease                 
    Clearsigned file isn't valid, got 'NOSPLIT' (does the network require authentication?) 
Ign:4 http://us.archive.ubuntu.com/ubuntu saucy InRelease                   
Hit:5 http://security.ubuntu.com/ubuntu xenial-security InRelease 
Ign:6 http://us.archive.ubuntu.com/ubuntu saucy-updates InRelease 
Err:7 http://us.archive.ubuntu.com/ubuntu saucy Release 
    404 Not Found [IP: 2001:67c:1562::16 80] 
Err:8 http://us.archive.ubuntu.com/ubuntu saucy-updates Release 
    404 Not Found [IP: 2001:67c:1562::16 80] 
Reading package lists... Done 
E: The repository 'http://us.archive.ubuntu.com/ubuntu saucy Release' does not have a Release file. 
N: Updating from such a repository can't be done securely, and is therefore disabled by default. 
N: See apt-secure(8) manpage for repository creation and user configuration details. 
E: The repository 'http://us.archive.ubuntu.com/ubuntu saucy-updates Release' does not have a Release file. 
N: Updating from such a repository can't be done securely, and is therefore disabled by default. 
N: See apt-secure(8) manpage for repository creation and user configuration details. 

理由は何ですか?この問題を解決するにはどうすればよいですか?ありがとうございました!

答えて

2

AskUbuntuの@Videonauthありがとうございます。私はhis answerの助けを借りて問題を解決しました。これは私が使用したコマンドです:

sudo -i 

cat > /etc/apt/sources.list << EOF 
deb http://archive.ubuntu.com/ubuntu xenial main restricted universe multiverse 
deb-src http://archive.ubuntu.com/ubuntu xenial main restricted universe multiverse 
deb http://archive.ubuntu.com/ubuntu xenial-updates main restricted universe multiverse 
deb-src http://archive.ubuntu.com/ubuntu xenial-updates main restricted universe multiverse 
deb http://archive.ubuntu.com/ubuntu xenial-backports main restricted universe multiverse 
deb-src http://archive.ubuntu.com/ubuntu xenial-backports main restricted universe multiverse 
deb http://archive.ubuntu.com/ubuntu xenial-security main restricted universe multiverse 
deb-src http://archive.ubuntu.com/ubuntu xenial-security main restricted universe multiverse 
#deb http://archive.ubuntu.com/ubuntu xenial-proposed restricted main universe multiverse 
#deb-src http://archive.ubuntu.com/ubuntu xenial-proposed restricted main universe multiverse 
deb http://archive.canonical.com/ubuntu xenial partner 
deb-src http://archive.canonical.com/ubuntu xenial partner 
EOF 

sudo apt clean 
sudo apt update 
sudo apt dist-upgrade 
関連する問題