Install ubuntu tweak on 14.04

Asked by Fahad Ahmed Syed

I am getting following error while installing ubuntu tweak :

fahad@fahadSCC:~/Downloads$ sudo dpkg -i ubuntu-tweak_0.8.7-1~trusty2_all.deb
(Reading database ... 268507 files and directories currently installed.)
Preparing to unpack ubuntu-tweak_0.8.7-1~trusty2_all.deb ...
Unpacking ubuntu-tweak (0.8.7-1~trusty2) over (0.8.7-1~trusty2) ...
dpkg: dependency problems prevent configuration of ubuntu-tweak:
 ubuntu-tweak depends on python-compizconfig; however:
  Package python-compizconfig is not installed.
 ubuntu-tweak depends on gir1.2-gconf-2.0; however:
  Package gir1.2-gconf-2.0 is not installed.

dpkg: error processing package ubuntu-tweak (--install):
 dependency problems - leaving unconfigured
Processing triggers for hicolor-icon-theme (0.13-1) ...
Processing triggers for gconf2 (3.2.6-0ubuntu2) ...
Processing triggers for libglib2.0-0:i386 (2.40.2-0ubuntu1) ...
Processing triggers for libglib2.0-0:amd64 (2.40.2-0ubuntu1) ...
Processing triggers for gnome-menus (3.10.1-0ubuntu2) ...
Processing triggers for desktop-file-utils (0.22-1ubuntu1) ...
Processing triggers for bamfdaemon (0.5.1+14.04.20140409-0ubuntu1) ...
Rebuilding /usr/share/applications/bamf-2.index...
Processing triggers for mime-support (3.54ubuntu1.1) ...
Errors were encountered while processing:
 ubuntu-tweak

Question information

Language:
English Edit question
Status:
Solved
For:
Ubuntu unity Edit question
Assignee:
No assignee Edit question
Solved by:
Manfred Hampl
Solved:
Last query:
Last reply:
Revision history for this message
Best Manfred Hampl (m-hampl) said :
#1

The command

sudo apt-get install -f

should solve the dependencies by installing the additional packages. What is the result of that command?

Remark: Another way of installing Ubuntu-tweak is by adding the PPA to your list of repository sources. Then you can install Ubuntu-tweak with the standard package management programs and the dependencies will be taken care of, and you will also automatically get updates when available.

sudo add-apt-repository ppa:tualatrix/ppa
sudo apt-get install ubuntu-tweak

Revision history for this message
actionparsnip (andrew-woodhead666) said :
#2

Or:

sudo add-apt-repository ppa:tualatrix/ppa
sudo apt-get update
sudo apt-get install ubuntu-tweak

Revision history for this message
actionparsnip (andrew-woodhead666) said :
#3
Revision history for this message
Fahad Ahmed Syed (fahad-ahmed60-w) said :
#4

Thanks Manfred Hampl, that solved my question.