Ошибка ACPI: AE_NOT_FOUND при установке / запуске любой ОС Linux

Программа «display» ImageMagick будет выполнять эту функцию. Выведите изображение с дисплеев именем файла .png , нажмите правую кнопку, чтобы открыть меню, выберите Image info и прокрутите вниз.

-121--73649-

Я добавил запись в таблицу маршрутизации беспроводного маршрутизатора:

Destination LAN IP Subnet Mask    Gateway      Interface
0.0.0.0            255.255.255.0  x.x.x.x       WAN (Internet)
0.0.0.0            0.0.0.0        x.x.x.1       WAN (Internet)
10.42.0.0          255.255.255.0  192.168.1.2   LAN & Wireless
x.x.x.0            255.255.252.0  x.x.x.x       WAN (Internet)
192.168.1.0        255.255.255.0  192.168.1.1   LAN & Wireless

и, похоже, сделал трюк! это работает сейчас, спасибо garethTheRed

-121--216916-

Позволяет помочь кому-либо с Google foo. Та же ошибка, но другая причина

root@vm-lucid:/tmp/ramfs# debootstrap lucid here http://old-releases.ubuntu.com/ubuntu/
I: Retrieving Release
E: Failed getting release file http://old-releases.ubuntu.com/ubuntu/dists/lucid/Release

Типичный шаг отладки, доказывающий, что сеть/прокси/зеркало в порядке... Итак, что?

wget http://old-releases.ubuntu.com/ubuntu/dists/lucid/Release

Добавление set -x к просто _ получить в /usr/share/debootstrap/functions и регистрация через , если! just_get «$ от» «$ dest2» >/ tmp/debootstrap_hidden_log 2 > & 1; затем продолжить; fi открывает что-то интересное!

+ set -x
+ local from=http://old-releases.ubuntu.com/ubuntu/dists/lucid/Release
...
+ wget -q -O /tmp/ramfs/here/var/lib/apt/lists/partial/debootstrap.invalid_dists_lucid_Release http://old-releases.ubuntu.com/ubuntu/dists/lucid/Release
Can't be verbose and quiet at the same time.
Usage: wget [OPTION]... [URL]...
+ ret=1
...

Почему вы получили это сообщение об ошибке???

РЕШЕНИЕ: Удалите verbose = on из wgetrc, что пользователь забыл там много лет назад...

2
25.02.2018, 19:16
3 ответа

Como mencionó dirkt, podría ser un problema del kernel, pero no debería afectar la instalación del controlador en sí.

Puede intentar instalar los controladores oficiales de nvidia desde controlador de gráficos ppa

sudo add-apt-repository ppa:graphics-drivers/ppa
sudo apt-get update    

y luego instale los controladores:

sudo apt-get install nvidia-387
1
27.01.2020, 21:58

Honestamente, no creo que los errores ACPI Error :AE _NOT _FOUND sean la (principal )causa de su problema, eso es instalar Linux en eso sistema. Tengo un montón de errores muy similares (relacionados con ACPI )pero mi sistema funciona bien...

De todos modos, intente iniciar Linux con acpi=offparámetro del kernel, ¡vamos a intentarlo!

En segundo lugar, ¿tiene instalado el BIOS/firmware más reciente? Dado que ACPI está relacionado con software de bajo nivel -, es importante que tenga la última versión.

En tercer lugar, tener un controlador de gráficos instalado no significa nada que valga la pena. ¿Intentaste iniciar un programa/juego 3D para verificar eso?

1
27.01.2020, 21:58

Respuesta parcial:

La ​​tarjeta Nvidia está correctamente enumerada, pero esto

[    0.319197] pci 0000:01:00.0: can't claim BAR 6 [mem 0xfff80000-0xffffffff pref]: no compatible bridge window
[    0.319215] pci 0000:01:00.0: BAR 6: no space for [mem size 0x00080000 pref]
[    0.319216] pci 0000:01:00.0: BAR 6: failed to assign [mem size 0x00080000 pref]
[    0.319217] pci 0000:00:01.0: PCI bridge to [bus 01]
[    0.319219] pci 0000:00:01.0:   bridge window [io  0xd000-0xdfff]
[    0.319221] pci 0000:00:01.0:   bridge window [mem 0xd1000000-0xd1ffffff]
[    0.319223] pci 0000:00:01.0:   bridge window [mem 0xa0000000-0xb1ffffff 64bit pref]

sugiere que hay algo mal con el puente pci -a -pci que se usa para acceder a la tarjeta gráfica.

Esto de aquí

[    1.028760] ACPI Warning: \_SB.PCI0.GFX0._DSM: Argument #4 type mismatch - Found [Buffer], ACPI requires [Package] (20160930/nsarguments-95)
[    1.028792] ACPI Warning: \_SB.PCI0.PEG0.PEGP._DSM: Argument #4 type mismatch - Found [Buffer], ACPI requires [Package] (20160930/nsarguments-95)
[    1.028867] ACPI Warning: \_SB.PCI0.PEG0.PEGP._DSM: Argument #4 type mismatch - Found [Buffer], ACPI requires [Package] (20160930/nsarguments-95)
[    1.028918] pci 0000:01:00.0: optimus capabilities: enabled, status dynamic power, hda bios codec supported
[    1.028920] VGA switcheroo: detected Optimus DSM method \_SB_.PCI0.PEG0.PEGP handle

de hecho parece que algo sale mal en el ACPI, y GFX0y PEG0son ​​probablemente secciones de tarjetas gráficas. El ACPI incorrecto también puede causar problemas con el puente pci -a -pci.

Es muy probable que el BIOS proporcione información ACPI ligeramente diferente después de la hibernación (por cualquier motivo ), y Linux se atraganta con eso, mientras que Windows no.

Entonces, el próximo paso sería depurar el ACPI, lo cual no es divertido, y no soy experto en eso. Posiblemente podría llevar esto a la gente del kernel que es responsable de la interpretación de ACPI, informar un error y ver si alguien lo encuentra lo suficientemente interesante como para echarle un vistazo.

2
27.01.2020, 21:58

Теги

Похожие вопросы