Làm cách nào để xóa cảnh báo acpi khi khởi động?


21

Tôi có thông báo này trong dmesgnhật ký với linux 3.11.6-1 (2013-10-27) (phiên bản debian).

Tôi tự hỏi làm thế nào để sửa chữa / loại bỏ nó?

     [    5.098132] ACPI Warning: 0x0000000000000428-0x000000000000042f SystemIO conflicts with Region \PMIO 1 (20130517/utaddress-251)
     [    5.098147] ACPI: If an ACPI driver is available for this device, you should use it instead of the native driver
     [    5.098156] ACPI Warning: 0x0000000000000530-0x000000000000053f SystemIO conflicts with Region \GPIO 1 (20130517/utaddress-251)
     [    5.098167] ACPI: If an ACPI driver is available for this device, you should use it instead of the native driver
     [    5.098171] ACPI Warning: 0x0000000000000500-0x000000000000052f SystemIO conflicts with Region \GPIO 1 (20130517/utaddress-251)
     [    5.098180] ACPI: If an ACPI driver is available for this device, you should use it instead of the native driver
     [    5.098186] lpc_ich: Resource conflict(s) found affecting gpio_ich
     [    5.099072] ACPI Warning: 0x000000000000f040-0x000000000000f05f  SystemIO conflicts with Region \_SB_.PCI0.SBUS.SMBI 1    (20130517/utaddress-251)
     [    5.099085] ACPI: If an ACPI driver is available for this device,     you should use it instead of the native driver

lspci:

$ lspci
00:00.0 Host bridge: Intel Corporation 3rd Gen Core processor DRAM Controller (rev 09)
00:02.0 VGA compatible controller: Intel Corporation 3rd Gen Core processor Graphics Controller (rev 09)
00:14.0 USB controller: Intel Corporation 7 Series/C210 Series Chipset Family USB xHCI Host Controller (rev 04)
00:16.0 Communication controller: Intel Corporation 7 Series/C210 Series Chipset Family MEI Controller #1 (rev 04)
00:19.0 Ethernet controller: Intel Corporation 82579LM Gigabit Network Connection (rev 04)
00:1a.0 USB controller: Intel Corporation 7 Series/C210 Series Chipset Family USB Enhanced Host Controller #2 (rev 04)
00:1b.0 Audio device: Intel Corporation 7 Series/C210 Series Chipset Family High Definition Audio Controller (rev 04)
00:1c.0 PCI bridge: Intel Corporation 7 Series/C210 Series Chipset Family PCI Express Root Port 1 (rev c4)
00:1c.1 PCI bridge: Intel Corporation 7 Series/C210 Series Chipset Family PCI Express Root Port 2 (rev c4)
00:1c.5 PCI bridge: Intel Corporation 7 Series/C210 Series Chipset Family PCI Express Root Port 6 (rev c4)
00:1d.0 USB controller: Intel Corporation 7 Series/C210 Series Chipset Family USB Enhanced Host Controller #1 (rev 04)
00:1f.0 ISA bridge: Intel Corporation QM77 Express Chipset LPC Controller (rev 04)
00:1f.2 SATA controller: Intel Corporation 7 Series Chipset Family 6-port SATA Controller [AHCI mode] (rev 04)
00:1f.3 SMBus: Intel Corporation 7 Series/C210 Series Chipset Family SMBus Controller (rev 04)
02:00.0 Network controller: Intel Corporation Centrino Ultimate-N 6300 (rev 35)
03:00.0 SD Host controller: O2 Micro, Inc. Device 8221 (rev 05)

1
Phần cứng này là gì?
schaiba

Tôi đã cập nhật câu trả lời của tôi với lspci.
ppr

Câu trả lời:


25

Thông báo này nói về một số trình điều khiển bị từ chối truy cập vào các thiết bị do ACPI kiểm soát .

Nhìn chung, kinh nghiệm của tôi là nó có thể được bỏ qua một cách an toàn. Tuy nhiên, nếu bạn thực sự khăng khăng xóa các cảnh báo, tôi khuyên bạn không nên thử khởi động với tùy chọn acpi = off hoặc có thể bạn chỉ thử một lần để xem điều gì sẽ xảy ra. Nhưng tôi e rằng bạn có thể thấy bạn gặp rắc rối với wifi, bluetooth, .... Tuy nhiên, ở đây họ nói rằng điều này chủ yếu là vô hại, vì vậy không có hại trong việc thử.

Một cách có thể để khắc phục nó là khởi động với tùy chọn

 processor.nocst=1

trong đó giới thiệu khả năng tương thích với một số phần mềm ACPI cũ, xem tại đây . Một cách khác là sử dụng tùy chọn

 acpi_enforce_resources=lax

mà rõ ràng cho phép tải trình điều khiển. Điều này có thể hoặc không, can thiệp vào các hoạt động ACPI.

Chỉ vì mục đích hoàn chỉnh (xin lỗi nếu bạn đã biết điều này), để giới thiệu những sửa đổi này, chỉnh sửa / etc / default / grub và thay thế

 GRUB_CMDLINE_LINUX_DEFAULT="quiet splash" 

với

 GRUB_CMDLINE_LINUX_DEFAULT="quiet splash acpi=off" 

hoặc tùy chọn nào bạn quyết định thử. Cập nhật grub, khởi động lại.


1
Tôi đã phải cài đặt bằng chuột vì lỗi này .. 'acpi = off' hoạt động với tôi.
khủng khiếp
Khi sử dụng trang web của chúng tôi, bạn xác nhận rằng bạn đã đọc và hiểu Chính sách cookieChính sách bảo mật của chúng tôi.
Licensed under cc by-sa 3.0 with attribution required.