即使升级成功,也会出现问题

即使升级成功,也会出现问题

关于此错误有很多问题,但几乎所有问题都与 dist-upgrades 中断有关。相反,我已经从 20.04 升级到 21.10,没有任何问题(至少没有显示错误的弹出窗口)。

该机器没有头,并配置了一个虚拟显示器,可以通过远程桌面应用程序访问:

Section "Device"
    Identifier  "Configured Video Device"
    Driver      "dummy"
EndSection
Section "Monitor"
    Identifier  "Configured Monitor"
    HorizSync 31.5-48.5
    VertRefresh 50-70
EndSection
Section "Screen"
    Identifier  "Default Screen"
    Monitor     "Configured Monitor"
    Device      "Configured Video Device"
    DefaultDepth 24
    SubSection "Display"
    Depth 24
    Modes "1920x1080"
    EndSubSection
EndSection

我与该设备有一种 SSH 连接,但是当我尝试启用远程桌面时,却出现“出现问题”屏幕。

我尝试了其他线程中提供的几乎所有解决方案,例如:

$ sudo apt-get upgrade && sudo apt-get update
$ sudo apt-get update && sudo apt-get dist-upgrade 
$ sudo apt-get upgrade
$ sudo apt full-upgrade
$ sudo apt --fix-broken install
$ sudo dpkg --configure -a
$ sudo apt-get remove gnome-session gdm3 gnome gnome-shell
$ sudo apt-get autoremove
$ sudo reboot

但他们都没有解决问题。

我检查了dmesg输出,但只发现了这个错误:

[   20.487647] gnome-shell[1144]: segfault at cc0800b8 ip 00007fea14214015 sp 00007ffe766e7cb0 error 4 in libxkbcommon-x11.so.0.0.0[7fea14213000+4000]

正如我在某处读到的,它应该在那里,因为我禁用了 Wayland。

关于我可以检查什么,有什么提示吗?

相关内容