Errore di caricamento moduli ACPI: Difference between revisions

From RVM Wiki
Jump to navigation Jump to search
No edit summary
 
mNo edit summary
Line 1: Line 1:
[[Category: ACPI]
[Category: ACPI]
[[Category: Debian]
[Category: Debian]


Preso dall'ultimo post del thread http://ubuntuforums.org/archive/index.php/t-2432.html
Preso dall'ultimo post del thread http://ubuntuforums.org/archive/index.php/t-2432.html
Line 9: Line 9:
When you reboot after a successfull install you will notice the following five lines:
When you reboot after a successfull install you will notice the following five lines:


<pre>
modprobe: FATAL: Error inserting pciehp (/lib/modules/2.6.8.1-4-686/kernel/drivers/hotplug/pciehp.ko) Operation not permitted
modprobe: FATAL: Error inserting pciehp (/lib/modules/2.6.8.1-4-686/kernel/drivers/hotplug/pciehp.ko) Operation not permitted
modprobe: FATAL: Error inserting shpchp (/lib/modules/2.6.8.1-4-686/kernel/drivers/hotplug/shpchp.ko) Operation not permitted
modprobe: FATAL: Error inserting shpchp (/lib/modules/2.6.8.1-4-686/kernel/drivers/hotplug/shpchp.ko) Operation not permitted
Line 14: Line 15:
modprobe: FATAL: Error inserting shpchp (/lib/modules/2.6.8.1-4-686/kernel/drivers/hotplug/shpchp.ko) Operation not permitted
modprobe: FATAL: Error inserting shpchp (/lib/modules/2.6.8.1-4-686/kernel/drivers/hotplug/shpchp.ko) Operation not permitted
modprobe: FATAL: Error inserting hw_random (/lib/modules/2.6.8.1-4-686/kernel/drivers/char/hw_random.ko) No such device
modprobe: FATAL: Error inserting hw_random (/lib/modules/2.6.8.1-4-686/kernel/drivers/char/hw_random.ko) No such device
</pre>


Fear not! There is nothing fatal about this at all. To stop hotplug trying to load drivers it has no business trying to load (on this system, anyway) add the following three lines to the bottom of /etc/hotplug/blacklist
Fear not! There is nothing fatal about this at all.  


# Not loading on boot. Removed from sight :)
To stop hotplug trying to load drivers it has no business trying to load (on this system, anyway) add the following three lines to the bottom of ''/etc/hotplug/blacklist'' :
pciehp
shpchp
hw_random


<pre>
<pre>
Line 30: Line 29:
</pre>
</pre>


Next time you boot you'll notice those annoying messages are now gone. I'd rather know why they won't load but haven't had time to work that out yet so removing them from sight will do for now.
Next time you boot you'll notice those annoying messages are now gone.
 
I'd rather know why they won't load but haven't had time to work that out yet so removing them from sight will do for now.

Revision as of 15:19, 26 August 2005

[Category: ACPI] [Category: Debian]

Preso dall'ultimo post del thread http://ubuntuforums.org/archive/index.php/t-2432.html


Hotplug Errors on Boot after Installation

When you reboot after a successfull install you will notice the following five lines:

modprobe: FATAL: Error inserting pciehp (/lib/modules/2.6.8.1-4-686/kernel/drivers/hotplug/pciehp.ko) Operation not permitted
modprobe: FATAL: Error inserting shpchp (/lib/modules/2.6.8.1-4-686/kernel/drivers/hotplug/shpchp.ko) Operation not permitted
modprobe: FATAL: Error inserting pciehp (/lib/modules/2.6.8.1-4-686/kernel/drivers/hotplug/pciehp.ko) Operation not permitted
modprobe: FATAL: Error inserting shpchp (/lib/modules/2.6.8.1-4-686/kernel/drivers/hotplug/shpchp.ko) Operation not permitted
modprobe: FATAL: Error inserting hw_random (/lib/modules/2.6.8.1-4-686/kernel/drivers/char/hw_random.ko) No such device

Fear not! There is nothing fatal about this at all.

To stop hotplug trying to load drivers it has no business trying to load (on this system, anyway) add the following three lines to the bottom of /etc/hotplug/blacklist :

cat >> /etc/hotplug/blacklist <<EOFile
pciehp
shpchp
hw_random
EOFile

Next time you boot you'll notice those annoying messages are now gone.

I'd rather know why they won't load but haven't had time to work that out yet so removing them from sight will do for now.