Re: rpm confused

2003-03-17 Thread dbrett
Thanks for everybodies help. Unfortunately I was never able to get rpm to work. What I ended up to do was find all the files and delete them. I then forced rpm to do a new installation. david On Tue, 11 Mar 2003, Achille Miele wrote: On Tuesday 11 March 2003 17:20, dbrett wrote: I am

rpm confused

2003-03-11 Thread dbrett
I am having problem with rpm. I went to uninstall an program with rpm (rpm --erease) The message I get back is program is not installed. I then installed the program with rpm and the message I get back is program is already installed. I then did a force install with rpm (rpm -ivh --force).

RE: rpm confused

2003-03-11 Thread Rigler, Steve
Make sure you aren't appending something like .i386.rpm onto the end of the package name when you do rpm --erase. -Steve -Original Message- From: dbrett [mailto:[EMAIL PROTECTED] Sent: Tuesday, March 11, 2003 10:20 AM To: [EMAIL PROTECTED] Subject: rpm confused I am having problem

Re: rpm confused

2003-03-11 Thread Achille Miele
On Tuesday 11 March 2003 17:20, dbrett wrote: I am having problem with rpm. I went to uninstall an program with rpm (rpm --erease) The message I get back is program is not installed. I then installed the program with rpm and the message I get back is program is already installed. I then

Re: rpm confused

2003-03-11 Thread Jerome Dsilva
Have you given .i386.rpm at the end ? . In this case it will fail as you have mentioned. You need to query the package name and then pass the name of the package to b erased. Ex:- rpm -qa |grep am-u* It would return am-utils-6.0.7-9 Then type rpm -e am-utils-6.0.7-9. Regards Jerome [EMAIL