unofficial mirror of bug-guix@gnu.org 
 help / color / mirror / code / Atom feed
* fixing GDM + GNOME Shell
@ 2019-08-04 21:00 Ricardo Wurmus
  2019-08-05  7:17 ` Efraim Flashner
                   ` (7 more replies)
  0 siblings, 8 replies; 22+ messages in thread
From: Ricardo Wurmus @ 2019-08-04 21:00 UTC (permalink / raw)
  To: guix-devel; +Cc: bug-guix

Hi Guix,

Today I again couldn’t log into my workstation after upgrading the
system.  I’m using GDM + GNOME Shell.

At first GDM wouldn’t start.  I knew what to do: remove /var/lib/gdm,
because some state must have accumulated there.

GDM came up after a reboot, but I still couldn’t log in.  Instead I was
thrown back to the login screen without any error message.  I looked in
~/.cache/gdm/session.log for information, but it only told me that
gnome-shell was killed.  Thanks.

After removing both .local/share and .cache out of the way I could log
in again.

This happens whenever I upgrade the system.  This makes the system
rather frustrating to use.  I don’t know if booting into an older system
generation would result in the same problem, but my guess is that it
would because both GDM and GNOME Shell appear to be leaving some binary
files behind that cause different versions to crash unceremoneously.

What can we do to make GDM and GNOME Shell more reliable?

--
Ricardo

^ permalink raw reply	[flat|nested] 22+ messages in thread

* Re: fixing GDM + GNOME Shell
  2019-08-04 21:00 fixing GDM + GNOME Shell Ricardo Wurmus
@ 2019-08-05  7:17 ` Efraim Flashner
  2019-08-05 14:36   ` bug#36924: " Ricardo Wurmus
  2019-08-06 16:12 ` Mark H Weaver
                   ` (6 subsequent siblings)
  7 siblings, 1 reply; 22+ messages in thread
From: Efraim Flashner @ 2019-08-05  7:17 UTC (permalink / raw)
  To: Ricardo Wurmus; +Cc: guix-devel, bug-guix

