Rats... found some hardware monitoring from the vendor and it's broken, or I'm missing some pieces. No mention of CentOS specifically, but RH is supported, so figured it *ought* to work. I'm apparently missing a library -- liblinc.so.1, and a net search reveals several sources, both for x86 and 64-bit. Tried them both, after the x86 did not work, and the 64-bit I thought was going to work, but it crashes the application under gnome, and under text. Yes, I did the bad thing (tm) and installed an rpm not from yum, and now, I can't seem to make rpm remove it. Says it's not installed, but it is. Rebuilt the database and still says it's already installed when I tried to reinstall it, but says it's NOT installed when I try to remove it ...hmmmph. I know where the rm -f keys are :-)
Question to the gang. Anybody have this software working on a supermicro board, and if so, what did you do to get it going?
Thanks...
On Thu, 2006-06-08 at 22:56 -0400, Sam Drinkard wrote:
Rats... found some hardware monitoring from the vendor and it's broken, or I'm missing some pieces. No mention of CentOS specifically, but RH is supported, so figured it *ought* to work. I'm apparently missing a library -- liblinc.so.1, and a net search reveals several sources, both for x86 and 64-bit. Tried them both, after the x86 did not work, and the 64-bit I thought was going to work, but it crashes the application under gnome, and under text. Yes, I did the bad thing (tm) and installed an rpm not from yum, and now, I can't seem to make rpm remove it. Says it's not installed, but it is. Rebuilt the database and still says it's already installed when I tried to reinstall it, but says it's NOT installed when I try to remove it ...hmmmph. I know where the rm -f keys are :-)
Question to the gang. Anybody have this software working on a supermicro board, and if so, what did you do to get it going?
Thanks...
If you can get a filelist for the package and remove the files, then you can remove the entry in the database with:
rpm -e --justdb
Looks like that package is in CentOS-3.x (linc) so I would try building it from the SRPM on CentOS-4 and see if that works for you. That file is no longer in CentOS-4 or FC>3.
Johnny Hughes wrote:
On Thu, 2006-06-08 at 22:56 -0400, Sam Drinkard wrote:
Rats... found some hardware monitoring from the vendor and it's broken, or I'm missing some pieces. No mention of CentOS specifically, but RH is supported, so figured it *ought* to work. I'm apparently missing a library -- liblinc.so.1, and a net search reveals several sources, both for x86 and 64-bit. Tried them both, after the x86 did not work, and the 64-bit I thought was going to work, but it crashes the application under gnome, and under text. Yes, I did the bad thing (tm) and installed an rpm not from yum, and now, I can't seem to make rpm remove it. Says it's not installed, but it is. Rebuilt the database and still says it's already installed when I tried to reinstall it, but says it's NOT installed when I try to remove it ...hmmmph. I know where the rm -f keys are :-)
Question to the gang. Anybody have this software working on a supermicro board, and if so, what did you do to get it going?
Thanks...
If you can get a filelist for the package and remove the files, then you can remove the entry in the database with:
rpm -e --justdb
Looks like that package is in CentOS-3.x (linc) so I would try building it from the SRPM on CentOS-4 and see if that works for you. That file is no longer in CentOS-4 or FC>3.
Thanks for the heads up Johnny. I'll see if I can build it.
Sam Drinkard wrote: [snip]
I can't seem to make rpm remove it. Says it's not installed, but it is. Rebuilt the database and still says it's already installed when I tried to reinstall it, but says it's NOT installed when I try to remove it ...hmmmph. I know where the rm -f keys are :-)
I would guess a syntax error. What is the command line you are trying to remove it with?
William Hooper wrote:
Sam Drinkard wrote: [snip]
I can't seem to make rpm remove it. Says it's not installed, but it is. Rebuilt the database and still says it's already installed when I tried to reinstall it, but says it's NOT installed when I try to remove it ...hmmmph. I know where the rm -f keys are :-)
I would guess a syntax error. What is the command line you are trying to remove it with?
Nope.. not a syntax error. rpm -e linc-1.0.3-3.1.x86_64.rpm which is the rpm name.
On Fri, 2006-06-09 at 08:37 -0400, Sam Drinkard wrote:
William Hooper wrote:
Sam Drinkard wrote: [snip]
I can't seem to make rpm remove it. Says it's not installed, but it is. Rebuilt the database and still says it's already installed when I tried to reinstall it, but says it's NOT installed when I try to remove it ...hmmmph. I know where the rm -f keys are :-)
I would guess a syntax error. What is the command line you are trying to remove it with?
Nope.. not a syntax error. rpm -e linc-1.0.3-3.1.x86_64.rpm which is the rpm name.
Sam,
Drop the .rpm and maybe .x86_64 too.
Bob...
Sam Drinkard wrote:
William Hooper wrote:
Sam Drinkard wrote: [snip]
I can't seem to make rpm remove it. Says it's not installed, but it is. Rebuilt the database and still says it's already installed when I tried to reinstall it, but says it's NOT installed when I try to remove it ...hmmmph. I know where the rm -f keys are :-)
I would guess a syntax error. What is the command line you are trying to remove it with?
Nope.. not a syntax error. rpm -e linc-1.0.3-3.1.x86_64.rpm which is the rpm name.
Yes, it is a syntax error. For the "-e" arguement rpm takes the package name, not the file name. The command should be:
rpm -e linc
or, if you have multiple versions (usually only for kernels)
rpm -e linc-1.0.3-3.1
On Fri, 2006-06-09 at 08:46 -0400, William Hooper wrote:
Sam Drinkard wrote:
William Hooper wrote:
Sam Drinkard wrote: [snip]
<snip>
Nope.. not a syntax error. rpm -e linc-1.0.3-3.1.x86_64.rpm which is the rpm name.
Yes, it is a syntax error. For the "-e" arguement rpm takes the package name, not the file name. The command should be:
rpm -e linc
or, if you have multiple versions (usually only for kernels)
rpm -e linc-1.0.3-3.1
He-he, feeling frisky thas A.M., so ...
Not a syntax error, a semantic error!~ =:-O
William Hooper wrote:
Sam Drinkard wrote:
William Hooper wrote:
Sam Drinkard wrote: [snip]
I can't seem to make rpm remove it. Says it's not installed, but it is. Rebuilt the database and still says it's already installed when I tried to reinstall it, but says it's NOT installed when I try to remove it ...hmmmph. I know where the rm -f keys are :-)
I would guess a syntax error. What is the command line you are trying to remove it with?
Nope.. not a syntax error. rpm -e linc-1.0.3-3.1.x86_64.rpm which is the rpm name.
Yes, it is a syntax error. For the "-e" arguement rpm takes the package name, not the file name. The command should be:
rpm -e linc
or, if you have multiple versions (usually only for kernels)
rpm -e linc-1.0.3-3.1
Yep.. you were right. I've just finished coffee.. definately a brain bust this morning :-)
Thanks guys.....
Sam Drinkard spake the following on 6/9/2006 5:37 AM:
William Hooper wrote:
Sam Drinkard wrote: [snip]
I can't seem to make rpm remove it. Says it's not installed, but it is. Rebuilt the database and still says it's already installed when I tried to reinstall it, but says it's NOT installed when I try to remove it ...hmmmph. I know where the rm -f keys are :-)
I would guess a syntax error. What is the command line you are trying to remove it with?
Nope.. not a syntax error. rpm -e linc-1.0.3-3.1.x86_64.rpm which is the rpm name.
Look at rpm -qa |grep linc for the package name in the database. The filename isn't usually the name in the database.