Errore di caricamento moduli ACPI

From RVM Wiki
Revision as of 15:17, 26 August 2005 by Gabriele.vivinetto (talk | contribs)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search

[[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

  1. Not loading on boot. Removed from sight :)

pciehp shpchp hw_random

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.