[-- Attachment #1: Type: text/plain, Size: 2083 bytes --]

On Sun, Aug 04, 2019 at 11:00:41PM +0200, Ricardo Wurmus wrote:
> Hi Guix,
> 
> Today I again couldn’t log into my workstation after upgrading the
> system.  I’m using GDM + GNOME Shell.
> 
> At first GDM wouldn’t start.  I knew what to do: remove /var/lib/gdm,
> because some state must have accumulated there.

For this one can we create a single-shot service that, on reconfigure or
boot, removes this directory and recreates it? In fact, it seems this is
basically what Debian does¹.

> 
> GDM came up after a reboot, but I still couldn’t log in.  Instead I was
> thrown back to the login screen without any error message.  I looked in
> ~/.cache/gdm/session.log for information, but it only told me that
> gnome-shell was killed.  Thanks.
> 
> After removing both .local/share and .cache out of the way I could log
> in again.

This part seems a little harder to automate. /etc/skel is only sourced
when a user is created, so it's hard to make sweeping changes to help
people in this case, if they even want automated help. I'm guessing
making .cache/gdm(?) read-only would create other issues.

> 
> This happens whenever I upgrade the system.  This makes the system
> rather frustrating to use.  I don’t know if booting into an older system
> generation would result in the same problem, but my guess is that it
> would because both GDM and GNOME Shell appear to be leaving some binary
> files behind that cause different versions to crash unceremoneously.
> 
> What can we do to make GDM and GNOME Shell more reliable?

Modify the logout scripts to remove a users' .cache file seems extreme.
Some of the other options, such as removing and recreating directories
would address other issues we've had (such as /var/cache/fontconfig).


¹ https://sources.debian.org/src/gdm3/3.30.2-3/debian/gdm3.postinst/#L76

-- 
Efraim Flashner   <efraim@flashner.co.il>   אפרים פלשנר
GPG key = A28B F40C 3E55 1372 662D  14F7 41AA E7DC CA3D 8351
Confidentiality cannot be guaranteed on emails sent or received unencrypted

[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 833 bytes --]

^ permalink raw reply	[flat|nested] 22+ messages in thread

* bug#36924: fixing GDM + GNOME Shell
  2019-08-05  7:17 ` Efraim Flashner
@ 2019-08-05 14:36   ` Ricardo Wurmus
  0 siblings, 0 replies; 22+ messages in thread
From: Ricardo Wurmus @ 2019-08-05 14:36 UTC (permalink / raw)
  To: Efraim Flashner; +Cc: guix-devel, 36924


Efraim Flashner <efraim@flashner.co.il> writes:

> On Sun, Aug 04, 2019 at 11:00:41PM +0200, Ricardo Wurmus wrote:
>> Hi Guix,
>>
>> Today I again couldn’t log into my workstation after upgrading the
>> system.  I’m using GDM + GNOME Shell.
>>
>> At first GDM wouldn’t start.  I knew what to do: remove /var/lib/gdm,
>> because some state must have accumulated there.
>
> For this one can we create a single-shot service that, on reconfigure or
> boot, removes this directory and recreates it? In fact, it seems this is
> basically what Debian does¹.

I suggested as much earlier, but it seems like a hack.  Is this how
GNOME expects this state directory to be handled?  The fact that Debian
does this is reassuring (or not…), but I would very much like to avoid
adding even more hacks.

>> GDM came up after a reboot, but I still couldn’t log in.  Instead I was
>> thrown back to the login screen without any error message.  I looked in
>> ~/.cache/gdm/session.log for information, but it only told me that
>> gnome-shell was killed.  Thanks.
>>
>> After removing both .local/share and .cache out of the way I could log
>> in again.
>
> This part seems a little harder to automate. /etc/skel is only sourced
> when a user is created, so it's hard to make sweeping changes to help
> people in this case, if they even want automated help. I'm guessing
> making .cache/gdm(?) read-only would create other issues.

Does anyone know why this happens at all?  What are the cached data?
Can we do without?

>> What can we do to make GDM and GNOME Shell more reliable?
>
> Modify the logout scripts to remove a users' .cache file seems extreme.
> Some of the other options, such as removing and recreating directories
> would address other issues we've had (such as /var/cache/fontconfig).

In my opinion generating a global /var/cache/fontconfig should be
prevented; removing it seems again like an avoidable hack.

--
Ricardo

^ permalink raw reply	[flat|nested] 22+ messages in thread

* bug#36924: fixing GDM + GNOME Shell
  2019-08-04 21:00 fixing GDM + GNOME Shell Ricardo Wurmus
  2019-08-05  7:17 ` Efraim Flashner
@ 2019-08-06 16:12 ` Mark H Weaver
       [not found] ` <87k1bqgtn1.fsf@netris.org>
                   ` (5 subsequent siblings)
  7 siblings, 0 replies; 22+ messages in thread
From: Mark H Weaver @ 2019-08-06 16:12 UTC (permalink / raw)
  To: Ricardo Wurmus; +Cc: guix-devel, 36924

Hi Ricardo,

Ricardo Wurmus <rekado@elephly.net> writes:

> Today I again couldn’t log into my workstation after upgrading the
> system.  I’m using GDM + GNOME Shell.
>
> At first GDM wouldn’t start.  I knew what to do: remove /var/lib/gdm,
> because some state must have accumulated there.
>
> GDM came up after a reboot, but I still couldn’t log in.  Instead I was
> thrown back to the login screen without any error message.  I looked in
> ~/.cache/gdm/session.log for information, but it only told me that
> gnome-shell was killed.  Thanks.
>
> After removing both .local/share and .cache out of the way I could log
> in again.
>
> This happens whenever I upgrade the system.  This makes the system
> rather frustrating to use.  I don’t know if booting into an older system
> generation would result in the same problem, but my guess is that it
> would because both GDM and GNOME Shell appear to be leaving some binary
> files behind that cause different versions to crash unceremoneously.
>
> What can we do to make GDM and GNOME Shell more reliable?

It's interesting that I've never run into this problem, not even once,
in all my years of running GNOME on Guix systems.  Since recently
reverting to mostly using GNOME under X and GDM (whereas for a while I
was mostly launching GNOME manually under Wayland), I've run into some
other problems, e.g. GDM suspending my system automatically, sometimes
immediately after logging out, but I've *never* had to remove my caches.

I wonder if this is related to my use of Btrfs instead of Ext4.  Whereas
system crashes cause file system corruptions under Ext4 (usually in the
form of some files being left empty after a crash), I've never seen any
evidence of corruption from crashes under Btrfs.

       Mark

^ permalink raw reply	[flat|nested] 22+ messages in thread

* bug#36924: fixing GDM + GNOME Shell
       [not found] ` <87k1bqgtn1.fsf@netris.org>
@ 2019-08-06 18:08   ` Ricardo Wurmus
       [not found]   ` <87sgqexj2k.fsf@elephly.net>
  1 sibling, 0 replies; 22+ messages in thread
From: Ricardo Wurmus @ 2019-08-06 18:08 UTC (permalink / raw)
  To: Mark H Weaver; +Cc: guix-devel, 36924


Mark H Weaver <mhw@netris.org> writes:

> It's interesting that I've never run into this problem, not even once,
> in all my years of running GNOME on Guix systems.  Since recently
> reverting to mostly using GNOME under X and GDM (whereas for a while I
> was mostly launching GNOME manually under Wayland), I've run into some
> other problems, e.g. GDM suspending my system automatically, sometimes
> immediately after logging out, but I've *never* had to remove my caches.

Interesting.

> I wonder if this is related to my use of Btrfs instead of Ext4.  Whereas
> system crashes cause file system corruptions under Ext4 (usually in the
> form of some files being left empty after a crash), I've never seen any
> evidence of corruption from crashes under Btrfs.

I haven’t had a system crash on this machine.  I didn’t use it for a
month, upgraded, rebooted, and then had GDM + GNOME Shell problems.

-- 
Ricardo

^ permalink raw reply	[flat|nested] 22+ messages in thread

* bug#36924: fixing GDM + GNOME Shell
       [not found]   ` <87sgqexj2k.fsf@elephly.net>
@ 2019-08-08  2:59     ` Timothy Sample
  0 siblings, 0 replies; 22+ messages in thread
From: Timothy Sample @ 2019-08-08  2:59 UTC (permalink / raw)
  To: Ricardo Wurmus; +Cc: guix-devel, 36924

Hello,

Ricardo Wurmus <rekado@elephly.net> writes:

> Mark H Weaver <mhw@netris.org> writes:
>
>> It's interesting that I've never run into this problem, not even once,
>> in all my years of running GNOME on Guix systems.  Since recently
>> reverting to mostly using GNOME under X and GDM (whereas for a while I
>> was mostly launching GNOME manually under Wayland), I've run into some
>> other problems, e.g. GDM suspending my system automatically, sometimes
>> immediately after logging out, but I've *never* had to remove my caches.
>
> Interesting.

FWIW, I’m having the same good luck as Mark.  Other than the upgrade
from 3.24 to 3.28, I’ve never had this kind of trouble with GNOME and
GDM.  And even then, IIRC, the issue wasn’t really with the state files
(deleting them just happened to serve as a temporary work-around).


-- Tim

^ permalink raw reply	[flat|nested] 22+ messages in thread

* bug#36924: Mesa/GDM/XFCE
  2019-08-04 21:00 fixing GDM + GNOME Shell Ricardo Wurmus
                   ` (2 preceding siblings ...)
       [not found] ` <87k1bqgtn1.fsf@netris.org>
@ 2019-09-12  9:54 ` Andreas Enge
  2019-09-12 11:40   ` Ludovic Courtès
  2019-12-27  7:25 ` bug#36924: Xfce not starting Andreas Enge
                   ` (3 subsequent siblings)
  7 siblings, 1 reply; 22+ messages in thread
From: Andreas Enge @ 2019-09-12  9:54 UTC (permalink / raw)
  To: 36924

Hello,

now it is my turn to experience a problem in this area. I newly installed a
machine with the graphical installer of Guix 1.0.1 (where I could use xfce
without problem), then I issued a "guix pull" and a "guix system reconfigure".

Now logging into XFCE poses problems, which I can reproduce as follows
(after removing /var/lib/gdm, $HOME/{.config,.cache,.local} once):
- When I remove $HOME/.config/xfce4/xfconf/xfce-perchannel-xml/xfwm4.xml
  I can log into XFCE once.
- The second time, various problems may occur: The terminal, which was open
  before opens, but does not receive focus so I cannot type, and the windows
  decorations for closing it are absent; or the xfce panel is absent.
- Then I remove $HOME/.config/xfce4/xfconf/xfce-perchannel-xml/xfwm4.xml
  again, and can log in once more.
And so on.

The following lines in $HOME/.cache/gdm/session.log appear when there is
a problem:

xfwm4: ../mesa-19.1.4/src/mesa/drivers/dri/i965/intel_mipmap_tree.c:1293: intel_miptree_match_image: Zusicherung »image->TexObject->Target == mt->target« nicht erfüllt.
(nm-applet:8046): nm-applet-WARNING **: 11:23:52.630: GDBus.Error:org.freedesktop.NetworkManager.AgentManager.PermissionDenied: An agent with this ID is already registered for this user.
xfwm4: ../mesa-19.1.4/src/mesa/drivers/dri/i965/intel_mipmap_tree.c:1293: intel_miptree_match_image: Zusicherung »image->TexObject->Target == mt->target« nicht erfüllt.
(nm-applet:8046): Gdk-CRITICAL **: 11:23:53.035: gdk_window_thaw_toplevel_updates: assertion 'window->update_and_descendants_freeze_count > 0' failed
xfwm4: ../mesa-19.1.4/src/mesa/drivers/dri/i965/intel_mipmap_tree.c:1293: intel_miptree_match_image: Zusicherung »image->TexObject->Target == mt->target« nicht erfüllt.
(nm-applet:8046): Gdk-CRITICAL **: 11:23:53.357: gdk_window_thaw_toplevel_updates: assertion 'window->update_and_descendants_freeze_count > 0' failed
xfwm4: ../mesa-19.1.4/src/mesa/drivers/dri/i965/intel_mipmap_tree.c:1293: intel_miptree_match_image: Zusicherung »image->TexObject->Target == mt->target« nicht erfüllt.
(nm-applet:8046): Gdk-CRITICAL **: 11:23:53.441: gdk_window_thaw_toplevel_updates: assertion 'window->update_and_descendants_freeze_count > 0' failed
(xfconfd:7966): xfconfd-CRITICAL **: 11:23:58.040: Name org.xfce.Xfconf lost on the message dbus, exiting.
(Thunar:8030): thunar-WARNING **: 11:23:58.041: Name »org.xfce.FileManager« auf dem Nachrichten-dbus verloren.
(tumblerd:8023): tumblerd-CRITICAL **: 11:23:58.041: Name org.freedesktop.thumbnails.Cache1 lost on the message dbus, exiting.
(Thunar:8030): thunar-WARNING **: 11:23:58.041: Name »org.freedesktop.FileManager1« auf dem Nachrichten-dbus verloren.
(tumblerd:8023): tumblerd-CRITICAL **: 11:23:58.041: Name org.freedesktop.thumbnails.Manager1 lost on the message dbus, exiting.
(tumblerd:8023): tumblerd-CRITICAL **: 11:23:58.041: Name org.freedesktop.thumbnails.Thumbnailer1 lost on the message dbus, exiting.

Sorry for the German, but you also have the translation:
"Zusicherung ... nicht erfüllt" = "assertion ... failed"
"auf dem Nachrichten-dbus verloren" = "lost on the message dbus"

Andreas

^ permalink raw reply	[flat|nested] 22+ messages in thread

* bug#36924: Mesa/GDM/XFCE
  2019-09-12  9:54 ` bug#36924: Mesa/GDM/XFCE Andreas Enge
@ 2019-09-12 11:40   ` Ludovic Courtès
  2019-09-16  9:44     ` Andreas Enge
  0 siblings, 1 reply; 22+ messages in thread
From: Ludovic Courtès @ 2019-09-12 11:40 UTC (permalink / raw)
  To: Andreas Enge; +Cc: 36924

Hallo!

Thanks for the report, Andreas!

Andreas Enge <andreas@enge.fr> skribis:

> xfwm4: ../mesa-19.1.4/src/mesa/drivers/dri/i965/intel_mipmap_tree.c:1293: intel_miptree_match_image: Zusicherung »image->TexObject->Target == mt->target« nicht erfüllt.

That’s the likely root cause to me (in which case it may be unrelated to
this <https://issues.guix.gnu.org/issue/36924>, after all.)

I found these bug reports:

  https://bugs.freedesktop.org/show_bug.cgi?id=107117
  https://bugzilla.redhat.com/show_bug.cgi?id=1678334

In both cases, Xfce and Mesa’s i965 drivers are involved, as is the case
on your machine.  The 2nd bug report includes an xfwm4 patch, even.

I wonder if Xfce before the recent updates (so before
8549e0ca6fd68a57253471436de49b88b2d47e64) works better.

Andreas, if you feel like it, could you try:

  guix pull --commit=97ce5964fb5d52cf2151fea685e28fa23a98b264
  sudo guix system reconfigure …

?

Thanks,
Ludo’.

^ permalink raw reply	[flat|nested] 22+ messages in thread

* bug#36924: Mesa/GDM/XFCE
  2019-09-12 11:40   ` Ludovic Courtès
@ 2019-09-16  9:44     ` Andreas Enge
  2019-09-16 14:57       ` L p R n d n
  0 siblings, 1 reply; 22+ messages in thread
From: Andreas Enge @ 2019-09-16  9:44 UTC (permalink / raw)
  To: Ludovic Courtès; +Cc: 36924, L p R n d n

Hello,

On Thu, Sep 12, 2019 at 01:40:09PM +0200, Ludovic Courtès wrote:
> Thanks for the report, Andreas!

and thanks for the time spent putting me on the good track!

> Andreas Enge <andreas@enge.fr> skribis:
> > xfwm4: ../mesa-19.1.4/src/mesa/drivers/dri/i965/intel_mipmap_tree.c:1293: intel_miptree_match_image: Zusicherung »image->TexObject->Target == mt->target« nicht erfüllt.
> That’s the likely root cause to me (in which case it may be unrelated to
> this <https://issues.guix.gnu.org/issue/36924>, after all.)
> I found these bug reports:
>   https://bugs.freedesktop.org/show_bug.cgi?id=107117
>   https://bugzilla.redhat.com/show_bug.cgi?id=1678334
> 
> In both cases, Xfce and Mesa’s i965 drivers are involved, as is the case
> on your machine.  The 2nd bug report includes an xfwm4 patch, even.

The first one also contains a patch, but it has been integrated into later
mesa releases, in particular the one we are using.

> I wonder if Xfce before the recent updates (so before
> 8549e0ca6fd68a57253471436de49b88b2d47e64) works better.
> Andreas, if you feel like it, could you try:
>   guix pull --commit=97ce5964fb5d52cf2151fea685e28fa23a98b264
>   sudo guix system reconfigure …

Indeed, the problem disappears with this commit; I can log in and out
and in again with xfce working. So I am cc-ing the author of the commits
updating xfce, maybe they have an answer!

And I will try to look at the patch in the second report you reference
above.

Thanks!

Andreas

^ permalink raw reply	[flat|nested] 22+ messages in thread

* bug#36924: Mesa/GDM/XFCE
  2019-09-16  9:44     ` Andreas Enge
@ 2019-09-16 14:57       ` L p R n d n
  0 siblings, 0 replies; 22+ messages in thread
From: L p R n d n @ 2019-09-16 14:57 UTC (permalink / raw)
  To: Andreas Enge; +Cc: 36924

Hello,

Andreas Enge <andreas@enge.fr> writes:

> Hello,
>
> On Thu, Sep 12, 2019 at 01:40:09PM +0200, Ludovic Courtès wrote:
>> Thanks for the report, Andreas!
>
> and thanks for the time spent putting me on the good track!
>
>> Andreas Enge <andreas@enge.fr> skribis:
>> > xfwm4: ../mesa-19.1.4/src/mesa/drivers/dri/i965/intel_mipmap_tree.c:1293:
>> intel_miptree_match_image: Zusicherung »image->TexObject->Target ==
>> mt->target« nicht erfüllt.
>> That’s the likely root cause to me (in which case it may be unrelated to
>> this <https://issues.guix.gnu.org/issue/36924>, after all.)
>> I found these bug reports:
>>   https://bugs.freedesktop.org/show_bug.cgi?id=107117
>>   https://bugzilla.redhat.com/show_bug.cgi?id=1678334
>> 
>> In both cases, Xfce and Mesa’s i965 drivers are involved, as is the case
>> on your machine.  The 2nd bug report includes an xfwm4 patch, even.
>
> The first one also contains a patch, but it has been integrated into later
> mesa releases, in particular the one we are using.
>
>> I wonder if Xfce before the recent updates (so before
>> 8549e0ca6fd68a57253471436de49b88b2d47e64) works better.
>> Andreas, if you feel like it, could you try:
>>   guix pull --commit=97ce5964fb5d52cf2151fea685e28fa23a98b264
>>   sudo guix system reconfigure …
>
> Indeed, the problem disappears with this commit; I can log in and out
> and in again with xfce working. So I am cc-ing the author of the commits
> updating xfce, maybe they have an answer!

It seems some bugs have been introduced in xfwm4 between 4.12 and 4.14.
(All issues previously linked are for >=4.13 wich was the dev version of
4.14).
I found https://forum.xfce.org/viewtopic.php?id=13233 which seems
interesting. Please let us know if it changes anything.

I don't know what would be the correct way to deal with the problem in
guix though.

> And I will try to look at the patch in the second report you reference
> above.
>
> Thanks!
>
> Andreas

Have a nice day,

L  p r n  d n

^ permalink raw reply	[flat|nested] 22+ messages in thread

* bug#36924: Xfce not starting
  2019-08-04 21:00 fixing GDM + GNOME Shell Ricardo Wurmus
                   ` (3 preceding siblings ...)
  2019-09-12  9:54 ` bug#36924: Mesa/GDM/XFCE Andreas Enge
@ 2019-12-27  7:25 ` Andreas Enge
  2019-12-30 19:00   ` Ludovic Courtès
  2022-03-23 11:28 ` bug#36924: GDM, GNOME Shell, etc. break when there are stale caches zimoun
                   ` (2 subsequent siblings)
  7 siblings, 1 reply; 22+ messages in thread
From: Andreas Enge @ 2019-12-27  7:25 UTC (permalink / raw)
  To: 36924

Hello,

after trying to reconfigure with commit 02b6382169192367e97a2d1bc72f8eb3ed38b0dc
of December 9, I am now running into a problem where I cannot log into my xfce
session under gdm any more: According to the first tty, a session is opened
and closed immediately again, and the gdm login screen reappears.

It is not enough to delete /var/lib/gdm, ~/.cache and ~/.local. Could I try
anything else?

Luckily, there is "guix system rollback" to my working configuration of
September, but I am not very comfortable with running such an old system...

Andreas

^ permalink raw reply	[flat|nested] 22+ messages in thread

* bug#36924: Xfce not starting
  2019-12-27  7:25 ` bug#36924: Xfce not starting Andreas Enge
@ 2019-12-30 19:00   ` Ludovic Courtès
  0 siblings, 0 replies; 22+ messages in thread
From: Ludovic Courtès @ 2019-12-30 19:00 UTC (permalink / raw)
  To: Andreas Enge; +Cc: 36924

Hi Andreas,

Andreas Enge <andreas@enge.fr> skribis:

> after trying to reconfigure with commit 02b6382169192367e97a2d1bc72f8eb3ed38b0dc
> of December 9, I am now running into a problem where I cannot log into my xfce
> session under gdm any more: According to the first tty, a session is opened
> and closed immediately again, and the gdm login screen reappears.

Did you try your config with the same commit in ‘guix system vm’?  Does
it reproduce the problem?

If it does not, that means the problem has to do with state, things like
/var/lib/gdm as you mentioned.

Thanks,
Ludo’.

^ permalink raw reply	[flat|nested] 22+ messages in thread

* bug#36924: GDM, GNOME Shell, etc. break when there are stale caches
  2019-08-04 21:00 fixing GDM + GNOME Shell Ricardo Wurmus
                   ` (4 preceding siblings ...)
  2019-12-27  7:25 ` bug#36924: Xfce not starting Andreas Enge
@ 2022-03-23 11:28 ` zimoun
       [not found]   ` <95cef7888b04a157f3ceb0ef40904f88a02c250b.camel@gmail.com>
  2022-07-04 20:44 ` Ludovic via web
  2022-07-04 21:38 ` reyman via web
  7 siblings, 1 reply; 22+ messages in thread
From: zimoun @ 2022-03-23 11:28 UTC (permalink / raw)
  To: Ricardo Wurmus; +Cc: guix-devel, 36924

Hi,

This old bug [1] is there since a long time.  What is the status?

1: <http://issues.guix.gnu.org/issue/36924>


On Sun, 04 Aug 2019 at 23:00, Ricardo Wurmus <rekado@elephly.net> wrote:

> Today I again couldn’t log into my workstation after upgrading the
> system.  I’m using GDM + GNOME Shell.
>
> At first GDM wouldn’t start.  I knew what to do: remove /var/lib/gdm,
> because some state must have accumulated there.
>
> GDM came up after a reboot, but I still couldn’t log in.  Instead I was
> thrown back to the login screen without any error message.  I looked in
> ~/.cache/gdm/session.log for information, but it only told me that
> gnome-shell was killed.  Thanks.
>
> After removing both .local/share and .cache out of the way I could log
> in again.
>
> This happens whenever I upgrade the system.  This makes the system
> rather frustrating to use.  I don’t know if booting into an older system
> generation would result in the same problem, but my guess is that it
> would because both GDM and GNOME Shell appear to be leaving some binary
> files behind that cause different versions to crash unceremoneously.
>
> What can we do to make GDM and GNOME Shell more reliable?

Is it still an issue?


Cheers,
simon




^ permalink raw reply	[flat|nested] 22+ messages in thread

* bug#36924: GDM, GNOME Shell, etc. break when there are stale caches
       [not found]   ` <95cef7888b04a157f3ceb0ef40904f88a02c250b.camel@gmail.com>
@ 2022-03-23 22:14     ` zimoun
  2022-06-23  9:26       ` zimoun
  0 siblings, 1 reply; 22+ messages in thread
From: zimoun @ 2022-03-23 22:14 UTC (permalink / raw)
  To: Liliana Marie Prikler, Ricardo Wurmus; +Cc: 36924

Hi Maxime and Liliana,

On Wed, 23 Mar 2022 at 13:48, Maxime Devos <maximedevos@telenet.be> wrote:
> zimoun schreef op wo 23-03-2022 om 12:28 [+0100]:

>> Is it still an issue?

> IIRC, I encountered the same symptom (although perhaps with a different
> cause, and I did not know if was caused by upgrades) last time I used
> Guix System, which was in the 2022 or at least 2021, so I think it
> might still be an issue.  Or maybe it has been solved since then.


On Wed, 23 Mar 2022 at 21:22, Liliana Marie Prikler <liliana.prikler@gmail.com> wrote:
> Am Mittwoch, dem 23.03.2022 um 12:28 +0100 schrieb zimoun:

>> Is it still an issue?

> If I recall correctly, the offending caches have not been updated
> since, so the short answer is "we don't know".  The files in my
> /var/lib/gdm have some quite old dates, some of them ranging as far
> back as 2019, so I suppose there still exists an issue potential.


Thanks for your feedback.

Hum, do we keep a report open based on « maybe » or « we don’t know » or
« I suppose »?  It is an honest question and not a rhetoric one. :-)

Well, how is this bug report actionable?  Other said, what is missing as
concrete information for closing.

From my understanding of your feedback, the current answer to « Is it
still an issue? » seems « no ».  It does not mean that a bug is not
around – so many bugs are around ;-) – but it means that this bug is not
a blocking issue, again from my understanding.

