LinuxQuestions.org
Download your favorite Linux distribution at LQ ISO.
Home Forums Tutorials Articles Register
Go Back   LinuxQuestions.org > Forums > Linux Forums > Linux - Newbie
User Name
Password
Linux - Newbie This Linux forum is for members that are new to Linux.
Just starting out and have a question? If it is not in the man pages or the how-to's this is the place!

Notices


Reply
  Search this Thread
Old 01-19-2010, 04:57 AM   #1
johnh10000
Member
 
Registered: Nov 2008
Distribution: Ubuntu Lucid Lynx
Posts: 541

Rep: Reputation: 33
howto get rid of a broken program


Ok I should know how to do this, but. Using Ubuntu Jaunty. I have tried using dpkg --purge no joy

Code:
root@tux:~/ftp/pub/linux/multimedia/dj/campcaster# /usr/share/mc/extfs/deb run /root/ftp/pub/linux/multimedia/dj/campcaster/campcaster-station_1.4.0-3beta3_i386.deb INSTALL
Installing /root/ftp/pub/linux/multimedia/dj/campcaster/campcaster-station_1.4.0-3beta3_i386.deb
Selecting previously deselected package campcaster-station.
(Reading database ... 241533 files and directories currently installed.)
Preparing to replace campcaster-station 1.4.0-3beta3 (using .../campcaster-station_1.4.0-3beta3_i386.deb) ...
no postgresql 8.1, 8.2 or 8.3 found
dpkg: warning - old pre-removal script returned error exit status 1
dpkg - trying script from the new package instead ...
no postgresql 8.1, 8.2 or 8.3 found
dpkg: error processing /root/ftp/pub/linux/multimedia/dj/campcaster/campcaster-station_1.4.0-3beta3_i386.deb (--install):
 subprocess new pre-removal script returned error exit status 1
no postgresql 8.1, 8.2 or 8.3 found
dpkg: error while cleaning up:
 subprocess post-installation script returned error exit status 1
Errors were encountered while processing:
 /root/ftp/pub/linux/multimedia/dj/campcaster/campcaster-station_1.4.0-3beta3_i386.deb

root@tux:~/ftp/pub/linux/multimedia/dj/campcaster# dpkg  campcaster-studio --configure~
dpkg: need an action option

Type dpkg --help for help about installing and deinstalling packages[*];
Use `dselect' or `aptitude' for user-friendly package management;
Type dpkg -Dhelp for a list of dpkg debug flag values;
Type dpkg --force-help for a list of forcing options;
Type dpkg-deb --help for help about manipulating *.deb files;
Type dpkg --license|--licence for copyright licence and lack of warranty (GNU GPL)[*].

Options marked[*] produce a lot of output - pipe it through `less' or `more' !
root@tux:~/ftp/pub/linux/multimedia/dj/campcaster# 
root@tux:~# 
root@tux:~# dpkg --purge campcaster-station
dpkg: error processing campcaster-station (--purge):
 Package is in a very bad inconsistent state - you should
 reinstall it before attempting a removal.
Errors were encountered while processing:
 campcaster-station
root@tux:~#
 
Old 01-19-2010, 06:28 AM   #2
evo2
LQ Guru
 
Registered: Jan 2009
Location: Japan
Distribution: Mostly Debian and CentOS
Posts: 6,724

Rep: Reputation: 1705Reputation: 1705Reputation: 1705Reputation: 1705Reputation: 1705Reputation: 1705Reputation: 1705Reputation: 1705Reputation: 1705Reputation: 1705Reputation: 1705
The long answer is to try to debug post-install and/or pre-remove scripts which can be found in /var/lib/dpkg/info.
Eg. campcaster-studio.prerm and campcaster-studio.postinst

The quick and dirty option is:
Code:
dpkg --purge --force-remove-reinstreq campcaster-studio
Use at your own risk.

Evo2.

PS. Nine times out of ten these problems happen because of very badly made packages. Where did you get this one from?
 
