我刚刚将我的桌面从 Ubuntu 21.04 升级到 21.10。一切正常!我很高兴。
但此后,我运行了一个错误的程序,它会将图形登录屏幕的背景更改为另一张图片。
最有可能是我运行的脚本:我在 21.04 期间下载了以下程序并安装并运行它。
github.com/thiggy01/gdm-background
gdm-background/gdm-background-helper /
#!/usr/bin/env python3
import distro
import dbus
import dbus.service
from dbus.mainloop.glib import DBusGMainLoop
from gi.repository import GLib
import shutil
from subprocess import call
class GDMBackground(dbus.service.Object):
if distro.id() == 'ubuntu':
default_theme = '/usr/share/gnome-shell/theme/Yaru/gnome-shell-theme.gresource'
elif distro.id() == 'pop':
default_theme = '/usr/share/gnome-shell/theme/Pop/gnome-shell-theme.gresource'
backup_theme = default_theme + '~'
def __init__(self, conn=None, object_path=None, bus_name=None):
dbus.service.Object.__init__(self, conn, object_path, bus_name)
@dbus.service.method('xyz.thiggy01.GDMBackground', in_signature='s', out_signature='b',
sender_keyword='sender', connection_keyword='conn')
def SetImage(self, task, sender=None, conn=None):
action_id = 'xyz.thiggy01.GDMBackground.SetImage'
if self._check_polkit_privilege(sender, conn, action_id):
if task == 'backup':
shutil.copy(self.default_theme, self.backup_theme)
elif task == 'set':
shutil.move("/tmp/gdm3/theme/gnome-shell-theme.gresource", self.default_theme)
return True
else:
return False
@dbus.service.method('xyz.thiggy01.GDMBackground', in_signature='s', out_signature='b',
sender_keyword='sender', connection_keyword='conn')
def RestoreBackup(self, task, sender=None, conn=None):
action_id = 'xyz.thiggy01.GDMBackground.RestoreBackup'
if self._check_polkit_privilege(sender, conn, action_id):
if task == 'restore':
shutil.move(self.backup_theme, self.default_theme)
return True
else:
return False
@dbus.service.method('xyz.thiggy01.GDMBackground', in_signature='s', out_signature='',
sender_keyword='sender', connection_keyword='conn')
def RestartGDM(self, action_id, sender=None, conn=None):
if self._check_polkit_privilege(sender, conn, action_id):
call(['/usr/sbin/service', 'gdm', 'restart'])
def _check_polkit_privilege(self, sender, conn, action_id):
if sender is None and conn is None:
return
self.proxy_dbus = dbus.Interface(conn.get_object('org.freedesktop.DBus',
'/org/freedesktop/DBus/Bus', False), 'org.freedesktop.DBus')
sender_pid = self.proxy_dbus.GetConnectionUnixProcessID(sender)
self.proxy_polkit = dbus.Interface(dbus.SystemBus().get_object(
'org.freedesktop.PolicyKit1', '/org/freedesktop/PolicyKit1/Authority', False),
'org.freedesktop.PolicyKit1.Authority')
try:
(is_auth, is_challenge, details) = self.proxy_polkit.CheckAuthorization(
('unix-process', {'pid': dbus.UInt32(sender_pid, variant_level=1),
'start-time': dbus.UInt64(0, variant_level=1)}),
action_id, {'':''}, dbus.UInt32(1), 'cancel')
if is_auth:
return True
else:
return False
except dbus.DBusException as error:
self.proxy_polkit.CancelCheckAuthorization('cancel')
raise
if __name__ == '__main__':
DBusGMainLoop(set_as_default=True)
bus = dbus.SystemBus()
name = dbus.service.BusName('xyz.thiggy01.GDMBackground', bus)
gdm_background_helper = GDMBackground(name, '/xyz/thiggy01/GDMBackground')
GLib.MainLoop().run()
此后,Ubuntu 21.10 无法再加载图形登录屏幕。
屏幕上出现错误:显示器出现 SAD 表情,并显示“哦不!出现问题。”出现问题,系统无法恢复。请联系系统管理员。
我尝试通过使用恢复模式运行 Ubuntu 21.10 来解决问题。然后转到根目录并使用以下命令:
sudo apt install ubuntu-gnome-desktop
systemctl status gdm
systemctl start gdm
它根本不起作用。
我怀疑我运行的程序/脚本与 GNOME 40 和 Ubuntu 21.04 的设置有冲突。请帮我恢复原始的 GUI 登录屏幕设置。
我尝试使用 CTRL-SHIFT-F3 登录 Ubuntu 21.04。然后我输入:
systemctl status gdm3
gdm.service is active (running)
Starting GNOME Display Manager.....
但是有一个错误信息:
Gdm: GdmDisplay: Session never registered, failing
Gdm: Child process -2037 was already dead.
答案1
我遇到了同样的问题。首先,您需要进入恢复根控制台。在启动过程中按左移或退出键即可。https://wiki.ubuntu.com/RecoveryMode
什么可能足够
我安装了 lightdm,但不确定是否需要安装 lightdm 并切换回 gdm3。这可能有效:
sudo apt reinstall gdm3 gnome-shell yaru-theme-gnome-shell
sudo service gdm3 restart
我做了什么
首先,我运行了恢复选项来恢复原始文件。没有效果。我使用了带有 --restore 标志的另一个脚本,而不是您发布的 Python 代码。看起来它们都只是这样做:
mv /usr/share/gnome-shell/theme/Yaru/gnome-shell-theme.gresource~ \
/usr/share/gnome-shell/theme/Yaru/gnome-shell-theme.gresource
然后我安装了 lightdm。
# Should install then show UI to switch from gdm3 to lightdm
sudo apt install lightdm
重新启动后一切正常,但当我重新登录 Gnome 时,UI 出现故障。例如:按下 Super 键会弹出应用程序搜索框,但图标重叠并闪烁,就像帧缓冲区问题一样。此外,lightdm 在左下角显示 Ubuntu 版本 21.04。我认为 lightdm + gnome 尚未在 21.10 中得到适当支持。
最后,我重新安装了 gdm3、gnome-shell 和 yaru 主题,并从 lightdm 切换回 gdm。
sudo apt reinstall gdm3 gnome-shell yaru-theme-gnome-shell
# Switch back to gdm3
sudo dpkg-reconfigure gdm3
重新启动后,一切恢复正常,gdm3 的默认背景图像仍旧相同。更改背景图像需要破解,这太麻烦了,但我们做到了。