LinuxQuestions.org
Download your favorite Linux distribution at LQ ISO.
Go Back   LinuxQuestions.org > Forums > Linux Forums > Linux - General
User Name
Password
Linux - General This Linux forum is for general Linux questions and discussion.
If it is Linux Related and doesn't seem to fit in any other forum then this is the place.

Notices


Reply
  Search this Thread
Old 09-12-2002, 10:58 PM   #1
Goatdemon
Member
 
Registered: May 2002
Location: The good 'ol USofA
Distribution: ArchLinux - Slackware 8.1
Posts: 398

Rep: Reputation: 30
some boot errors and problems


1. i'm getting an error when i boot my linux box, it says
PCI: no irq known for interupt pin a of device 00:12.0. Please try using pci=biosirq. can someone give more explanation on this problem; if not can someone atleast tell me how to edit a file and make this command pci=biosirg boot when i load the kernel.

2. i get another error
kmod: failed to exec /sbin/modprobe -s -k paride_protocol, errno = 2 how can i fix this, does it need fixin' ?

3. i'd like to make my onboard audio chip look like an isapnp device. is this possible, can i do it?
 
Old 09-13-2002, 01:33 AM   #2
moses
Senior Member
 
Registered: Sep 2002
Location: Arizona, US, Earth
Distribution: Slackware, (Non-Linux: Solaris 7,8,9; OSX; BeOS)
Posts: 1,152

Rep: Reputation: 50
Well, I've had the "irq" error message in the past and have generally ignored it with no obvious ill effects. It looks like Linux is unable to assign
an IRQ to a PCI device for some reason, and wants you to append a
line that will tell your kernel to use the IRQs assigned by the BIOS. This
isn't necessarily safe to do, especially if you've got some funky, old
hardware that doesn't like to share IRQs.

However, if you really want to fix it, you need to learn a bit about your
boot loader. I'm assuming you use LILO since that's the default for
Slackware, so I'll concentrate my efforts on that.

LILO gives you the ability (as any good boot loader does) to "append"
some information to your kernel boot command line.
Just for fun, do the following:
cat /proc/cmdline

It will print out the exact command used to boot your kernel. Now, to add
an append to your boot command, you can do one of two things.
1) Every time you boot, interrupt LILO at the boot prompt, just before
boot and input the append line, which will be the same as below.
2) Add the append line to your /etc/lilo.conf file and re-install LILO.

1) is educational, but 2) is far more realistic.

To accomplish 2):
edit /etc/lilo.conf with your favorite TEXT editor.

Near the top of the file, there may be a line that says something like:

append="idebus=100"

You want to add your append to that:

append="idebus=100 pci=biosirq"

Otherwise, just add the above line to your lilo.conf, after the
boot=/dev/hda1 (or whatever) line, and after the delay=50 (or whatever)
line.

save your file, and then run:

lilo

If you get any errors, you'll need to figure out what is wrong with your
input. YOU MUST RUN lilo EVERY TIME YOU EDIT /etc/lilo.conf
Do a:
man lilo
which will give you a manual page on how to use lilo. Also, do a:
man lilo.conf
which will give you information on the syntax and setup of /etc/lilo.conf
You should read those before you go mucking about with your lilo.conf file
anyway, since if you screw it up, you can make your system unbootable,
and difficult (though not impossible) to fix.



About your second error:

It looks like you're trying to load a parallel IDE device. If you don't have
one of those, you have no need to load the module. To stop the loading
of said module, edit:
/etc/rc.d/rc.modules
and comment out the line that contains this module.
If it's being automagically loaded, you would need to edit:
/etc/modules.conf
and comment out the correct line.

If you have a parallel IDE device, then you probably need this module. I
don't have any parallel IDE devices, but I'm sure there is some help out
there. Maybe for starters, read:
/usr/src/linux/Documentation/paride.txt
 
Old 09-13-2002, 02:14 AM   #3
Goatdemon
Member
 
Registered: May 2002
Location: The good 'ol USofA
Distribution: ArchLinux - Slackware 8.1
Posts: 398

Original Poster
Rep: Reputation: 30
the modules.conf file is empty and the rc.modules file seems to have everything commented out

Last edited by Goatdemon; 09-15-2002 at 10:20 PM.
 
Old 09-16-2002, 11:05 PM   #4
Goatdemon
Member
 
Registered: May 2002
Location: The good 'ol USofA
Distribution: ArchLinux - Slackware 8.1
Posts: 398

Original Poster
Rep: Reputation: 30
i think that the modules may be loading from the default installation, when i recompiled i probably disabled or broke these modules in some way. how do i stop these modules from running?
 
Old 09-20-2002, 11:21 AM   #5
moses
Senior Member
 
Registered: Sep 2002
Location: Arizona, US, Earth
Distribution: Slackware, (Non-Linux: Solaris 7,8,9; OSX; BeOS)
Posts: 1,152

Rep: Reputation: 50
When you recompiled the kernel, did you do (in this oder):

make (x|menu)config
make dep
make bzImage
make modules
make modules_install

If not, you didn't make the new kernel modules, or you didn't install the new kernel modules. This needs to be done or you will get (at least) failed dependencies.

The /etc/modules.conf file it empty by default, you need to add modules that you would like to be dynamic.
man modules.conf will give you information on how to get it working.


I just noticed that I didn't answer your third question. . .
Onboard audio can be a real pain. First, you need to find out what chipset it's using. Once you know your chipset, point your browser to: http://www.alsa-project.org/
They're doing a pretty good job of getting sound working for a variety of chipsets.
 
  


Reply


Thread Tools Search this Thread
Search this Thread:

Advanced Search

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off



Similar Threads
Thread Thread Starter Forum Replies Last Post
Boot Errors CrEsPo Slackware 5 06-10-2005 04:49 PM
boot problems dma errors rakesh_em Slackware 2 10-05-2004 12:48 PM
What do this boot errors mean? Manu-M *BSD 1 09-02-2004 01:57 PM
boot errors?? wrat Linux - Newbie 1 05-12-2004 02:54 PM
Boot Errors frzburn Slackware 1 05-04-2004 06:31 PM

LinuxQuestions.org > Forums > Linux Forums > Linux - General

All times are GMT -5. The time now is 09:55 AM.

Main Menu
Advertisement
My LQ
Write for LQ
LinuxQuestions.org is looking for people interested in writing Editorials, Articles, Reviews, and more. If you'd like to contribute content, let us know.
Main Menu
Syndicate
RSS1  Latest Threads
RSS1  LQ News
Twitter: @linuxquestions
Open Source Consulting | Domain Registration