3

I've done

sudo apt install conky-all
cp /etc/conky/conky.conf ~/.conkyrc
sudo apt-add-repository -y ppa:teejee2008/ppa
sudo apt update

and then;

sudo apt install conky-manager

I get;

Reading package lists... Done
Building dependency tree       
Reading state information... Done
E: Unable to locate package conky-manager

How can I overcome this problem?Why I am unable to locate the package?

rm-vanda
  • 3,202

1 Answers1

0

Looking into the repository, it appears that there is no conky-manager package available for any version of Ubuntu over 16.04.

Thus, as a workaround, you can simply edit the file /etc/apt/sources.list.d/teejee2008-ubuntu-ppa-$YOUR_DISTRO_NAME.list and change it to look like this:

deb http://ppa.launchpad.net/teejee2008/ppa/ubuntu xenial main
# deb-src http://ppa.launchpad.net/teejee2008/ppa/ubuntu xenial main

After that, just run sudo apt update one more time and you should be able to install it no problem after that.

Mind you, $YOUR_DISTRO_NAME in the file name above depends on the version you are currently running. You can find out what that is by running: lsb_release -c | awk '{print $2}'

rm-vanda
  • 3,202