Ubuntu Tweak doesn't want to install
I use that commands in Ubuntu 15.04:
sudo add-apt-repository ppa:tualatrix/ppa
sudo apt-get update
sudo apt-get install ubuntu-tweak
When I run sudo apt-get update
I get this error message:
W: Failed to fetch http://ppa.launchpad.net/tualatrix/ppa/ubuntu/dists/vivid/main/source/Sources 404 Not Found
W: Failed to fetch http://ppa.launchpad.net/tualatrix/ppa/ubuntu/dists/vivid/main/binary-amd64/Packages 404 Not Found
W: Failed to fetch http://ppa.launchpad.net/tualatrix/ppa/ubuntu/dists/vivid/main/binary-i386/Packages 404 Not Found
E: Some index files failed to download. They have been ignored, or old ones used instead.
Because of this error I can't install Ubuntu Tweak...
How can I solve this?
Solution 1:
ppa:tualatrix/ppa
doesn't (currently) contain any package for Ubuntu 15.04. The warning messages in your question are normal behaviour in such a case.
As a remedy, you can
-
remove Tualatrix' PPA and use the GetDeb App repository:
wget -q -O - http://archive.getdeb.net/getdeb-archive.key | sudo apt-key add - sudo sh -c 'echo "deb http://archive.getdeb.net/ubuntu vivid-getdeb apps" >> /etc/apt/sources.list.d/getdeb.list'
(source)
-
switch to the
trusty
packages from Tualatrix' PPA, since that seems to be the latest upstream version anyway:- Open the software properties settings (
gksudo software-properties-gtk
, if you can't find it in the system settings overview). - Select the entry for Tualatrix' PPA (binary) and click on the button titled Edit.
-
Replace
vivid
withtrusty
and click OK. Repeat step 2 and 3 with the entry for Tualatrix' PPA (source).
Click Close.
- Open the software properties settings (
In both cases you need to run sudo apt-get update
to update the newly configured package sources.