web-dev-qa-db-ja.com

「apt-get update」でエラーが発生する

現在、OSを19.04 Disco Dingoに更新していますが、実行しようとするたびに

Sudo apt-get update

次のエラーが発生します。

E: The repository 'http://ppa.launchpad.net/webupd8team/atom/ubuntu disco 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.

これの理由は何ですか、どうすれば修正できますか?.

https://launchpad.net/~webupd8team/+archive/ubuntu/atom で確認できるように、このPPAには18.04(Bionic)までのリリースのビルドのみが含まれ、19.04のビルドは含まれていません。したがって、このPPAをシステムに使用することはできません。もう一度削除してください。と

Sudo add-apt-repository -r ppa:webupd8team/atom

PPAの説明では、公式のAtomドキュメントを参照して、Atomをインストールするための推奨される方法を確認します。

代わりに公式リポジトリを使用してください: https://flight-manual.atom.io/getting-started/sections/installing-atom/#platform-linux

提供されたリンクに続く公式の指示は次のとおりです。

DebianおよびUbuntu(deb/apt)

AtomをDebian、Ubuntu、または関連するディストリビューションにインストールするには、次のコマンドを実行して、公式パッケージリポジトリをシステムに追加します。

wget -qO - https://packagecloud.io/AtomEditor/atom/gpgkey | Sudo apt-key add -
Sudo sh -c 'echo "deb [Arch=AMD64] https://packagecloud.io/AtomEditor/atom/any/ any main" > /etc/apt/sources.list.d/atom.list'
Sudo apt-get update

Atomをapt-get(またはUbuntuではapt)を使用してインストールできます):

# Install Atom
Sudo apt-get install atom
# Install Atom Beta
Sudo apt-get install atom-beta
3
Byte Commander