Could you confirm that the bug is appearing for you?  Else, let close it
and reopen once the bug appears.  WDYT?


Cheers,
simon





^ permalink raw reply	[flat|nested] 22+ messages in thread

* bug#36924: GDM, GNOME Shell, etc. break when there are stale caches
  2022-03-23 22:14     ` zimoun
@ 2022-06-23  9:26       ` zimoun
  2022-06-23 10:07         ` Ricardo Wurmus
  0 siblings, 1 reply; 22+ messages in thread
From: zimoun @ 2022-06-23  9:26 UTC (permalink / raw)
  To: Liliana Marie Prikler; +Cc: Ricardo Wurmus, 36924

Hi,

On Wed, 23 Mar 2022 at 23:14, zimoun <zimon.toutoune@gmail.com> wrote:

> Hum, do we keep a report open based on « maybe » or « we don’t know » or
> « I suppose »?  It is an honest question and not a rhetoric one. :-)
>
> Well, how is this bug report actionable?  Other said, what is missing as
> concrete information for closing.
>
> From my understanding of your feedback, the current answer to « Is it
> still an issue? » seems « no ».  It does not mean that a bug is not
> around – so many bugs are around ;-) – but it means that this bug is not
> a blocking issue, again from my understanding.
>
> Could you confirm that the bug is appearing for you?  Else, let close it
> and reopen once the bug appears.  WDYT?

I am proposing to close if no objection.


Cheers,
simon




^ permalink raw reply	[flat|nested] 22+ messages in thread

* bug#36924: GDM, GNOME Shell, etc. break when there are stale caches
  2022-06-23  9:26       ` zimoun
