RE: [gentoo-user] [LONG] New baselayout: Errors everywhere!!!

2003-07-15 Thread Rex Young


This isn't a cure for your problem.

rant
Over the several years running gentoo, I've seen more things screwed up
by 'emerge baselayout' than I care to remember.  I always (and this is
no exception) let baselayout age a few months before adapting it.
/rant


With that machine, I tend to be somewhat conservative, but I was having
another problem (as yet unresolved) that I was hoping to repair by simply
updating the machine.  When the problem with baselayout (and devfs?) came
up, I tried rolling back both baselayout and devfs with no luck.  ugh.

I've been using the machine this way for two days now and see no trouble
at all, so I'm just going to wait and hope that a repair comes down the
line.

-rex

--
[EMAIL PROTECTED] mailing list



RE: [gentoo-user] [LONG] New baselayout: Errors everywhere!!!

2003-07-14 Thread Rex Young
Hello!
I had just emerged latest stable baselayout-1.8.6.8-r1, did 
etc-update, 
carefully updated all 23 files and rebooted.

And I received a whole bunch of errors. Please, someone help. 
Here they are:

During boot:

* Calculating module dependencies
   modprobe: Can't locate module /dev/ide/hd/cd
   modprobe: Can't locate module /dev/ide/host0/cd
   modprobe: Can't locate module /dev/scsi/host0/cd
   modprobe: Can't locate module /dev/scsi/host0/generic
   modprobe: Can't locate module /dev/input

Not really a help, but I did the same thing with the same result.  They
don't seem
to hinder operation of the box at all, though, so I was going to be patient
and see
if updating baselayout in a day or two fixes things.

-rex

--
[EMAIL PROTECTED] mailing list



Re: [gentoo-user] [LONG] New baselayout: Errors everywhere!!!

2003-07-14 Thread Alan
On Mon, Jul 14, 2003 at 08:59:10PM +0400, Dmitry Suzdalev wrote:
 Hello!
 I had just emerged latest stable baselayout-1.8.6.8-r1, did etc-update, 
 carefully updated all 23 files and rebooted.
 
 And I received a whole bunch of errors. Please, someone help. Here they are:
 
 During boot:
 
 * Calculating module dependencies
   modprobe: Can't locate module /dev/ide/hd/cd
   modprobe: Can't locate module /dev/ide/host0/cd
   modprobe: Can't locate module /dev/scsi/host0/cd
   modprobe: Can't locate module /dev/scsi/host0/generic
   modprobe: Can't locate module /dev/input
 
 [ I have a CD-RW as a primary slave, I have option hdb=ide-scsi passed to 
 kernel at boot. All worked great till now. And I have no idea what is 
 /dev/input...]
 
 SNIP
 
 * Setting system clock to hwclock [LocalTime]
   modprobe: Can't locate module /dev/rtc
   modprobe: Can't locate module /dev/misc/rtc
   modprobe: Can't locate module /dev/rtc
   modprobe: Can't locate module /dev/misc/rtc
 
 SNIP
 INIT: Entering runlevel 3
 * Couldn't get dependency info for consoletrans!
 [repeated 4 times]
 *ERROR: consoletrans doesn't have a start function
 
 *Starting lircd...
   modprobe: Can't locate module /dev/lircd
 END
 
 Suggestions? Fixes? 
 Any help is *very* appresiated.
 
 I'm running vanilla-sources-2.4.20.
 And had no problem until I emerged new baselayout.

Sounds like your modules aren't being loaded on boot properly.  Make
sure that /etc/modules.autoload had the right modules in it (IE: rtc 
and ide-scsi based on the errors above) and if it does, try to load them
manually with modprobe rtc.  If you get errors from that you may need
to rebuild your kernel modules with cd /usr/src/linux ; make modules
modules_install (assuming that /usr/src/linux points to the current
kernel directory).  Either that or /etc/init.d/modules isn't being run
on start for some reason... are all the other services on the box being
started correctly?

alan

-- 
Alan [EMAIL PROTECTED] - http://arcterex.net

There are only 3 real sports: bull-fighting, car racing and mountain 
climbing. All the others are mere games.-- Hemingway

--
[EMAIL PROTECTED] mailing list



Re: [gentoo-user] [LONG] New baselayout: Errors everywhere!!!

2003-07-14 Thread Phil Barnett
On Monday 14 July 2003 1:08 pm, Alan wrote:

 Sounds like your modules aren't being loaded on boot properly.  Make
 sure that /etc/modules.autoload had the right modules in it (IE: rtc
 and ide-scsi based on the errors above) and if it does, try to load them
 manually with modprobe rtc.  If you get errors from that you may need
 to rebuild your kernel modules with cd /usr/src/linux ; make modules
 modules_install (assuming that /usr/src/linux points to the current
 kernel directory).  Either that or /etc/init.d/modules isn't being run
 on start for some reason... are all the other services on the box being
 started correctly?

I did see over the weekend that if I emerge alsa, it wipes out my kernel 
modules and I have to rebuild them with the step mentioned above.

Ugly.

-- 

Democracy is two wolves and a lamb voting on what to have for
lunch. Liberty is a well-armed lamb contesting the vote.


--
[EMAIL PROTECTED] mailing list



Re: [gentoo-user] [LONG] New baselayout: Errors everywhere!!!

2003-07-14 Thread Renat Golubchyk
Hi!

On Monday 14 July 2003 18:59, Dmitry Suzdalev wrote:
 Hello!
 I had just emerged latest stable baselayout-1.8.6.8-r1, did etc-update,
 carefully updated all 23 files and rebooted.

 And I received a whole bunch of errors. Please, someone help. Here they
 are:

snip

 Suggestions? Fixes?
 Any help is *very* appresiated.

I get similar error messages on startup. I believe I've seen a discussion on 
this in the forums. The error was found to be caused by the updated devfsd. I 
think devfsd was patched to send more messages to syslog. I don't know if it 
is caused by it, but the error messages appear to be related.

Check /usr/portage/sys-apps/devfsd/ChangeLog and bug #17319:
http://bugs.gentoo.org/show_bug.cgi?id=17319


Regards,
Renat


--
[EMAIL PROTECTED] mailing list



Re: [gentoo-user] [LONG] New baselayout: Errors everywhere!!!

2003-07-14 Thread Dmitry Suzdalev
Thanks Alan, Rex for your answers...

On Monday 14 July 2003 21:08, Alan wrote:
 Sounds like your modules aren't being loaded on boot properly.  Make
 sure that /etc/modules.autoload had the right modules in it (IE: rtc
 and ide-scsi based on the errors above) and if it does, try to load them
 manually with modprobe rtc.  If you get errors from that you may need
 to rebuild your kernel modules with cd /usr/src/linux ; make modules
 modules_install (assuming that /usr/src/linux points to the current
 kernel directory).  Either that or /etc/init.d/modules isn't being run
 on start for some reason... are all the other services on the box being
 started correctly?

Yes, all other thingies are running nicely :). I mentioned only those which 
reported errors...
I edited /etc/modules.d/i386 and commented out the line:
alias char-major-10-135 rtc 
May be this line caused problems? I haven't compiled in /dev/rtc support in 
kernel, IIRC.
Now I'll go on and reboot and tell you how it will react.

On Monday 14 July 2003 21:08, Rex Young wrote:
 Not really a help, but I did the same thing with the same result.  They
 don't seem
 to hinder operation of the box at all, though, so I was going to be patient
 and see
 if updating baselayout in a day or two fixes things.

We'll hope :). 
I must say that my box works great too. But still, I don' want to see those 
pesky errors on each boot :).
-- 
Sorry for bad English. My $native_language=$perl;


--
[EMAIL PROTECTED] mailing list



Re: [gentoo-user] [LONG] New baselayout: Errors everywhere!!!

2003-07-14 Thread Dmitry Suzdalev
On Monday 14 July 2003 21:26, Renat Golubchyk wrote:
 Check /usr/portage/sys-apps/devfsd/ChangeLog and bug #17319:
 http://bugs.gentoo.org/show_bug.cgi?id=17319

Thanks, I'll give it a look.

Btw, commenting out rtc's alias didn't help -- same errors appear.
-- 
Sorry for bad English. My $native_language=$perl;


--
[EMAIL PROTECTED] mailing list



Re: [gentoo-user] [LONG] New baselayout: Errors everywhere!!!

2003-07-14 Thread Dmitry Suzdalev
On Tuesday 15 July 2003 00:05, Dhruba Bandopadhyay wrote:
 Have you got all ide, scsi and enhanced RTC compiled into kernel?

Not sure about RTC, but all my current settings worked quite well before 
update. IDE  SCSI support is compiled in -- I was able to write cd's w/o 
any problems.


  SNIP
  INIT: Entering runlevel 3
  * Couldn't get dependency info for consoletrans!
  [repeated 4 times]
  *ERROR: consoletrans doesn't have a start function

 The new baselayout has better error checking and dependency checking so
 will be more verbose in cases where previous one would have said
 nothing.  So either report bugs about the init scripts that appear in
 errors or wait for a fix.

Thanks for explanation   suggestion :).


  *Starting lircd...
  modprobe: Can't locate module /dev/lircd

 Once again, at first sight it seems the kernel support is missing.  Did
 you get the classic xargs: environment too large for exec error on boot?

And once again, it worked with old baselayout, I have support for btXXX 
chipset support enabled in kernel and lircd part is built as modules.
And, yes, I have that xargs problem, but I recall seeing discussion about it 
on this list and decided to dig in archives later -- after I get rid of these 
modprobe errors.

And thanks for reply. You've been helpful as always, Dhruba :).

Dmitry.
-- 
Sorry for bad English. My $native_language=$perl;


--
[EMAIL PROTECTED] mailing list



Re: [gentoo-user] [LONG] New baselayout: Errors everywhere!!!

2003-07-14 Thread Collins Richey
On Mon, 14 Jul 2003 10:08:03 -0700
Rex Young [EMAIL PROTECTED] wrote:

 Hello!
 I had just emerged latest stable baselayout-1.8.6.8-r1, did 
 etc-update, 
 carefully updated all 23 files and rebooted.
 
 And I received a whole bunch of errors. Please, someone help. 
 Here they are:
 
 During boot:
 
 * Calculating module dependencies
  modprobe: Can't locate module /dev/ide/hd/cd
  modprobe: Can't locate module /dev/ide/host0/cd
  modprobe: Can't locate module /dev/scsi/host0/cd
  modprobe: Can't locate module /dev/scsi/host0/generic
  modprobe: Can't locate module /dev/input
 
 Not really a help, but I did the same thing with the same result. 
 They don't seem
 to hinder operation of the box at all, though, so I was going to be
 patient and see
 if updating baselayout in a day or two fixes things.
 

This isn't a cure for your problem.

rant
Over the several years running gentoo, I've seen more things screwed up
by 'emerge baselayout' than I care to remember.  I always (and this is
no exception) let baselayout age a few months before adapting it.
/rant


-- 
Collins Richey - Denver Area
if you fill your heart with regrets of yesterday and the 
worries of tomorrow, you have no today to be thankful for.



--
[EMAIL PROTECTED] mailing list