Docky リポジトリを追加できません

Docky リポジトリを追加できません

デフォルトで apt を使用して Docky をインストールできるといくつかの場所で読みましたが、うまくいきません。リポジトリを追加しようとしましたが、承認されていないか何かで更新されないリポジトリの 1 つです。Docky 用の Ubuntu 19.04 で動作するリポジトリはありますか?

編集: @user535733

> $ sudo add-apt-repository ppa:docky-core/stable [sudo] password:
> This ppa is currently used for builds of release builds of
> docky and plank.  More info:
> https://launchpad.net/~docky-core/+archive/ubuntu/stable Press [ENTER]
> to continue or Ctrl-c to cancel adding it.
> 
> Ign:1 http://dl.google.com/linux/chrome/deb stable InRelease Hit:2
> http://archive.canonical.com/ubuntu cosmic InRelease                  
> Hit:3 http://us.archive.ubuntu.com/ubuntu disco InRelease             
> Hit:4 http://dl.google.com/linux/chrome/deb stable Release            
> Hit:5 http://us.archive.ubuntu.com/ubuntu cosmic InRelease            
> Get:6 http://security.ubuntu.com/ubuntu disco-security InRelease [97.5
> kB]      Hit:7 http://us.archive.ubuntu.com/ubuntu disco-updates
> InRelease               Hit:8 http://us.archive.ubuntu.com/ubuntu
> cosmic-updates InRelease              Ign:9
> http://ppa.launchpad.net/docky-core/stable/ubuntu disco InRelease     
> Hit:11 http://us.archive.ubuntu.com/ubuntu disco-backports InRelease  
> Err:12 http://ppa.launchpad.net/docky-core/stable/ubuntu disco Release
> 404  Not Found [IP: 91.189.95.83 80] Reading package lists... Done    
> E: The repository 'http://ppa.launchpad.net/docky-core/stable/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.

ご存知のとおり、リポジトリを更新できないというエラーがいつも発生します。

答え1

docky-core PPAにはディスコリリース。最新版は巧妙な/etc/apt/sources.list、または の.list ファイルを変更する/etc/apt/sources.list.d/か、現在サポートされている別の PPA を探してください。

アップデート#1:

terminal...

cd /etc/apt# ディレクトリを変更

grep -i docky sources.list# dockyを検索

docky が見つかった場合は、次のようになります。

sudo pico sources.list# ファイルを編集する

を含む行を見つけますドック

変化ディスコ巧妙な

control+ をo押し、return# を押してファイルを保存します

control+ x# エディターを終了する

完了です。

docky が見つからなかった場合:

cd sources.list.d# ディレクトリを変更

grep -i docky *.list# dockyを再度検索

dockyが見つかったらファイル名をメモします

sudo pico found_filename.list# ファイル名を編集する

変化ディスコ巧妙な

control+ をo押し、return# を押してファイルを保存します

control+ x# エディターを終了する

完了です。

関連情報