@ 2022-06-23 10:07         ` Ricardo Wurmus
  2022-10-08 14:47           ` zimoun
  0 siblings, 1 reply; 22+ messages in thread
From: Ricardo Wurmus @ 2022-06-23 10:07 UTC (permalink / raw)
  To: zimoun; +Cc: 36924, Liliana Marie Prikler


zimoun <zimon.toutoune@gmail.com> writes:

> Hi,
>
> On Wed, 23 Mar 2022 at 23:14, zimoun <zimon.toutoune@gmail.com> wrote:
>
>> Hum, do we keep a report open based on « maybe » or « we don’t know » or
>> « I suppose »?  It is an honest question and not a rhetoric one. :-)
>>
>> Well, how is this bug report actionable?  Other said, what is missing as
>> concrete information for closing.
>>
>> From my understanding of your feedback, the current answer to « Is it
>> still an issue? » seems « no ».  It does not mean that a bug is not
>> around – so many bugs are around ;-) – but it means that this bug is not
>> a blocking issue, again from my understanding.
>>
>> Could you confirm that the bug is appearing for you?  Else, let close it
>> and reopen once the bug appears.  WDYT?
>
> I am proposing to close if no objection.

I agree because it is not actionable as it is now.

-- 
Ricardo




^ permalink raw reply	[flat|nested] 22+ messages in thread

