Errore di caricamento moduli ACPI: Difference between revisions

From RVM Wiki
Jump to navigation Jump to search
No edit summary
 
 
(2 intermediate revisions by the same user not shown)
Line 1: Line 1:
[[Category: ACPI]
[[Category: ACPI]]
[[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 8:
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 14:
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>
cat >> /etc/hotplug/blacklist <<EOFile
cat | sudo tee -a /etc/hotplug/blacklist > /dev/null <<EOFile
pciehp
pciehp
shpchp
shpchp
Line 30: Line 28:
</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.

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.