84

I can not remove broken package. Use the following command: sudo apt-get -f install but I get the following response:

Preparing to unpack .../nodejs_0.10.28-1chl1~trusty1_amd64.deb ...
Unpacking nodejs (0.10.28-1chl1~trusty1) over (0.10.25~dfsg2-2ubuntu1) ...
dpkg: error processing archive /var/cache/apt/archives/nodejs_0.10.28-1chl1~trusty1_amd64.deb (--unpack):
 trying to overwrite '/usr/share/man/man1/node.1.gz', which is also in package nodejs-legacy 0.10.25~dfsg2-2ubuntu1
dpkg-deb: error: subprocess paste was killed by signal (Broken pipe)
Processing triggers for man-db (2.6.7.1-1) ...
Errors were encountered while processing:
 /var/cache/apt/archives/nodejs_0.10.28-1chl1~trusty1_amd64.deb
E: Sub-process /usr/bin/dpkg returned an error code (1)

I tried various commands like

 2015  sudo apt-get clean
 2020  sudo dpkg --configure -a
 2023  sudo apt-get autoremove
 2034  sudo apt-get upgrade && sudo apt-get -f install

But I did not get any result. I can not install synaptic. Any ideas how can I remove the broken package ?

Krasimir
  • 1,153
  • 1
    Here few answers has suggested --force-remove-reinstreq and --force-overwrite. Please note that you should use these two (especially the first one) only if you are a Linux expert , because it can break you system completely. – g_p Dec 02 '16 at 03:49

13 Answers13

111

run this command to remove broken packages in ubuntu.

sudo dpkg --remove --force-remove-reinstreq package_name 

after removing package update your system with command

sudo apt-get update

restart system after successfully updation.

premal
  • 1,813
  • 12
    This command should always be avoided as it breaks you system more than it repairs – rancho Jun 19 '16 at 20:03
  • 2
    @rancho depends on what package it is. – Philip Jul 06 '16 at 13:18
  • nice one, the way you gus always write package_name, yet i see a list of 900 lines in a crazy format, for example : Broken libopencv-highgui2.4v5:amd64 Conflicts on libopencv-highgui2.4 [ amd64 ] < 2.4.8+dfsg1-2ubuntu1 > ( libs ). waiting on LTS has really done this crazy trick to me. – nyxee Aug 15 '17 at 07:35
  • 1
    @rancho "it breaks you system more than it repairs" can you elaborate? man dpkg does not help a lot. – Stéphane Gourichon May 09 '19 at 16:45
  • This was the only thing that worked for me. I broke my mysql while updating the package. Now I couldn't purge or reinstall. So this saved my life. – Ankit Singhaniya Aug 12 '19 at 05:35
  • 2
    I think reinstalling the broken package would have much less change of breaking the system. Try sudo apt install --reinstall packagename-here. After the package has been succesfully reinstalled and is not longer a broken one, you can remove it normally. – Mikko Rantalainen Jul 14 '21 at 07:11
21

Open your terminal and use following command

sudo dpkg --purge nodejs-legacy
sudo apt-get install -f

It should solve your problem.

g_p
  • 18,504
19

This fixed my problem:

sudo dpkg -i --force-overwrite /var/cache/apt/archives/nodejs_0.10.28-1chl1~trusty1_amd64.deb
Eliah Kagan
  • 117,780
Krasimir
  • 1,153
  • Really helpful. I almost lost many packages that depend on a broken package. I only overwrited that broken one then everything solved – fsevenm Feb 05 '20 at 06:51
18

I've found that:

sudo dpkg --remove --force-remove-reinstreq <packagename>

Works best. If it gives you an error that it won't remove a package because it is depended on by another package, remove that other package as well. You'll have to repeat this step several times and then reinstall your deleted packages.

The force-remove-reinstreq is THE "nuclear option" of deleting a package. It only fails if there is another package depending on the one you're about to delete -- Again, in that case, deleted the depending package too.

muru
  • 197,895
  • 55
  • 485
  • 740
Bryan Wilcutt
  • 181
  • 1
  • 2
11

If you have a broken dependency (which I have encountered with openjdk), you will want to purge the package and force it to skip over dependency problems:

sudo dpkg -P --force-depends package_name

I found the answer on another forum

11

NOTE: The following command will remove the installation and removal scripts including the list files. It won't remove the package, nor it will fix anything, it will just make dpkg forget about the error message.

rm /var/lib/dpkg/info/<package_name>.*

example:

rm /var/lib/dpkg/info/elasticsearch.*

Error404
  • 7,440
buycanna.io
  • 211
  • 2
  • 5
  • This answer helped me find a less drastic solution to the problem. I added set -x to the top of the /var/lib/dpkg/info/$PKG_NAME.postrm to echo what is was executing. This showed that it was failing while trying to deluser. I manually deleted the user, commented the offending line, and was then able to successfully uninstall the package. – ankh-morpork Apr 16 '21 at 16:17
  • The accepted answer does not fix my problem because it get stuck on pre-removal script anyway – xrfang Feb 14 '23 at 08:48
8

None of the above worked for me. Eventually I edited /var/lib/dpkg/status and removed the packages from there.

However, I would not advise this. It's just an option if all else fails.

NotTheDr01ds
  • 17,888
  • 4
    This seems to be the only thing that worked for me. Even the so called 'nuclear option' of --force-remove-reinstreq couldn't delete the offending package. Thank you, sir. – alex Mar 15 '18 at 10:00
5

Here's one:

update your package list like this

 sudo apt-get update

then cleanup any partial packages

 sudo apt-get autoclean

Now clean the apt cache

 sudo apt-get clean

Now remove any unnecessary dependancies

 sudo apt-get autoremove

from the command above, you can identify any broken packages and forcefully remove it like this

 sudo dpkg --remove --force-remove-reinstreq package_name

Finally mopup any other packages with dependacies

 sudo apt-get -f install 

Tell me how it goes.

Zuko
  • 1,267
  • 11
  • 12
3

Open your terminal , and paste these line after line

sudo rm -rf  /var/cache/apt/archives/nodejs_0.10.28-1chl1~trusty1_amd64.deb
sudo apt-get autoclean
sudo apt-get update
sudo apt-get upgrade

then try again

Raja G
  • 102,391
  • 106
  • 255
  • 328
3

The same error repeats If we do apt-get clean and apt-get -f install unless we remove the junk data from /var/lib/dpkg/status file in Ubuntu.

Suppose we need to remove apache broken package. Initially we have to open the status file and search for the package apache. Remove the entire package description and save the status file. Then try using apt-get -f install and apt-get clean.

d a i s y
  • 5,511
2

None of the above worked for me

I used sudo aptitude.

It found the error immediately and offered options. You select and it fixes it.

  • also fixed it for me on debian - this was the only working solution for me. None of the comments before worked for me! Thanks! – Hirbod Dec 14 '18 at 23:21
1

I had a problem with broken kodi package. I opened synaptic package manager and used the "broken" filter to locate the package and marked it for complete removal. It worked like a champ.

Joe
  • 11
0
  1. query all the packages that are installed today or yesterday awk -v foo=$(date '+%Y-%m-%d') -v bar=$(date -d "yesterday" '+%Y-%m-%d') '($1==foo || $1==bar) && $3~/^install$/ { print $4 }' /var/log/dpkg.log
  2. wine-qqintl:i386 caused the problem, so I remove the package sudo dpkg -r wine-qqintl:i386

  3. done.

  • 2
    ok, we can get recently installed packages like that, but this doesn't answer the question which asks how to remove broken packages – Zanna Oct 20 '16 at 07:31