1

Whenever I try to install any packages, I see the following error

You might want to run 'apt-get -f install' to correct these:
The following packages have unmet dependencies:
 gparted : Depends: libgtkmm-2.4-1v5 (>= 1:2.24.0) but it is not going to be installed
           Depends: libparted-fs-resize0 (>= 3.1) but it is not going to be installed
 linux-image-extra-4.8.0-52-generic : Depends: linux-image-4.8.0-52-generic but it is not going to be installed
 linux-image-generic-hwe-16.04 : Depends: linux-image-4.8.0-52-generic but it is not going to be installed
 linux-signed-image-4.8.0-52-generic : Depends: linux-image-4.8.0-52-generic (= 4.8.0-52.55~16.04.1) but it is not going to be installed
E: Unmet dependencies. Try 'apt-get -f install' with no packages (or specify a solution).

My /boot device is full. Please give me solution.

wjandrea
  • 14,504
Parth
  • 11

1 Answers1

0

The problem is you're trying to install a package for which there are several unmet dependencies, i.e. other packages on which gparted relies.

You can either try:

sudo apt-get -f install

Or install EACH dependency manually, for example:

sudo apt-get install libgtkmm-2.4-1v5

Either way you need to clear some storage if you want to install gparted.

wjandrea
  • 14,504