我试图通过apt-get从官方存储库安装Docky,但是它找不到包。因此,我从网上下载了.deb,并尝试了用gdebi进行手动安装,这就是输出:
$ sudo gdebi docky_2.2.1.1-1_all.deb
Reading package lists... Done
Building dependency tree
Reading state information... Done
Reading state information... Done
This package is uninstallable
Dependency is not satisfiable: libgconf2.0-cil (>= 2.24.0)我找不到关于为什么这个包不能使用的任何信息。还有其他方法来安装docky吗?
发布于 2020-05-09 10:34:18
您需要从以前的Ubuntu18.04LTS版本手动获取相依性 of docky:
mkdir -p ~/Downloads/docky
cd ~/Downloads/docky
wget -c http://archive.ubuntu.com/ubuntu/pool/universe/g/gnome-sharp2/libgconf2.0-cil_2.24.2-4_all.deb
wget -c http://archive.ubuntu.com/ubuntu/pool/main/g/glibc/multiarch-support_2.27-3ubuntu1_amd64.deb
wget -c http://archive.ubuntu.com/ubuntu/pool/universe/libg/libgnome-keyring/libgnome-keyring-common_3.12.0-1build1_all.deb
wget -c http://archive.ubuntu.com/ubuntu/pool/universe/libg/libgnome-keyring/libgnome-keyring0_3.12.0-1build1_amd64.deb
wget -c http://archive.ubuntu.com/ubuntu/pool/universe/g/gnome-keyring-sharp/libgnome-keyring1.0-cil_1.0.0-5_amd64.deb
sudo apt-get install ./*.deb然后安装docky:
wget -c http://archive.ubuntu.com/ubuntu/pool/universe/d/docky/docky_2.2.1.1-1_all.deb
sudo apt-get install ./docky_2.2.1.1-1_all.deb发布于 2022-10-26 09:02:31
有一个很好的扩展达什码头,它完全取代了Ubuntu22上的buggy和不受支持的Docky!
https://askubuntu.com/questions/1237396
复制相似问题