Old 01-19-2010, 06:49 AM   #3
cola
Senior Member
 
Registered: Sep 2007
Posts: 1,045

Rep: Reputation: 65
Quote:
Originally Posted by johnh10000 View Post
Ok I should know how to do this, but. Using Ubuntu Jaunty. I have tried using dpkg --purge no joy

Code:
root@tux:~/ftp/pub/linux/multimedia/dj/campcaster# /usr/share/mc/extfs/deb run /root/ftp/pub/linux/multimedia/dj/campcaster/campcaster-station_1.4.0-3beta3_i386.deb INSTALL
Installing /root/ftp/pub/linux/multimedia/dj/campcaster/campcaster-station_1.4.0-3beta3_i386.deb
Selecting previously deselected package campcaster-station.
(Reading database ... 241533 files and directories currently installed.)
Preparing to replace campcaster-station 1.4.0-3beta3 (using .../campcaster-station_1.4.0-3beta3_i386.deb) ...
no postgresql 8.1, 8.2 or 8.3 found
dpkg: warning - old pre-removal script returned error exit status 1
dpkg - trying script from the new package instead ...
no postgresql 8.1, 8.2 or 8.3 found
dpkg: error processing /root/ftp/pub/linux/multimedia/dj/campcaster/campcaster-station_1.4.0-3beta3_i386.deb (--install):
 subprocess new pre-removal script returned error exit status 1
no postgresql 8.1, 8.2 or 8.3 found
dpkg: error while cleaning up:
 subprocess post-installation script returned error exit status 1
Errors were encountered while processing:
 /root/ftp/pub/linux/multimedia/dj/campcaster/campcaster-station_1.4.0-3beta3_i386.deb

root@tux:~/ftp/pub/linux/multimedia/dj/campcaster# dpkg  campcaster-studio --configure~
dpkg: need an action option

Type dpkg --help for help about installing and deinstalling packages[*];
Use `dselect' or `aptitude' for user-friendly package management;
Type dpkg -Dhelp for a list of dpkg debug flag values;
Type dpkg --force-help for a list of forcing options;
Type dpkg-deb --help for help about manipulating *.deb files;
Type dpkg --license|--licence for copyright licence and lack of warranty (GNU GPL)[*].

Options marked[*] produce a lot of output - pipe it through `less' or `more' !
root@tux:~/ftp/pub/linux/multimedia/dj/campcaster# 
root@tux:~# 
root@tux:~# dpkg --purge campcaster-station
dpkg: error processing campcaster-station (--purge):
 Package is in a very bad inconsistent state - you should
 reinstall it before attempting a removal.
Errors were encountered while processing:
 campcaster-station
root@tux:~#
Is it solved?
 
Old 01-19-2010, 11:32 AM   #4
johnh10000
Member
 
Registered: Nov 2008
Distribution: Ubuntu Lucid Lynx
Posts: 541

Original Poster
Rep: Reputation: 33
Quote:
Originally Posted by cola View Post
Is it solved?
no, i've been at the dentist
 
Old 01-19-2010, 05:07 PM   #5
johnh10000
Member
 
Registered: Nov 2008
Distribution: Ubuntu Lucid Lynx
Posts: 541

Original Poster
Rep: Reputation: 33
Quote:
Originally Posted by evo2 View Post
The long answer is to try to debug post-install and/or pre-remove scripts which can be found in /var/lib/dpkg/info.
Eg. campcaster-studio.prerm and campcaster-studio.postinst

The quick and dirty option is:
Code:
dpkg --purge --force-remove-reinstreq campcaster-studio
well that tried, but failed
Code:
root@tux:~# dpkg --purge --force-remove-reinstreq campcaster-libs
(Reading database ... 241381 files and directories currently installed.)
Removing campcaster-libs ...
Purging configuration files for campcaster-libs ...
Processing triggers for libc6 ...
ldconfig deferred processing now taking place
root@tux:~# dpkg --purge --force-remove-reinstreq campcaster-station
dpkg - warning, overriding problem because --force enabled:
 Package is in a very bad inconsistent state - you should
 reinstall it before attempting a removal.
