On Tuesday 04 April 2006 11:15, yuri wrote:
> On 04/04/06, Nick Rout wrote:
> > > > http://forums.gentoo.org/viewtopic-t-379090.html
> > >
> > > According to that link, I should be able to fix it by replacing the
> > > systemlogger "syslog-ng" with "sysklogd".
> > > Now how do I do that?
> > > Can I just unmerge syslog-ng and emerge sysklogd? (If so, what is
> > > the syntax?) Are system logging daemons the sort of thing that can
> > > just be replaced on the fly?
> > >
> > > Yuri de Groot
> >
> > no that was not the fix - did i post the wrong link?
>
> The link you posted had someone complaining about:
> "rm: unable to remove 'sys/.....' : operation not permitted"
> which is exactly the same problem I was referring to.
>
> The same thread also had a reply:
> "It seems, that the systemlogger "syslog-ng" causes the problems. I
> installed "sysklogd" and no errors on boot-up."
>
> Unless there were mixed threads in that discussion.
>
> > looks like a kernel recompile.
I tend to disagree with that idea.

> How hard is that?
Not at all. It's only a matter of selecting the drivers you want. Issue:-

make menuconfig

and then saying:-

make && make modules_install && mount /boot && make install && umount /boot

This will create a Linux Kernel file you boot directly, i.e. none of the 
initrd nonsense which is only there so that all the distributors can 
distribute Linux with _all_ the drivers as loadable modules.

Then make sure the grub.conf file is correct. Use the attached as an 
example. Note that you may have to alter the video definition to suit your 
video card. In particular remove the suggestion that you have a radeon 
frame-buffer.

> Since the problem is cosmetic I'm not going to risk 
> a borked system.
Now-a-days, we have live CDs which work, so it's impossible to have 
a 'borked system' which is totally irreparable.

> I might have to offer a meal and a beer one Saturday to a local guru
> (I think I mentioned this option to Chris the other day).
Indeed you did. Mention a date.

-- 
CS
#
# Sample boot menu configuration file
#

# Splash screen image.
splashimage=(hd0,0)/boot/grub/splash.xpm.gz

# Boot automatically after 30 secs.
timeout 30

# By default, boot the first entry.
default 0

# Fallback to the third ( Single User, No X-11 ) entry.
fallback 2

title Gentoo GNU/Linux [ Current Linux Kernel ]
root (hd0,0)
kernel /vmlinuz ro root=/dev/hda5 video=radeonfb:ywrap,mtrr,[EMAIL PROTECTED] 
resume2=swap:/dev/hda2 lapic

title Gentoo GNU/Linux [ Current Linux Kernel ( no X server ) ]
root (hd0,0)
kernel /vmlinuz ro root=/dev/hda5 video=radeonfb:ywrap,mtrr,[EMAIL PROTECTED] 
resume2=swap:/dev/hda2 nox lapic

title Gentoo GNU/Linux [ Current Linux Kernel ( no X server, single user ) ]
root (hd0,0)
kernel /vmlinuz ro root=/dev/hda5  nox single lapic 
video=radeonfb:ywrap,mtrr,[EMAIL PROTECTED] resume2=swap:/dev/hda2

title Gentoo GNU/Linux [ Linux previous kernel ]
root (hd0,0)
kernel /vmlinuz.old ro root=/dev/hda5 video=radeonfb:ywrap,mtrr,[EMAIL 
PROTECTED] resume2=swap:/dev/hda2 lapic 

title Gentoo GNU/Linux [ Linux previous kernel ( no X server ) ]
root (hd0,0)
kernel /vmlinuz.old ro root=/dev/hda5 video=radeonfb:ywrap,mtrr,[EMAIL 
PROTECTED] resume2=swap:/dev/hda2 nox lapic

title Gentoo GNU/Linux [ Linux previous kernel ( no X server, single user ) ]
root (hd0,0)
kernel /vmlinuz.old ro root=/dev/hda5 video=radeonfb:ywrap,mtrr,[EMAIL 
PROTECTED] resume2=swap:/dev/hda2 nox single lapic

Reply via email to