Often the most important part of the news is what they didn't tell.
Make visible what, without you, might perhaps never have been seen.
- Robert Bresson
JavaBeginnersFaq
"Yesterday is history, tomorrow is a mystery, and today is a gift; that's why they call it the present." Eleanor Roosevelt
The Sun Certified Java Developer Exam with J2SE 5: paper version from Amazon, PDF from Apress, Online reference: Books 24x7 Personal blog
The Sun Certified Java Developer Exam with J2SE 5: paper version from Amazon, PDF from Apress, Online reference: Books 24x7 Personal blog
Originally posted by Andrew Monkhouse:
Take a look at this FAQ on your error message - does it help?
JavaBeginnersFaq
"Yesterday is history, tomorrow is a mystery, and today is a gift; that's why they call it the present." Eleanor Roosevelt
The Sun Certified Java Developer Exam with J2SE 5: paper version from Amazon, PDF from Apress, Online reference: Books 24x7 Personal blog
The Sun Certified Java Developer Exam with J2SE 5: paper version from Amazon, PDF from Apress, Online reference: Books 24x7 Personal blog
JavaBeginnersFaq
"Yesterday is history, tomorrow is a mystery, and today is a gift; that's why they call it the present." Eleanor Roosevelt
JavaBeginnersFaq
"Yesterday is history, tomorrow is a mystery, and today is a gift; that's why they call it the present." Eleanor Roosevelt
Andrew: Login as root, and enter the command "<code>telinit 3</code>".
Marilyn: As soon as I did this, I got an error message
<code>Starting lpd: /usr/sbin/checkpc: ....</code>
Is there any way I can get the computer to give me a list of the stuff I deleted, you know, like a "trashcan/recycle bin" in Windows? Or is it gone forever?
The Sun Certified Java Developer Exam with J2SE 5: paper version from Amazon, PDF from Apress, Online reference: Books 24x7 Personal blog
JavaBeginnersFaq
"Yesterday is history, tomorrow is a mystery, and today is a gift; that's why they call it the present." Eleanor Roosevelt
Now this is kinda weird. Even though I'm running "Kernel 2.4.20-13.8 on an i686", I get a bunch of missing files beginning with
missing /boot/System.map-2.4.18-14
missing /boot/config-2.4.18-14
(more of the same)
.M...... /dev/shm
missing /lib/modules/2.4.18-14
(many more of the same)
missing /boot/System.map-2.4.18-27.8.0
(5 files ending with 2.4.18-27.8.0)
.M...... /dev/shm
.M...... /dev/shm
Why is it looking for 2.4.18 stuff?
rpm --freshen --replacepkgs /mnt/cdrom/RPMS/aterm*
A more practical question is Where should I freshen/replace the missing kernel files? I would think that /mnt/cdrom/... would be the wrong directory. Maybe something like
rpm --freshen --replacepkgs /lib/modules/2.4.18-26.8.0/*
So if you tried to do a freshen on all rpms on your installation media ...
How would I do that?
The Sun Certified Java Developer Exam with J2SE 5: paper version from Amazon, PDF from Apress, Online reference: Books 24x7 Personal blog
The Sun Certified Java Developer Exam with J2SE 5: paper version from Amazon, PDF from Apress, Online reference: Books 24x7 Personal blog
JavaBeginnersFaq
"Yesterday is history, tomorrow is a mystery, and today is a gift; that's why they call it the present." Eleanor Roosevelt
Printer (it finally sinks in) ... I have no printer connected to this box. That might give me an error, mightn't it.
Do I need to save this script in an executable file in order to use it?
How is freshening all my files different from reinstalling?
rpm -e --justdb kernel-2.4.20
Is there a way to reverse this command and make the files available again? Would
rpm --rebuilddb --justdb kernel-2.4.20
work?
Thank you for being so patient with me.
The Sun Certified Java Developer Exam with J2SE 5: paper version from Amazon, PDF from Apress, Online reference: Books 24x7 Personal blog
JavaBeginnersFaq
"Yesterday is history, tomorrow is a mystery, and today is a gift; that's why they call it the present." Eleanor Roosevelt
Maybe I shouldn't upgrade my kernel each time a new one becomes available?
The Sun Certified Java Developer Exam with J2SE 5: paper version from Amazon, PDF from Apress, Online reference: Books 24x7 Personal blog
JavaBeginnersFaq
"Yesterday is history, tomorrow is a mystery, and today is a gift; that's why they call it the present." Eleanor Roosevelt
However typing
freshen.script or freshenUp2date.script gave me
-bash: freshen.script: command not found.
I don't understand why they don't execute.
But, the good news is that I did manage to run both scripts by typing
. freshen.script and . freshenUp2date.script
I still get an error when ...
Hmmm, I wonder if some packages were not freshened properly. Try finding out what package provides libstdc++.so.5 by typing:
<code><pre> rpm -q --whatprovides libstdc++.so.5 </pre></code>
On my system it repsonds with:
<code><pre> libstdc++-3.2.2-5</pre></code>
I think for RedHat 8.0 it should be libstdc++-3.2-7.
Then verify just that package (substituting your own package name of course):
<code><pre> rpm --verify libstdc++-3.2.2-5</pre></code>
Any errors?
If you still have errors, then it is possible (probable) that when you ran those scripts, they did not find the file to freshen with. (If you don't have errors, stop and let me know - I will have to think some more.
Try getting the full package name:
<code><pre> rpm -q --qf "%{NAME}-%{VERSION}-%{RELEASE}-%{ARCH}.rpm\n" libstdc++-3.2.2-5</pre></code>
On my system that responded with:
<code><pre> libstdc++-3.2.2-5-i386.rpm</pre></code>
I think there were no updates to this package for RedHat 8, so it would not be in your /var/spool/up2date directory - it should be on one of your CDs. Try mounting each CD in turn, and typing <code>ls -l /mnt/cdrom/RedHat/RPMS/libstdc++-3.2-7.i386.rpm</code>
Keep swapping CDs until you find the one that has it.
The size should be 4181584 bytes (if I am right about the version number).
Try freshening it manually: <code>rpm --freshen --replacepkgs /mnt/cdrom/RedHat/RPMS/libstdc++-3.2-7.i386.rpm</code>
And then check again if there are errors: <code>rpm --verify /mnt/cdrom/RedHat/RPMS/libstdc++-3.2-7.i386.rpm</code>
If there are still errors then we may have to try and force the freshen:
<code>rpm --freshen --replacepkgs --force /mnt/cdrom/RedHat/RPMS/libstdc++-3.2-7.i386.rpm</code>
Regards, Andrew
The Sun Certified Java Developer Exam with J2SE 5: paper version from Amazon, PDF from Apress, Online reference: Books 24x7 Personal blog
JavaBeginnersFaq
"Yesterday is history, tomorrow is a mystery, and today is a gift; that's why they call it the present." Eleanor Roosevelt
JavaBeginnersFaq
"Yesterday is history, tomorrow is a mystery, and today is a gift; that's why they call it the present." Eleanor Roosevelt
The Sun Certified Java Developer Exam with J2SE 5: paper version from Amazon, PDF from Apress, Online reference: Books 24x7 Personal blog
JavaBeginnersFaq
"Yesterday is history, tomorrow is a mystery, and today is a gift; that's why they call it the present." Eleanor Roosevelt
JavaBeginnersFaq
"Yesterday is history, tomorrow is a mystery, and today is a gift; that's why they call it the present." Eleanor Roosevelt
What time is it now where you are?
The Sun Certified Java Developer Exam with J2SE 5: paper version from Amazon, PDF from Apress, Online reference: Books 24x7 Personal blog
There is no beard big enough to make me comfortable enough with my masculinity to wear pink. Tiny ad:
Smokeless wood heat with a rocket mass heater
https://woodheat.net
|