* bug#36924: GDM, GNOME Shell, etc. break when there are stale caches
  2019-08-04 21:00 fixing GDM + GNOME Shell Ricardo Wurmus
                   ` (5 preceding siblings ...)
  2022-03-23 11:28 ` bug#36924: GDM, GNOME Shell, etc. break when there are stale caches zimoun
@ 2022-07-04 20:44 ` Ludovic via web
  2022-07-04 21:38 ` reyman via web
  7 siblings, 0 replies; 22+ messages in thread
From: Ludovic via web @ 2022-07-04 20:44 UTC (permalink / raw)
  To: 36924

Test (ignore).




^ permalink raw reply	[flat|nested] 22+ messages in thread

* bug#36924: GDM, GNOME Shell, etc. break when there are stale caches
  2019-08-04 21:00 fixing GDM + GNOME Shell Ricardo Wurmus
                   ` (6 preceding siblings ...)
  2022-07-04 20:44 ` Ludovic via web
@ 2022-07-04 21:38 ` reyman via web
  7 siblings, 0 replies; 22+ messages in thread
From: reyman via web @ 2022-07-04 21:38 UTC (permalink / raw)
  To: 36924

Hi there
After removing `gdm login` using a transformer and forget to modify/amend it into build-custom-services i break my system : 

(define-public %dm/system-services
  (append (build-custom-services identity)
            (modify-services %desktop-services
            (delete gdm-service-type))))

My gnome crash, and when i even when i try to roll-back, it was impossible to login, my screen freeze at login/password, just before gnome start.

Error in message : 

ul  4 17:44:11 localhost elogind[427]: New session c1 of user gdm.
Jul  4 17:44:11 localhost gdm-session-worker: GLib-GObject: g_object_unref: assertion 'G_IS_OBJECT (object)' failed 
Jul  4 17:44:11 localhost gdm: Gdm: GdmDisplay: Session never registered, failing 
Jul  4 17:44:11 localhost elogind[427]: Removed session c1.
Jul  4 17:44:11 localhost gdm: Gdm: Child process -552 was already dead. 
Jul  4 17:44:11 localhost gdm: Gdm: GdmDisplay: Session never registered, failing 
Jul  4 17:44:11 localhost gdm: Gdm: Child process -552 was already dead. 

Removing /var/lib/gdm and mkdir gdm, rebooting with rollback solving the problem. 

during a guix system reconfigure




^ permalink raw reply	[flat|nested] 22+ messages in thread

* bug#36924: GDM, GNOME Shell, etc. break when there are stale caches
  2022-06-23 10:07         ` Ricardo Wurmus
