I can't boot on Ubuntu anymore and I'm not sure why. The only information I have are those messages in the console.
[0.270919] ACPI BIOS Error (bug): Could not resolve symbol [SB.PCIO.GPP7.U POO.DP40.UP00.DP68], AE_NOT_FOUND (20221020/dswload2-162)
[ 0.270935] ACPI Error: AE_NOT_FOUND, During name lookup/catalog (20221020/ps object-220)
[ 0.994566] hub 10-0:1.0: config failed, hub doesn't have any ports! (err -19)
/dev/nvme0n1p6: clean, 217750/19709952 files, 4807020/78812928 blocks
When I choose Ubuntu in GRUB, it displays this and an underscore blinks then stops.
I can launch the OS if I boot via the recoverymode and then choose normal boot. I have tried reinstalling Ubuntu but it changed nothing.
I'm not sure if it's true but I saw somewhere that it might be a graphic driver issue, I have a 7000 series AMD graphic card.
If someone has any advice, i'll gladly take them.
acpi=off
? – sudodus Oct 07 '23 at 20:47sudo apt install linux-image-5.19.0-41-generic
(according to an answer in the linked thread). The following command line shows all available linux images,apt-cache policy linux-image*generic|grep ^linux|sort
or without the unsigned kernels,apt-cache policy linux-image*generic|grep ^linux|grep -v unsigned|sort
– sudodus Oct 08 '23 at 09:10