我读到过一些地方说默认情况下你可以直接使用 apt 安装 Docky,但那行不通。尝试添加存储库,但它是那些无法更新的存储库之一,因为它未经授权或其他原因。有没有适用于 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.
您知道,您通常无法更新 repo 错误。
答案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# 退出编辑器
你完成了。