@ 2022-10-08 14:47           ` zimoun
  2022-10-08 16:04             ` Liliana Marie Prikler
  2022-11-17 22:39             ` Maxim Cournoyer
  0 siblings, 2 replies; 22+ messages in thread
From: zimoun @ 2022-10-08 14:47 UTC (permalink / raw)
  To: Ricardo Wurmus; +Cc: 36924, Liliana Marie Prikler

Hi,

On Thu, 23 Jun 2022 at 12:07, Ricardo Wurmus <rekado@elephly.net> wrote:

>> I am proposing to close if no objection.
>
> I agree because it is not actionable as it is now.

Therefore, after some months without an objection, I am closing this old
bug#36924 [1].  If I am missing a point, feel free to reopen.

1: <http://issues.guix.gnu.org/issue/36924>

Cheers,
simon




^ permalink raw reply	[flat|nested] 22+ messages in thread

* bug#36924: GDM, GNOME Shell, etc. break when there are stale caches
  2022-10-08 14:47           ` zimoun
@ 2022-10-08 16:04             ` Liliana Marie Prikler
  2022-11-17 22:39             ` Maxim Cournoyer
  1 sibling, 0 replies; 22+ messages in thread
From: Liliana Marie Prikler @ 2022-10-08 16:04 UTC (permalink / raw)
  To: zimoun, Ricardo Wurmus; +Cc: 36924

