Install docky in Ubuntu 20.04

By

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?

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:

👉 For more insights, check out this resource.

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

Your Answer

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