(Reading database ... 241038 files and directories currently installed.)
Removing campcaster-station ...
no postgresql 8.1, 8.2 or 8.3 found
dpkg: error processing campcaster-station (--purge):
 subprocess pre-removal script returned error exit status 1
no postgresql 8.1, 8.2 or 8.3 found
dpkg: error while cleaning up:
 subprocess post-installation script returned error exit status 1
Errors were encountered while processing:
 campcaster-station
root@tux:~#
Quote:
PS. Nine times out of ten these problems happen because of very badly made packages. Where did you get this one from?
campcaster.org i have never had it working. its going after this mess.

oh can give me clues as to how debug the scripts in .../info
 
Old 01-19-2010, 05:39 PM   #6
evo2
LQ Guru
 
Registered: Jan 2009
Location: Japan
Distribution: Mostly Debian and CentOS
Posts: 6,724

Rep: Reputation: 1705Reputation: 1705Reputation: 1705Reputation: 1705Reputation: 1705Reputation: 1705Reputation: 1705Reputation: 1705Reputation: 1705Reputation: 1705Reputation: 1705
It seems to be failing because postresql is not installed. It is probably trying to clean up tables that it may have made inside the db, and bailing out when it can't.

If is a shell script, put "set -x" near the top line of the postrm script. Then run "dpkg --purge --force-remove-reinstreq campcaster-station" again.

This will make the script echo every line to the terminal, from that you should be able to work out where the problem is.

If you really can't work out what is going on, you can put "exit 0" near the top of the script to force it to exit cleanly. However in this case, whatever cleanup tasks the script was trying to perform will not be done.

EVo2.
 
1 members found this post helpful.
Old 01-19-2010, 06:16 PM   #7
johnh10000
Member
 
Registered: Nov 2008
Distribution: Ubuntu Lucid Lynx
Posts: 541

Original Poster
Rep: Reputation: 33
Quote:
Originally Posted by evo2 View Post
It seems to be failing because postresql is not installed. It is probably trying to clean up tables that it may have made inside the db, and bailing out when it can't.

If is a shell script, put "set -x" near the top line of the postrm script. Then run "dpkg --purge --force-remove-reinstreq campcaster-station" again.

This will make the script echo every line to the terminal, from that you should be able to work out where the problem is.

If you really can't work out what is going on, you can put "exit 0" near the top of the script to force it to exit cleanly. However in this case, whatever cleanup tasks the script was trying to perform will not be done.

EVo2.
Thanks alot, after putting exit 0 at top all of the camcaster scripts in there, it finally went. ok I got put postgresql-8.4 back on for something else....

You taught me something!! Cheers your thumbs up/thanks is comming after this post.
 
  


Reply



Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is Off
HTML code is Off



Similar Threads
Thread Thread Starter Forum Replies Last Post
cant get rid of 2 packages, packagemanager thinks pkg db is broken / corrupted HowDoIProgramIt Debian 14 09-09-2007 03:15 AM
howto get rid of Double Rpm's mickeyboa Fedora 5 04-06-2005 04:56 PM
howto get rid of files with ~ appended random234 Linux - Software 3 06-16-2004 09:45 AM
getting rid of interactive mode in MDK 10 howto? Lleb_KCir Linux - Software 10 04-21-2004 02:58 PM
Kernel grumbles during boot. Howto get rid of error(s)? JZL240I-U Linux - General 4 06-19-2003 08:22 AM

LinuxQuestions.org > Forums > Linux Forums > Linux - Newbie

All times are GMT -5. The time now is 07:29 AM.

Main Menu
Advertisement
My LQ
Write for LQ
LinuxQuestions.org is looking for people interested in writing Editorials, Articles, Reviews, and more. If you'd like to contribute content, let us know.
Main Menu
Syndicate
RSS1  Latest Threads
RSS1  LQ News
Twitter: @linuxquestions
Open Source Consulting | Domain Registration