Am Samstag, dem 08.10.2022 um 16:47 +0200 schrieb zimoun:
> Hi,
> 
> On Thu, 23 Jun 2022 at 12:07, Ricardo Wurmus <rekado@elephly.net>
> wrote:
> 
> > > I am proposing to close if no objection.
> > 
> > I agree because it is not actionable as it is now.
> 
> Therefore, after some months without an objection, I am closing this
> old bug#36924 [1].  If I am missing a point, feel free to reopen.
The GDM one in fact got fixed by moving the cache to a tmpfs.

Cheers




^ permalink raw reply	[flat|nested] 22+ messages in thread

* bug#36924: GDM, GNOME Shell, etc. break when there are stale caches
  2022-10-08 14:47           ` zimoun
  2022-10-08 16:04             ` Liliana Marie Prikler
@ 2022-11-17 22:39             ` Maxim Cournoyer
  2022-11-18  7:57               ` zimoun
  1 sibling, 1 reply; 22+ messages in thread
From: Maxim Cournoyer @ 2022-11-17 22:39 UTC (permalink / raw)
  To: zimoun; +Cc: Ricardo Wurmus, 36924-done, Liliana Marie Prikler

Hi,

zimoun <zimon.toutoune@gmail.com> writes:

> Hi,
>
> On Thu, 23 Jun 2022 at 12:07, Ricardo Wurmus <rekado@elephly.net> wrote:
>
>>> I am proposing to close if no objection.
>>
>> I agree because it is not actionable as it is now.
>
> Therefore, after some months without an objection, I am closing this old
> bug#36924 [1].  If I am missing a point, feel free to reopen.
>
> 1: <http://issues.guix.gnu.org/issue/36924>

