Re: Kernal Panic

2001-06-01 Thread Dan Hutchinson
It was the SCSI driver was missing.  I was able to compile the kernel
and thanks for everyones help.  I may have a bug to report when compiling
2.4.4 and 2.4.5 kernels from there tar balls.   When I use config or
menuconfig and deselect smp since I only have one processor.  I get the
following error when applying the make dep option.
cpu_data no value
num_cpu_smp no value

and it doesn't compile.
Would someone no which c files I have to modify so that I can tell the
kernel that I only have one Pentium III (700)?

Thanks for your help again
Dan

 "Noah L. Meyerhans" <[EMAIL PROTECTED]> wrote:
[Non text/plain message body suppressed]


___
To get your own FREE ZDNet Onebox - FREE voicemail, email, and fax,
all in one place - sign up today at http://www.zdnetonebox.com



Re: Kernal Panic

2001-06-01 Thread Dan Hutchinson

It was the SCSI driver was missing.  I was able to compile the kernel
and thanks for everyones help.  I may have a bug to report when compiling
2.4.4 and 2.4.5 kernels from there tar balls.   When I use config or
menuconfig and deselect smp since I only have one processor.  I get the
following error when applying the make dep option.
cpu_data no value
num_cpu_smp no value

and it doesn't compile.
Would someone no which c files I have to modify so that I can tell the
kernel that I only have one Pentium III (700)?

Thanks for your help again
Dan

 "Noah L. Meyerhans" <[EMAIL PROTECTED]> wrote:
[Non text/plain message body suppressed]


___
To get your own FREE ZDNet Onebox - FREE voicemail, email, and fax,
all in one place - sign up today at http://www.zdnetonebox.com


--  
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]




RE: Kernal Panic

2001-05-31 Thread Nick Luckcuck
> -Original Message-
> From: Dan Hutchinson [mailto:[EMAIL PROTECTED]
> Sent: 31 May 2001 16:02
> To: [EMAIL PROTECTED]; debian-security@lists.debian.org;
> [EMAIL PROTECTED]
> Subject: Kernal Panic

> file points root=/dev/sda which is the correct hard disk.
are you _sure_ :-)

correct me if I'm wrong.
"root" points to the root (/) *partiton* on that hard disk not the drive
it's self..
for example "root=/dev/sda1" which would actually be a partiton on the hard
drive.

check your /etc/fstab file. and see what it thinks the root partiton is
look for a line like this:

"/dev/sdb5  /   ext2defaults,errors=remount-ro  0   1"

and the "/dev/sdb5" will be your root partiton.
or look in your /etc/lilo.conf and see how the other one works.

> TCP: Hash tables configured(established 16384 bind 16384)
> NET4:  Unix domain sockets 1.0/smp for Linux NET4.0
> ds: no socket drivers loaded
> request-module[block-major-8]: Root fs not mounted.
> VFS:  Cannot open root device "801" or 08:01
> Please append a correct "root=" boot option
> Kernel panic: VFS: Unable to mount root fs on 08:01
don't remember how these ??:?? numbers go.


Nick Luckcuck, [EMAIL PROTECTED]



Re: Kernal Panic

2001-05-31 Thread Noah L. Meyerhans
On Thu, May 31, 2001 at 11:01:07AM -0400, Dan Hutchinson wrote:
> TCP: Hash tables configured(established 16384 bind 16384)
> NET4:  Unix domain sockets 1.0/smp for Linux NET4.0
> ds: no socket drivers loaded
> request-module[block-major-8]: Root fs not mounted.
> VFS:  Cannot open root device "801" or 08:01
> Please append a correct "root=" boot option
> Kernel panic: VFS: Unable to mount root fs on 08:01

You did not compile SCSI drivers into your kernel.  They can't be
modules.  Modules must be read from the disk, but if the drivers needed
to access the disk are modules, then you're stuck.  Rebuild the kernel.

Why did you post this to debian-security?  It's not an appropriate forum
for such questions.

noah

-- 
 ___
| Web: http://web.morgul.net/~frodo/
| PGP Public Key: http://web.morgul.net/~frodo/mail.html 



pgpLUr5CWpoZx.pgp
Description: PGP signature


Re: Kernal Panic

2001-05-31 Thread ray p
You can't bring a 2.2.x config file forward. You will have to configure it by 
hand http://www.markybob.com used to have a pretty sane all purpose config file 
but it appears to not be there any more.

