web-dev-qa-db-ja.com

auto-aptをインストールできないのはなぜですか?

OS:Ubuntu 18.04

インストール方法について buntuドキュメント を見ていましたauto-apt。ただし、実行すると

apt-cache show auto-apt

私は得る

N: Unable to locate package auto-apt
E: No packages found

auto-apt

編集します。これは投稿の複製ではありません apt search:limit to perfect match 。以下では、ターミナルで得た他の結果をいくつか公開しています。

$ apt search ^auto-apt$
Sorting... Done
Full Text Search... Done

$ Sudo apt-get install auto-apt
[Sudo] password for username: 
Reading package lists... Done
Building dependency tree       
Reading state information... Done
E: Unable to locate package auto-apt
1
evaristegd

Auto-aptは2014年、つまり5年前にバージョン0.3.24に最後に更新されたようです。また、現在のところ、xenial(16.04)は、リポジトリ情報にauto-aptがまだ含まれている唯一のサポートされているリリースのようです。 bionic(18.04)では、debパッケージをダウンロードしてauto-aptをインストールできます。依存関係は満足です。 runをインストールするには

wget https://mirrors.Edge.kernel.org/ubuntu/pool/universe/a/auto-apt/auto-apt_0.3.24_AMD64.deb
Sudo dpkg -i auto-apt_0.3.24_AMD64.deb
Sudo apt install -f

余談ですが、UbuntuはDebianベースのOSであり、すべてのパッケージはDebian自体からインポートされるため、DebianはStretchまたはBusterで利用できないため、auto-aptもドロップする予定です。

2
Kulfy