Seems your closing didn't work, so I'm retrying here.  I suspect
d7e56aebec4535f3567c362b6084818873e54b0d ("Mount /var/lib/gdm on a tmpfs
file system") probably helped making this kind of issue go away.

-- 
Thanks,
Maxim




^ permalink raw reply	[flat|nested] 22+ messages in thread

* bug#36924: GDM, GNOME Shell, etc. break when there are stale caches
  2022-11-17 22:39             ` Maxim Cournoyer
@ 2022-11-18  7:57               ` zimoun
  0 siblings, 0 replies; 22+ messages in thread
From: zimoun @ 2022-11-18  7:57 UTC (permalink / raw)
  To: Maxim Cournoyer; +Cc: Ricardo Wurmus, 36924-done, Liliana Marie Prikler

Hi Maxim,

On Thu, 17 Nov 2022 at 17:39, Maxim Cournoyer <maxim.cournoyer@gmail.com> wrote:

> Seems your closing didn't work, so I'm retrying here.

Oh, thanks.  I probably missed to append -done. :-)

Cheers,
simon





^ permalink raw reply	[flat|nested] 22+ messages in thread

end of thread, other threads:[~2022-11-18 14:04 UTC | newest]

Thread overview: 22+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2019-08-04 21:00 fixing GDM + GNOME Shell Ricardo Wurmus
2019-08-05  7:17 ` Efraim Flashner
2019-08-05 14:36   ` bug#36924: " Ricardo Wurmus
2019-08-06 16:12 ` Mark H Weaver
     [not found] ` <87k1bqgtn1.fsf@netris.org>
2019-08-06 18:08   ` Ricardo Wurmus
     [not found]   ` <87sgqexj2k.fsf@elephly.net>
2019-08-08  2:59     ` Timothy Sample
2019-09-12  9:54 ` bug#36924: Mesa/GDM/XFCE Andreas Enge
2019-09-12 11:40   ` Ludovic Courtès
2019-09-16  9:44     ` Andreas Enge
2019-09-16 14:57       ` L p R n d n
2019-12-27  7:25 ` bug#36924: Xfce not starting Andreas Enge
2019-12-30 19:00   ` Ludovic Courtès
2022-03-23 11:28 ` bug#36924: GDM, GNOME Shell, etc. break when there are stale caches zimoun
     [not found]   ` <95cef7888b04a157f3ceb0ef40904f88a02c250b.camel@gmail.com>
2022-03-23 22:14     ` zimoun
2022-06-23  9:26       ` zimoun
2022-06-23 10:07         ` Ricardo Wurmus
2022-10-08 14:47           ` zimoun
2022-10-08 16:04             ` Liliana Marie Prikler
2022-11-17 22:39             ` Maxim Cournoyer
2022-11-18  7:57               ` zimoun
2022-07-04 20:44 ` Ludovic via web
2022-07-04 21:38 ` reyman via web

Code repositories for project(s) associated with this public inbox

	https://git.savannah.gnu.org/cgit/guix.git

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).