On Thu, May 31, 2001 at 11:01:43AM -0400, Dan Hutchinson wrote:
> Hello Linuxer's,
>   I am having a problem recompiling the 2.4.5 kernel on Debian potato
> install.  I have loaded the latest Debian base box 2.2.19pre from the
> internet and have updated the various support libraries, and programs
> from http://people.debian.org/~bunk/debian.  I have followed the Linux
> kernal-HOWTO and retrieved the linux-2.4.5.tar.bz2, bunzip2 it and 
> uncompressed
> it with tar.  I used make oldconfig to see if I could just update the
> kernel with 2.2 settings and get the same kernel panic below.  the lilo.conf
> file points root=/dev/sda which is the correct hard disk.  I have a 3Com905C
> NIC and ATI Rage video card.  When I reboot the PC,which is a Gateway
> PIII 700, I get the following error.
> 
> .
> ..
> TCP: Hash tables configured(established 16384 bind 16384)
> NET4:  Unix domain sockets 1.0/smp for Linux NET4.0
> ds: no socket drivers loaded
> request-module[block-major-8]: Root fs not mounted.
> VFS:  Cannot open root device "801" or 08:01
> Please append a correct "root=" boot option
> Kernel panic: VFS: Unable to mount root fs on 08:01
> 
> I can reboot back into Debian 2.2 just find.  
> PLEASE HELP
> 
> Thanks in advance
> 
> Dan Hutchinson
> TASC
> 
> PS:  please cc me since I am not on all the lists I am mail too
> 
> ___
> To get your own FREE ZDNet Onebox - FREE voicemail, email, and fax,
> all in one place - sign up today at http://www.zdnetonebox.com
> 
> 
> --  
> To UNSUBSCRIBE, email to [EMAIL PROTECTED]
> with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]
> 
> 

-- 
BOFH excuse #316:

Elves on strike. (Why do they call EMAG Elf Magic)


pgpzOUtcM5Koy.pgp
Description: PGP signature


Re: Kernal Panic

2001-05-31 Thread Bruno Barsella
On Thu, 31 May 2001, Dan Hutchinson wrote:

>   I am having a problem recompiling the 2.4.5 kernel on Debian potato
> install. .

I had no problems compiling this version on debian. I had this kind
of messages only forgetting to put on the ATA100 support when my disks
were on the ATA100 slots . :)
I use now also the LVM support and everything is going really fine!

Bruno
-- 
Bruno Barsella - Department of Physics - University of Pisa - PISA - ITALY
tel#  : +39 050 911-293/224  fax#  : +39 050 48277
e-mail: [EMAIL PROTECTED] or [EMAIL PROTECTED]
web   : http://astrpi.difi.unipi.it



Re: Kernal Panic

2001-05-31 Thread Zak Kipling
On Thu, 31 May 2001, Dan Hutchinson wrote:

> request-module[block-major-8]: Root fs not mounted.
> VFS:  Cannot open root device "801" or 08:01
> Please append a correct "root=" boot option
> Kernel panic: VFS: Unable to mount root fs on 08:01

This is way off-topic on debian-security, but:

This suggests your new kernel is failing to find /dev/sda. Does the boot
sequence mention anywhere that it's detected your SCSI interface (host
adapter)? If not, do a "make menuconfig" and check the SCSI configuration
to make sure support for your SCSI hardware is being compiled into the
kernel (NOT as a module, since modules are not available till after the
root fs is mounted).


HTH,

Zak.



RE: Kernal Panic

2001-05-31 Thread Nick Luckcuck

> -Original Message-
> From: Dan Hutchinson [mailto:[EMAIL PROTECTED]]
> Sent: 31 May 2001 16:02
> To: [EMAIL PROTECTED]; [EMAIL PROTECTED];
> [EMAIL PROTECTED]
> Subject: Kernal Panic

> file points root=/dev/sda which is the correct hard disk.
are you _sure_ :-)

correct me if I'm wrong.
"root" points to the root (/) *partiton* on that hard disk not the drive
it's self..
for example "root=/dev/sda1" which would actually be a partiton on the hard
drive.

check your /etc/fstab file. and see what it thinks the root partiton is
look for a line like this:

"/dev/sdb5  /   ext2defaults,errors=remount-ro  0   1"

and the "/dev/sdb5" will be your root partiton.
or look in your /etc/lilo.conf and see how the other one works.

> TCP: Hash tables configured(established 16384 bind 16384)
> NET4:  Unix domain sockets 1.0/smp for Linux NET4.0
> ds: no socket drivers loaded
> request-module[block-major-8]: Root fs not mounted.
> VFS:  Cannot open root device "801" or 08:01
> Please append a correct "root=" boot option
> Kernel panic: VFS: Unable to mount root fs on 08:01
don't remember how these ??:?? numbers go.


Nick Luckcuck, [EMAIL PROTECTED]


--  
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]




Re: Kernal Panic

