22.04 システムで構成された 16.04 リポジトリを削除するにはどうすればよいですか?

22.04 システムで構成された 16.04 リポジトリを削除するにはどうすればよいですか?

sudo apt update端末に追加すると、22.04システムにxenial(16.04リポジトリ)があるという警告が表示されます。コマンドを追加しましたfind /etc/apt -type f -exec grep xenial {} +。以下の出力を追加します。 xenial(16.04リポジトリ)があることが表示されます。これを削除するために、'/etc/apt/sources.list.d/official-source-repositories.list'nano cliエディタとgeditテキストエディタを使用して開きました。 xenialを参照する行はありません。もう一つはありますか?どのように削除しますか?

1. sudo apt アップデート警告

W: http://dl.openfoam.org/ubuntu/dists/jammy/InRelease: Key is stored in legacy trusted.gpg keyring (/etc/apt/trusted.gpg), see the DEPRECATION section in apt-key(8) for details.
W: https://download.docker.com/linux/ubuntu/dists/jammy/InRelease: Key is stored in legacy trusted.gpg keyring (/etc/apt/trusted.gpg), see the DEPRECATION section in apt-key(8) for details.
W: http://us.archive.ubuntu.com/ubuntu/dists/xenial-updates/InRelease: Key is stored in legacy trusted.gpg keyring (/etc/apt/trusted.gpg), see the DEPRECATION section in apt-key(8) for details.
W: http://security.ubuntu.com/ubuntu/dists/xenial-security/InRelease: Key is stored in legacy trusted.gpg keyring (/etc/apt/trusted.gpg), see the DEPRECATION section in apt-key(8) for details.
W: http://packages.osrfoundation.org/gazebo/ubuntu-stable/dists/jammy/InRelease: Key is stored in legacy trusted.gpg keyring (/etc/apt/trusted.gpg), see the DEPRECATION section in apt-key(8) for details.

find /etc/apt -type f -exec grep xenial {} +2.出力

/etc/apt/sources.list.d/official-source-repositories.list.save:deb-src http://us.archive.ubuntu.com/ubuntu/ xenial-updates main restricted
/etc/apt/sources.list.d/official-source-repositories.list.save:deb-src http://us.archive.ubuntu.com/ubuntu/ xenial-backports main restricted universe multiverse
/etc/apt/sources.list.d/official-source-repositories.list.save:deb-src http://security.ubuntu.com/ubuntu xenial-security main restricted
/etc/apt/sources.list.d/official-source-repositories.list:deb-src http://us.archive.ubuntu.com/ubuntu/ xenial-updates main restricted
/etc/apt/sources.list.d/official-source-repositories.list:# deb-src http://us.archive.ubuntu.com/ubuntu/ xenial-backports main restricted universe multiverse
/etc/apt/sources.list.d/official-source-repositories.list:deb-src http://security.ubuntu.com/ubuntu xenial-security main restricted

ベストアンサー1

以下を編集して、22.04システムから16.04リポジトリを削除できます。ソフトウェアソース一覧。まず、テキストエディタを使用してソースリストを開きます。

sudo nano /etc/apt/sources.list

次に、16.04リポジトリへの参照を含む行を見つけて削除します。完了したら、ファイルを保存してエディタを終了します。

リポジトリを削除した後、システムが変更を認識するようにパッケージリストを更新する必要があります。

sudo apt update

これにより、システムが最新のパッケージ情報で更新され、16.04リポジトリへの参照が削除されます。

おすすめ記事