Errore di caricamento moduli ACPI: Difference between revisions
Jump to navigation
Jump to search
mNo edit summary |
|||
| (One intermediate revision by the same user not shown) | |||
| Line 1: | Line 1: | ||
[Category: ACPI] | [[Category: ACPI]] | ||
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 22: | Line 21: | ||
<pre> | <pre> | ||
cat | cat | sudo tee -a /etc/hotplug/blacklist > /dev/null <<EOFile | ||
pciehp | pciehp | ||
shpchp | shpchp | ||
Latest revision as of 09:30, 26 March 2007
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 | sudo tee -a /etc/hotplug/blacklist > /dev/null <<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.