Install docky in Ubuntu 20.04

I tried to install Docky from the official repositories via apt-get but it couldn't find the packet. So I downloaded the .deb from the web and tried a manual install with gdebi and this was the output:

$ 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)

I couldn't find any info about why this packet is not usable. Is there any other way to install docky?

1 Answer

You need to get the dependencies of docky manually from previous Ubuntu 18.04 LTS version:

mkdir -p ~/Downloads/docky
cd ~/Downloads/docky
wget -c
wget -c
wget -c
wget -c
wget -c
sudo apt-get install ./*.deb

and then install docky:

wget -c
sudo apt-get install ./docky_2.2.1.1-1_all.deb
3

Your Answer

Sign up or log in

Sign up using Google Sign up using Facebook Sign up using Email and Password

Post as a guest

By clicking “Post Your Answer”, you agree to our terms of service, privacy policy and cookie policy

You Might Also Like