web-dev-qa-db-ja.com

aptでソフトウェアをインストールするために古いシステムを構成する方法は?

古くなったシステムがあり、まだ looking to install Alpineapt

thufir@dur:~$ 
thufir@dur:~$ Sudo apt-get update
Hit:1 http://old-releases.ubuntu.com/ubuntu cosmic InRelease
Reading package lists... Done
thufir@dur:~$ 
thufir@dur:~$ apt-cache search Alpine
nano - small, friendly text editor inspired by Pico
thufir@dur:~$ 
thufir@dur:~$ head -n 1 /etc/apt/sources.list
deb http://old-releases.ubuntu.com/ubuntu cosmic main
thufir@dur:~$ 
thufir@dur:~$ lsb_release -a
No LSB modules are available.
Distributor ID: Ubuntu
Description:    Ubuntu 18.10
Release:    18.10
Codename:   cosmic
thufir@dur:~$ 

私は 欠落しています レポですか?そうであれば、単に高山をインストールするために何を追加する必要がありますか?

1
Thufir

18.04 sources.listを使用します。

Sudo mv /etc/apt/sources.list /home/user/sources.list.bk
Sudo vi /etc/apt/sources.list

リポジトリをそれに貼り付けます。

deb http://us.archive.ubuntu.com/ubuntu/ bionic main restricted
deb http://us.archive.ubuntu.com/ubuntu/ bionic-updates main restricted
deb http://us.archive.ubuntu.com/ubuntu/ bionic universe
deb http://us.archive.ubuntu.com/ubuntu/ bionic-updates universe
deb http://us.archive.ubuntu.com/ubuntu/ bionic multiverse
deb http://us.archive.ubuntu.com/ubuntu/ bionic-updates multiverse
deb http://security.ubuntu.com/ubuntu bionic-security main restricted
deb http://security.ubuntu.com/ubuntu bionic-security universe
deb http://security.ubuntu.com/ubuntu bionic-security multiverse

次に、パッケージを更新してAlpineをインストールします。

Sudo apt update && Sudo apt install Alpine

Alpineがインストールされ、正しく起動します。

$ Alpine
Creating subdirectory "/home/spacer/mail" where Alpine will store
its mail folders.
Alpine finished -- Closed empty folder "INBOX"

user@ubuntu18:~$ cat /etc/lsb-release 
DISTRIB_ID=Ubuntu
DISTRIB_RELEASE=18.10
DISTRIB_CODENAME=cosmic
DISTRIB_DESCRIPTION="Ubuntu 18.10"

また、FedonKadifeliがコメントで提案したように、 次を実行できます

古いリリースを引き続き使用する場合は、/etc/apt/sources.listおよび変更archive.ubuntu.comおよびsecurity.ubuntu.comからold-releases.ubuntu.com

しかし、それは実際には私にとってはうまくいきませんでした。

1
Gryu