Package: gnome-shell Version: 3.30.2-11~deb10u1 Severity: important Dear Maintainer,
When pressing super to spawn a new application (I think), gnome-shell crashed, leaving my computer unusable and killing all running applications. The crash was caused by a segfault in libmutter. I tracked down the specific instruction where it happened: 00000000000905d0 <meta_compositor_switch_workspace@@Base>: 905d0: 41 55 push %r13 905d2: 49 89 f5 mov %rsi,%r13 905d5: 41 54 push %r12 905d7: 41 89 cc mov %ecx,%r12d 905da: 55 push %rbp 905db: 53 push %rbx 905dc: 48 89 fb mov %rdi,%rbx 905df: 48 89 d7 mov %rdx,%rdi 905e2: 48 83 ec 08 sub $0x8,%rsp 905e6: e8 b5 0f fd ff callq 615a0 <meta_workspace_index@plt> 905eb: 4c 89 ef mov %r13,%rdi 905ee: 89 c5 mov %eax,%ebp 905f0: e8 ab 0f fd ff callq 615a0 <meta_workspace_index@plt> 905f5: 83 83 88 00 00 00 01 addl $0x1,0x88(%rbx) # segfault here 905fc: 48 8b bb 90 00 00 00 mov 0x90(%rbx),%rdi 90603: 89 ea mov %ebp,%edx 90605: 44 89 e1 mov %r12d,%ecx 90608: 89 c6 mov %eax,%esi 9060a: e8 01 3d fd ff callq 64310 <meta_plugin_manager_switch_workspace@plt> 9060f: 85 c0 test %eax,%eax 90611: 74 0d je 90620 <meta_compositor_switch_workspace@@Base+0x50> 90613: 48 83 c4 08 add $0x8,%rsp 90617: 5b pop %rbx 90618: 5d pop %rbp 90619: 41 5c pop %r12 9061b: 41 5d pop %r13 9061d: c3 retq 9061e: 66 90 xchg %ax,%ax 90620: 83 ab 88 00 00 00 01 subl $0x1,0x88(%rbx) 90627: 48 83 c4 08 add $0x8,%rsp 9062b: 48 89 df mov %rbx,%rdi 9062e: 5b pop %rbx 9062f: 5d pop %rbp 90630: 41 5c pop %r12 90632: 41 5d pop %r13 90634: e9 b7 ee ff ff jmpq 8f4f0 <meta_create_texture@@Base+0x3e0> 90639: 0f 1f 80 00 00 00 00 nopl 0x0(%rax) In the source code to libmutter, in src/compositor/compositor.c: void meta_compositor_switch_workspace (MetaCompositor *compositor, MetaWorkspace *from, MetaWorkspace *to, MetaMotionDirection direction) { gint to_indx, from_indx; to_indx = meta_workspace_index (to); from_indx = meta_workspace_index (from); compositor->switch_workspace_in_progress++; // segfault here if (!meta_plugin_manager_switch_workspace (compositor->plugin_mgr, from_indx, to_indx, direction)) { compositor->switch_workspace_in_progress--; /* We have to explicitely call this to fix up stacking order of the * actors; this is because the abs stacking position of actors does not * necessarily change during the window hiding/unhiding, only their * relative position toward the destkop window. */ meta_finish_workspace_switch (compositor); } } Unfortunately, I don't have a core dump, and I haven't been able to reproduce the problem. Here are the system logs leading up to the crash (the entry last before this was >30min before the crash): Aug 24 15:51:22 NAVI dbus-daemon[1843]: [session uid=1000 pid=1843] Activating service name='org.gnome.ControlCenter.SearchProvider' requested by ':1.29' (uid=1000 Aug 24 15:51:22 NAVI dbus-daemon[1843]: [session uid=1000 pid=1843] Activating service name='org.gnome.Contacts.SearchProvider' requested by ':1.29' (uid=1000 pid= Aug 24 15:51:22 NAVI dbus-daemon[1843]: [session uid=1000 pid=1843] Activating service name='org.gnome.Documents' requested by ':1.29' (uid=1000 pid=1970 comm="/us Aug 24 15:51:22 NAVI dbus-daemon[1843]: [session uid=1000 pid=1843] Activating service name='org.gnome.Nautilus' requested by ':1.29' (uid=1000 pid=1970 comm="/usr Aug 24 15:51:22 NAVI dbus-daemon[1843]: [session uid=1000 pid=1843] Activating service name='org.gnome.Calculator.SearchProvider' requested by ':1.29' (uid=1000 pi Aug 24 15:51:22 NAVI dbus-daemon[1843]: [session uid=1000 pid=1843] Activating service name='org.gnome.Calendar' requested by ':1.29' (uid=1000 pid=1970 comm="/usr Aug 24 15:51:22 NAVI dbus-daemon[1843]: [session uid=1000 pid=1843] Activating service name='org.gnome.Characters.BackgroundService' requested by ':1.29' (uid=1000 Aug 24 15:51:22 NAVI dbus-daemon[1843]: [session uid=1000 pid=1843] Activating service name='org.gnome.clocks' requested by ':1.29' (uid=1000 pid=1970 comm="/usr/b Aug 24 15:51:22 NAVI dbus-daemon[1843]: [session uid=1000 pid=1843] Activating via systemd: service name='org.gnome.Terminal' unit='gnome-terminal-server.service' Aug 24 15:51:22 NAVI dbus-daemon[1843]: [session uid=1000 pid=1843] Successfully activated service 'org.gnome.Calculator.SearchProvider' Aug 24 15:51:22 NAVI systemd[1784]: Starting GNOME Terminal Server... Aug 24 15:51:22 NAVI org.gnome.Shell.desktop[1970]: gnome-shell: ../../src/hb-object.hh:269: Type* hb_object_reference(Type*) [with Type = hb_face_t]: Assertion `h Aug 24 15:51:22 NAVI org.gnome.Shell.desktop[1970]: == Stack trace for context 0x55d317788280 == Aug 24 15:51:22 NAVI org.gnome.Shell.desktop[1970]: #0 7ffd88b2b2b0 b resource:///org/gnome/shell/ui/iconGrid.js:113 (7f75dc5034c0 @ 988) Aug 24 15:51:22 NAVI org.gnome.Shell.desktop[1970]: #1 7ffd88b2b390 b resource:///org/gnome/gjs/modules/_legacy.js:82 (7f75dcab0b80 @ 71) Aug 24 15:51:22 NAVI org.gnome.Shell.desktop[1970]: #2 7ffd88b2b470 b self-hosted:981 (7f75dcaf01f0 @ 474) Aug 24 15:51:22 NAVI org.gnome.Shell.desktop[1970]: #3 55d31d1000f8 i resource:///org/gnome/shell/ui/iconGrid.js:388 (7f75dc507160 @ 900) Aug 24 15:51:22 NAVI org.gnome.Shell.desktop[1970]: #4 7ffd88b2e650 b resource:///org/gnome/gjs/modules/_legacy.js:82 (7f75dcab0b80 @ 71) Aug 24 15:51:22 NAVI org.gnome.Shell.desktop[1970]: #5 7ffd88b2e730 b self-hosted:981 (7f75dcaf01f0 @ 474) Aug 24 15:51:22 NAVI org.gnome.Shell.desktop[1970]: #6 7ffd88b32780 b resource:///org/gnome/gjs/modules/_legacy.js:39 (7f75dcab08b0 @ 215) Aug 24 15:51:22 NAVI org.gnome.Shell.desktop[1970]: #7 55d31d100030 i resource:///org/gnome/shell/ui/search.js:43 (7f75dc555b80 @ 225) Aug 24 15:51:22 NAVI org.gnome.Shell.desktop[1970]: #8 7ffd88b33710 b resource:///org/gnome/gjs/modules/_legacy.js:82 (7f75dcab0b80 @ 71) Aug 24 15:51:22 NAVI org.gnome.Shell.desktop[1970]: #9 7ffd88b36aa0 b resource:///org/gnome/gjs/modules/_legacy.js:39 (7f75dcab08b0 @ 215) Aug 24 15:51:22 NAVI org.gnome.Shell.desktop[1970]: #10 7ffd88b376e0 b resource:///org/gnome/shell/ui/overviewControls.js:409 (7f75dc7dee50 @ 26) Aug 24 15:51:22 NAVI org.gnome.Shell.desktop[1970]: #11 7ffd88b38170 b resource:///org/gnome/gjs/modules/_legacy.js:82 (7f75dcab0b80 @ 71) Aug 24 15:51:22 NAVI org.gnome.Shell.desktop[1970]: #12 7ffd88b39ee0 I resource:///org/gnome/shell/ui/layout.js:211 (7f75dc701790 @ 62) Aug 24 15:51:22 NAVI dbus-daemon[1843]: [session uid=1000 pid=1843] Successfully activated service 'org.gnome.ControlCenter.SearchProvider' Aug 24 15:51:22 NAVI polkitd(authority=local)[773]: Unregistered Authentication Agent for unix-session:2 (system bus name :1.369, object path /org/freedesktop/Poli Aug 24 15:51:22 NAVI dbus-daemon[1843]: [session uid=1000 pid=1843] Successfully activated service 'org.gnome.clocks' Aug 24 15:51:22 NAVI gnome-session[1817]: gnome-session-binary[1817]: WARNING: Application 'org.gnome.Shell.desktop' killed by signal 6 Aug 24 15:51:22 NAVI gnome-session-binary[1817]: WARNING: Application 'org.gnome.Shell.desktop' killed by signal 6 Aug 24 15:51:22 NAVI org.gnome.Chara[25142]: Some code called array.toString() on a Uint8Array instance. Previously this would have interpreted the bytes of the ar (Note that array.toString() may have been called implicitly.) 0 <TOP LEVEL> ["resource:///org/gnome/Characters/BackgroundService/js/searchProvider.js":26] 1 <TOP LEVEL> ["resource:///org/gnome/Characters/BackgroundService/js/service.js":33] 2 <TOP LEVEL> ["/usr/share/org.gnome.Characters/org.gnome.Characters.BackgroundService":6] Aug 24 15:51:22 NAVI org.gnome.Chara[25142]: Some code accessed the property 'SearchProvider' on the module 'searchProvider'. That property was defined with 'let' Aug 24 15:51:22 NAVI dbus-daemon[1843]: [session uid=1000 pid=1843] Successfully activated service 'org.gnome.Characters.BackgroundService' Aug 24 15:51:22 NAVI dbus-daemon[1843]: [session uid=1000 pid=1843] Successfully activated service 'org.gnome.Terminal' Aug 24 15:51:22 NAVI systemd[1784]: Started GNOME Terminal Server. Aug 24 15:51:22 NAVI gdm-Xorg-:0[873]: (II) AMDGPU(0): EDID vendor "ACR", prod id 1038 Aug 24 15:51:22 NAVI gdm-Xorg-:0[873]: (II) AMDGPU(0): Using hsync ranges from config file Aug 24 15:51:22 NAVI gdm-Xorg-:0[873]: (II) AMDGPU(0): Using vrefresh ranges from config file Aug 24 15:51:22 NAVI gdm-Xorg-:0[873]: (II) AMDGPU(0): Printing DDC gathered Modelines: Aug 24 15:51:22 NAVI gdm-Xorg-:0[873]: (II) AMDGPU(0): Modeline "1920x1080"x0.0 148.50 1920 2008 2052 2200 1080 1084 1089 1125 +hsync +vsync (67.5 kHz eP) Aug 24 15:51:22 NAVI gdm-Xorg-:0[873]: (II) AMDGPU(0): Modeline "800x600"x0.0 40.00 800 840 968 1056 600 601 605 628 +hsync +vsync (37.9 kHz e) Aug 24 15:51:22 NAVI gdm-Xorg-:0[873]: (II) AMDGPU(0): Modeline "800x600"x0.0 36.00 800 824 896 1024 600 601 603 625 +hsync +vsync (35.2 kHz e) Aug 24 15:51:22 NAVI gdm-Xorg-:0[873]: (II) AMDGPU(0): Modeline "640x480"x0.0 30.24 640 704 768 864 480 483 486 525 -hsync -vsync (35.0 kHz e) Aug 24 15:51:22 NAVI gdm-Xorg-:0[873]: (II) AMDGPU(0): Modeline "640x480"x0.0 25.18 640 656 752 800 480 490 492 525 -hsync -vsync (31.5 kHz e) Aug 24 15:51:22 NAVI gdm-Xorg-:0[873]: (II) AMDGPU(0): Modeline "720x400"x0.0 28.32 720 738 846 900 400 412 414 449 -hsync +vsync (31.5 kHz e) Aug 24 15:51:22 NAVI gdm-Xorg-:0[873]: (II) AMDGPU(0): Modeline "1024x768"x0.0 75.00 1024 1048 1184 1328 768 771 777 806 -hsync -vsync (56.5 kHz e) Aug 24 15:51:22 NAVI gdm-Xorg-:0[873]: (II) AMDGPU(0): Modeline "1024x768"x0.0 65.00 1024 1048 1184 1344 768 771 777 806 -hsync -vsync (48.4 kHz e) Aug 24 15:51:22 NAVI gdm-Xorg-:0[873]: (II) AMDGPU(0): Modeline "1152x864"x0.0 108.00 1152 1216 1344 1600 864 865 868 900 +hsync +vsync (67.5 kHz e) Aug 24 15:51:22 NAVI gdm-Xorg-:0[873]: (II) AMDGPU(0): Modeline "1280x1024"x0.0 108.00 1280 1328 1440 1688 1024 1025 1028 1066 +hsync +vsync (64.0 kHz e) Aug 24 15:51:22 NAVI gdm-Xorg-:0[873]: (II) AMDGPU(0): Modeline "1280x720"x60.0 74.48 1280 1336 1472 1664 720 721 724 746 -hsync +vsync (44.8 kHz e) Aug 24 15:51:22 NAVI gdm-Xorg-:0[873]: (II) AMDGPU(0): Modeline "1280x800"x0.0 71.00 1280 1328 1360 1440 800 803 809 823 +hsync -vsync (49.3 kHz e) Aug 24 15:51:22 NAVI gdm-Xorg-:0[873]: (II) AMDGPU(0): Modeline "1440x900"x0.0 88.75 1440 1488 1520 1600 900 903 909 926 +hsync -vsync (55.5 kHz e) Aug 24 15:51:22 NAVI gdm-Xorg-:0[873]: (II) AMDGPU(0): Modeline "1680x1050"x0.0 119.00 1680 1728 1760 1840 1050 1053 1059 1080 +hsync -vsync (64.7 kHz e) Aug 24 15:51:22 NAVI dbus-daemon[1843]: [session uid=1000 pid=1843] Successfully activated service 'org.gnome.Documents' Aug 24 15:51:22 NAVI dbus-daemon[1843]: [session uid=1000 pid=1843] Successfully activated service 'org.gnome.Calendar' Aug 24 15:51:22 NAVI dbus-daemon[1843]: [session uid=1000 pid=1843] Successfully activated service 'org.gnome.Nautilus' Aug 24 15:51:22 NAVI dbus-daemon[1843]: [session uid=1000 pid=1843] Successfully activated service 'org.gnome.Contacts.SearchProvider' Aug 24 15:51:22 NAVI org.gajim.Gajim.desktop[2167]: 08/24/2020 15:51:22 (W) gajim.c.idle: org.gnome.Mutter.IdleMonitor.GetIdletime() failed: g-dbus-error-quark: GD Aug 24 15:51:22 NAVI org.gnome.Shell.desktop[25175]: can't load /usr/lib/x86_64-linux-gnu/spa/support/libspa-support.so: /usr/lib/x86_64-linux-gnu/spa/support/libs Aug 24 15:51:22 NAVI gsd-media-keys[2115]: g_variant_get_va: assertion 'value != NULL' failed Aug 24 15:51:22 NAVI gsd-media-keys[2115]: g_variant_unref: assertion 'value != NULL' failed Aug 24 15:51:22 NAVI kernel: gnome-shell[25175]: segfault at 88 ip 00007f79f77105f5 sp 00007fff8d60f530 error 6 in libmutter-3.so.0.0.0[7f79f76da000+db000] Aug 24 15:51:22 NAVI kernel: Code: 00 00 00 00 00 41 55 49 89 f5 41 54 41 89 cc 55 53 48 89 fb 48 89 d7 48 83 ec 08 e8 b5 0f fd ff 4c 89 ef 89 c5 e8 ab 0f fd ff <8 Aug 24 15:51:22 NAVI gnome-session[1817]: gnome-session-binary[1817]: WARNING: Application 'org.gnome.Shell.desktop' killed by signal 11 Aug 24 15:51:22 NAVI gnome-session[1817]: gnome-session-binary[1817]: WARNING: App 'org.gnome.Shell.desktop' respawning too quickly Aug 24 15:51:22 NAVI gnome-session-binary[1817]: WARNING: Application 'org.gnome.Shell.desktop' killed by signal 11 Aug 24 15:51:22 NAVI gnome-session-binary[1817]: WARNING: App 'org.gnome.Shell.desktop' respawning too quickly Aug 24 15:51:22 NAVI gnome-session-binary[1817]: Unrecoverable failure in required component org.gnome.Shell.desktop If I run into this problem again I will update with a core dump. -- System Information: Debian Release: 10.5 APT prefers stable-updates APT policy: (500, 'stable-updates'), (500, 'stable-debug'), (500, 'proposed-updates-debug'), (500, 'buster'), (500, 'stable') Architecture: amd64 (x86_64) Foreign Architectures: i386 Kernel: Linux 4.19.0-10-amd64 (SMP w/6 CPU cores) Locale: LANG=en_US.UTF-8, LC_CTYPE=en_US.UTF-8 (charmap=UTF-8), LANGUAGE=en_US.UTF-8 (charmap=UTF-8) Shell: /bin/sh linked to /usr/bin/dash Init: systemd (via /run/systemd/system) LSM: AppArmor: enabled Versions of packages gnome-shell depends on: ii dconf-gsettings-backend [gsettings-backend] 0.30.1-2 ii evolution-data-server 3.30.5-1+deb10u1 ii gir1.2-accountsservice-1.0 0.6.45-2 ii gir1.2-atspi-2.0 2.30.0-7 ii gir1.2-freedesktop 1.58.3-2 ii gir1.2-gcr-3 3.28.1-1 ii gir1.2-gdesktopenums-3.0 3.28.1-1 ii gir1.2-gdm-1.0 3.30.2-3 ii gir1.2-geoclue-2.0 2.5.2-1 ii gir1.2-glib-2.0 1.58.3-2 ii gir1.2-gnomebluetooth-1.0 3.28.2-4~deb10u1 ii gir1.2-gnomedesktop-3.0 3.30.2.1-2 ii gir1.2-gtk-3.0 3.24.5-1 ii gir1.2-gweather-3.0 3.28.2-2 ii gir1.2-ibus-1.0 1.5.19-4+deb10u1 ii gir1.2-mutter-3 3.30.2-9~deb10u1 ii gir1.2-nm-1.0 1.14.6-2+deb10u1 ii gir1.2-nma-1.0 1.8.20-1.1 ii gir1.2-pango-1.0 1.42.4-8~deb10u1 ii gir1.2-polkit-1.0 0.105-25 ii gir1.2-rsvg-2.0 2.44.10-2.1 ii gir1.2-soup-2.4 2.64.2-2 ii gir1.2-upowerglib-1.0 0.99.10-1 ii gjs 1.54.3-1 ii gnome-backgrounds 3.30.0-1 ii gnome-settings-daemon 3.30.2-3 ii gnome-shell-common 3.30.2-11~deb10u1 ii gsettings-desktop-schemas 3.28.1-1 ii libatk-bridge2.0-0 2.30.0-5 ii libatk1.0-0 2.30.0-2 ii libc6 2.28-10 ii libcairo2 1.16.0-4 ii libcanberra-gtk3-0 0.30-7 ii libcanberra0 0.30-7 ii libcroco3 0.6.12-3 ii libecal-1.2-19 3.30.5-1+deb10u1 ii libedataserver-1.2-23 3.30.5-1+deb10u1 ii libgcr-base-3-1 3.28.1-1 ii libgdk-pixbuf2.0-0 2.38.1+dfsg-1 ii libgirepository-1.0-1 1.58.3-2 ii libgjs0g 1.54.3-1 ii libglib2.0-0 2.58.3-2+deb10u2 ii libglib2.0-bin 2.58.3-2+deb10u2 ii libgstreamer1.0-0 1.14.4-1 ii libgtk-3-0 3.24.5-1 ii libical3 3.0.4-3 ii libjson-glib-1.0-0 1.4.4-2 ii libmutter-3-0 3.30.2-9~deb10u1 ii libnm0 1.14.6-2+deb10u1 ii libpango-1.0-0 1.42.4-8~deb10u1 ii libpangocairo-1.0-0 1.42.4-8~deb10u1 ii libpolkit-agent-1-0 0.105-25 ii libpolkit-gobject-1-0 0.105-25 ii libpulse-mainloop-glib0 12.2-4+deb10u1 ii libpulse0 12.2-4+deb10u1 ii libsecret-1-0 0.18.7-1 ii libstartup-notification0 0.12-6 ii libsystemd0 241-7~deb10u4 ii libx11-6 2:1.6.7-1 ii libxfixes3 1:5.0.3-1 ii mutter 3.30.2-9~deb10u1 ii python3 3.7.3-1 Versions of packages gnome-shell recommends: ii bolt 0.7-2 ii chrome-gnome-shell 10.1-5 ii gdm3 3.30.2-3 ii gkbd-capplet 3.26.1-1 ii gnome-control-center 1:3.30.3-2~deb10u1 ii gnome-user-docs 3.30.2-1 ii iio-sensor-proxy 2.4-2 ii switcheroo-control 1.2-2 ii unzip 6.0-23+deb10u1 Versions of packages gnome-shell suggests: pn gir1.2-telepathyglib-0.12 <none> pn gir1.2-telepathylogger-0.2 <none> Versions of packages gnome-session depends on: ii gnome-session-bin 3.30.1-2 ii gnome-session-common 3.30.1-2 ii gnome-settings-daemon 3.30.2-3 Versions of packages gnome-session suggests: ii desktop-base 10.0.2 ii gnome-keyring 3.28.2-5 Versions of packages gnome-settings-daemon depends on: ii gnome-settings-daemon-common 3.30.2-3 ii gsettings-desktop-schemas 3.28.1-1 ii libasound2 1.1.8-1 ii libc6 2.28-10 ii libcairo2 1.16.0-4 ii libcanberra-gtk3-0 0.30-7 ii libcanberra0 0.30-7 ii libcolord2 1.4.3-4 ii libcups2 2.2.10-6+deb10u3 ii libfontconfig1 2.13.1-2 ii libgdk-pixbuf2.0-0 2.38.1+dfsg-1 ii libgeoclue-2-0 2.5.2-1 ii libgeocode-glib0 3.26.1-1 ii libglib2.0-0 2.58.3-2+deb10u2 ii libgnome-desktop-3-17 3.30.2.1-2 ii libgtk-3-0 3.24.5-1 ii libgudev-1.0-0 232-2 ii libgweather-3-15 3.28.2-2 ii liblcms2-2 2.9-3 ii libnm0 1.14.6-2+deb10u1 ii libnotify4 0.7.7-4 ii libnspr4 2:4.20-1 ii libnss3 2:3.42.1-1+deb10u3 ii libpam-systemd 241-7~deb10u4 ii libpango-1.0-0 1.42.4-8~deb10u1 ii libpangocairo-1.0-0 1.42.4-8~deb10u1 ii libpolkit-gobject-1-0 0.105-25 ii libpulse-mainloop-glib0 12.2-4+deb10u1 ii libpulse0 12.2-4+deb10u1 ii libupower-glib3 0.99.10-1 ii libwacom2 0.32-1 ii libwayland-client0 1.16.0-1 ii libx11-6 2:1.6.7-1 ii libxext6 2:1.3.3-1+b2 ii libxi6 2:1.7.9-1 Versions of packages gnome-settings-daemon recommends: ii iio-sensor-proxy 2.4-2 ii pulseaudio 12.2-4+deb10u1 Versions of packages libgjs0g depends on: ii gir1.2-glib-2.0 1.58.3-2 ii gir1.2-gtk-3.0 3.24.5-1 ii libatk1.0-0 2.30.0-2 ii libc6 2.28-10 ii libcairo-gobject2 1.16.0-4 ii libcairo2 1.16.0-4 ii libffi6 3.2.1-9 ii libgcc1 1:8.3.0-6 ii libgdk-pixbuf2.0-0 2.38.1+dfsg-1 ii libgirepository-1.0-1 1.58.3-2 ii libglib2.0-0 2.58.3-2+deb10u2 ii libgtk-3-0 3.24.5-1 ii libmozjs-60-0 60.2.3-3 ii libpango-1.0-0 1.42.4-8~deb10u1 ii libpangocairo-1.0-0 1.42.4-8~deb10u1 ii libreadline7 7.0-5 ii libstdc++6 8.3.0-6 ii libx11-6 2:1.6.7-1 ii libxext6 2:1.3.3-1+b2 Versions of packages libmutter-3-0 depends on: ii gsettings-desktop-schemas 3.28.1-1 ii libatk1.0-0 2.30.0-2 ii libc6 2.28-10 ii libcairo-gobject2 1.16.0-4 ii libcairo2 1.16.0-4 ii libcanberra-gtk3-0 0.30-7 ii libcanberra0 0.30-7 ii libdrm2 2.4.97-1 ii libegl1 1.1.0-1 ii libfontconfig1 2.13.1-2 ii libgbm1 18.3.6-2+deb10u1 ii libgdk-pixbuf2.0-0 2.38.1+dfsg-1 ii libgirepository-1.0-1 1.58.3-2 ii libgl1 1.1.0-1 ii libglib2.0-0 2.58.3-2+deb10u2 ii libgnome-desktop-3-17 3.30.2.1-2 ii libgtk-3-0 3.24.5-1 ii libgudev-1.0-0 232-2 ii libice6 2:1.0.9-2 ii libinput10 1.12.6-2+deb10u1 ii libjson-glib-1.0-0 1.4.4-2 ii libpango-1.0-0 1.42.4-8~deb10u1 ii libpangocairo-1.0-0 1.42.4-8~deb10u1 ii libpangoft2-1.0-0 1.42.4-8~deb10u1 ii libpipewire-0.2-1 0.2.5-1 ii libsm6 2:1.2.3-1 ii libstartup-notification0 0.12-6 ii libsystemd0 241-7~deb10u4 ii libudev1 241-7~deb10u4 ii libwacom2 0.32-1 ii libwayland-server0 1.16.0-1 ii libx11-6 2:1.6.7-1 ii libx11-xcb1 2:1.6.7-1 ii libxcb-randr0 1.13.1-2 ii libxcb-res0 1.13.1-2 ii libxcb1 1.13.1-2 ii libxcomposite1 1:0.4.4-2 ii libxcursor1 1:1.1.15-2 ii libxdamage1 1:1.1.4-3+b3 ii libxext6 2:1.3.3-1+b2 ii libxfixes3 1:5.0.3-1 ii libxi6 2:1.7.9-1 ii libxinerama1 2:1.1.4-2 ii libxkbcommon-x11-0 0.8.2-1 ii libxkbcommon0 0.8.2-1 ii libxkbfile1 1:1.0.9-2+b11 ii libxrandr2 2:1.5.1-1 ii libxrender1 1:0.9.10-1 ii libxtst6 2:1.2.3-1 ii mutter-common 3.30.2-9~deb10u1 Versions of packages gnome-shell is related to: ii libegl-mesa0 [libegl-vendor] 18.3.6-2+deb10u1 ii libgl1-mesa-dri 18.3.6-2+deb10u1 ii libglx-mesa0 [libglx-vendor] 18.3.6-2+deb10u1 -- no debconf information