부팅시 acpi Warning을 어떻게 제거합니까?


21

이 메시지는 dmesglinux 3.11.6-1 (2013-10-27) (debian version)과 함께 로그에 있습니다.

고치거나 제거하는 방법이 궁금합니다.

     [    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
이것은 어떤 하드웨어입니까?
schaiba

lspci로 답변을 업데이트했습니다.
ppr

답변:


25

이 메시지는 일부 드라이버가 ACPI에 의해 제어되는 장치에 대한 액세스가 거부 되었음을 나타 냅니다.

전반적으로 내 경험은 안전하게 무시할 수 있다는 것입니다. 그러나 실제로 경고를 제거해야한다고 주장하는 경우 acpi = off 옵션을 사용하여 부팅을 시도하지 말거나 한 번만 시도하여 어떤 일이 발생하는지 확인하십시오. 그러나 나는 당신이 wifi, bluetooth, ...에 문제가 있음을 알게 될 것을 두려워합니다. 그러나 여기에서 그들은 이것이 대부분 무해하다고 말하면서 시도에 아무런 해가 없습니다.

이를 해결하는 한 가지 방법은 옵션으로 부팅하는 것입니다

 processor.nocst=1

이전 ACPI 소프트웨어와의 호환성을 소개하는 여기를 참조 하십시오 . 대안은 옵션을 사용하는 것입니다

 acpi_enforce_resources=lax

분명히 드라이버를로드 할 수 있습니다. 이로 인해 ACPI 작업이 방해 될 수 있습니다.

완전성을 위해 (이미 알고 있다면 사과), 수정 사항을 소개하려면 / etc / default / grub을 편집하고 바꾸십시오.

 GRUB_CMDLINE_LINUX_DEFAULT="quiet splash" 

 GRUB_CMDLINE_LINUX_DEFAULT="quiet splash acpi=off" 

또는 당신이 시도하기로 결정한 옵션. grub을 업데이트하고 재부팅하십시오.


1
이 버그 때문에 마우스로 설치해야했습니다. 'acpi = off'가 저에게 효과적이었습니다.
terary
당사 사이트를 사용함과 동시에 당사의 쿠키 정책개인정보 보호정책을 읽고 이해하였음을 인정하는 것으로 간주합니다.
Licensed under cc by-sa 3.0 with attribution required.