2001-05-31 Thread Noah L. Meyerhans

On Thu, May 31, 2001 at 11:01:07AM -0400, Dan Hutchinson wrote:
> TCP: Hash tables configured(established 16384 bind 16384)
> NET4:  Unix domain sockets 1.0/smp for Linux NET4.0
> ds: no socket drivers loaded
> request-module[block-major-8]: Root fs not mounted.
> VFS:  Cannot open root device "801" or 08:01
> Please append a correct "root=" boot option
> Kernel panic: VFS: Unable to mount root fs on 08:01

You did not compile SCSI drivers into your kernel.  They can't be
modules.  Modules must be read from the disk, but if the drivers needed
to access the disk are modules, then you're stuck.  Rebuild the kernel.

Why did you post this to debian-security?  It's not an appropriate forum
for such questions.

noah

-- 
 ___
| Web: http://web.morgul.net/~frodo/
| PGP Public Key: http://web.morgul.net/~frodo/mail.html 


 PGP signature


Re: Kernal Panic

2001-05-31 Thread ray p

You can't bring a 2.2.x config file forward. You will have to configure it by hand 
http://www.markybob.com used to have a pretty sane all purpose config file but it 
appears to not be there any more.

On Thu, May 31, 2001 at 11:01:43AM -0400, Dan Hutchinson wrote:
> Hello Linuxer's,
>   I am having a problem recompiling the 2.4.5 kernel on Debian potato
> install.  I have loaded the latest Debian base box 2.2.19pre from the
> internet and have updated the various support libraries, and programs
> from http://people.debian.org/~bunk/debian.  I have followed the Linux
> kernal-HOWTO and retrieved the linux-2.4.5.tar.bz2, bunzip2 it and uncompressed
> it with tar.  I used make oldconfig to see if I could just update the
> kernel with 2.2 settings and get the same kernel panic below.  the lilo.conf
> file points root=/dev/sda which is the correct hard disk.  I have a 3Com905C
> NIC and ATI Rage video card.  When I reboot the PC,which is a Gateway
> PIII 700, I get the following error.
> 
> .
> ..
> TCP: Hash tables configured(established 16384 bind 16384)
> NET4:  Unix domain sockets 1.0/smp for Linux NET4.0
> ds: no socket drivers loaded
> request-module[block-major-8]: Root fs not mounted.
> VFS:  Cannot open root device "801" or 08:01
> Please append a correct "root=" boot option
> Kernel panic: VFS: Unable to mount root fs on 08:01
> 
> I can reboot back into Debian 2.2 just find.  
> PLEASE HELP
> 
> Thanks in advance
> 
> Dan Hutchinson
> TASC
> 
> PS:  please cc me since I am not on all the lists I am mail too
> 
> ___
> To get your own FREE ZDNet Onebox - FREE voicemail, email, and fax,
> all in one place - sign up today at http://www.zdnetonebox.com
> 
> 
> --  
> To UNSUBSCRIBE, email to [EMAIL PROTECTED]
> with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]
> 
> 

-- 
BOFH excuse #316:

Elves on strike. (Why do they call EMAG Elf Magic)

 PGP signature


Re: Kernal Panic

2001-05-31 Thread Bruno Barsella

On Thu, 31 May 2001, Dan Hutchinson wrote:

>   I am having a problem recompiling the 2.4.5 kernel on Debian potato
> install. .

I had no problems compiling this version on debian. I had this kind
of messages only forgetting to put on the ATA100 support when my disks
were on the ATA100 slots . :)
I use now also the LVM support and everything is going really fine!

Bruno
-- 
Bruno Barsella - Department of Physics - University of Pisa - PISA - ITALY
tel#  : +39 050 911-293/224  fax#  : +39 050 48277
e-mail: [EMAIL PROTECTED] or [EMAIL PROTECTED]
web   : http://astrpi.difi.unipi.it


--  
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]




Re: Kernal Panic

2001-05-31 Thread Zak Kipling

On Thu, 31 May 2001, Dan Hutchinson wrote:

> request-module[block-major-8]: Root fs not mounted.
> VFS:  Cannot open root device "801" or 08:01
> Please append a correct "root=" boot option
> Kernel panic: VFS: Unable to mount root fs on 08:01

This is way off-topic on debian-security, but:

This suggests your new kernel is failing to find /dev/sda. Does the boot
sequence mention anywhere that it's detected your SCSI interface (host
adapter)? If not, do a "make menuconfig" and check the SCSI configuration
to make sure support for your SCSI hardware is being compiled into the
kernel (NOT as a module, since modules are not available till after the
root fs is mounted).


HTH,

Zak.


--  
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]