使用centos引導內核錯誤:kernel: pnp 00:0b: can't evaluate _CRS: 8

環境:系統Centos6.6   硬件環境 SAMSUNG RV420

1、錯誤信息記錄位置查看find /var/log -type f|xargs grep "00:0b"    

關鍵字也可以選擇CRS

[root@door toor]# find /var/log -type f|xargs grep "00:0b"  (使用最高權限查看,權限低 會拒絕find指令的查看)

/var/log/messages:Jul 26 11:35:17 door kernel: pnp 00:0b: can't evaluate _CRS: 8
/var/log/dmesg:pnp 00:0b: can't evaluate _CRS: 8

/var/log/dmesg:pnp 00:0b: Plug and Play ACPI device, IDs PNP0c01 (active)


2、查看錯誤詳細信息:sudo gedit /var/log/messages    (編輯器隨便吧)


Ctrl+F 定位到“CRS“

這段信息是有用的:

Jul 26 11:35:17 door kernel: pnp: PnP ACPI init  (PnP:即插即用,ACPI:高級電源管理接口)  ---初始化
Jul 26 11:35:17 door kernel: ACPI: bus type pnp registered
Jul 26 11:35:17 door kernel: ACPI Warning for \_SB_.MEM2._CRS: Return type mismatch - found Integer, expected Buffer (20090903/nspredef-1018)
Jul 26 11:35:17 door kernel: ACPI Error (uteval-0310): Return object type is incorrect [\_SB_.MEM2._CRS] (Node f705e620), AE_TYPE
Jul 26 11:35:17 door kernel: ACPI Error: Type returned from _CRS was incorrect: Integer, expected Btypes: 0x4 (20090903/uteval-316)
Jul 26 11:35:17 door kernel: pnp 00:0b: can't evaluate _CRS: 8
Jul 26 11:35:17 door kernel: pnp: PnP ACPI: found 12 devices  --發現了12個設置
Jul 26 11:35:17 door kernel: ACPI: ACPI bus type pnp unregistered  --註冊失敗了一個


開始使用acpi=off 加到內核參數上,開機錯誤任在,鼠標移動不流暢了!!這裏應該是還註冊了其他設備的原因。


參考內核參數這:http://www.jinbuguo.com/kernel/boot_parameters.html

發現這個地方找到這個參數:

pnpacpi=off
禁用ACPI的即插即用功能,轉而使用古董的PNPBIOS來代替。
然後第三步

3、 sudo gedit  /boot/grub/grub.conf


title CentOS 6 (2.6.32-504.el6.i686)
    root (hd0,3)
    kernel /vmlinuz-2.6.32-504.el6.i686 ro root=UUID=33b23ad2-f922-4329-8f8f-f3a145147587 rd_NO_LUKS rd_NO_LVM LANG=en_US.UTF-8 rd_NO_MD SYSFONT=latarcyrheb-sun16 crashkernel=auto  KEYBOARDTYPE=pc KEYTABLE=us rd_NO_DM  pnpacpi=off
    initrd /initramfs-2.6.32-504.el6.i686.img
title Other System
    rootnoverify (hd0,0)
    chainloader +1


把日誌 都刪除root shell: find /var/log -type f -exec rm -v  {} \;            (分號要有的)

保存,重啓, 再試一次   find /var/log -type f|xargs grep "00:0b"   這時候啥也沒了!!!到此錯誤解決。


發表評論
所有評論
還沒有人評論,想成為第一個評論的人麼? 請在上方評論欄輸入並且點擊發布.
相關文章