GNU bug report logs -
#62217
Ungoogled-chromium doesn't launch with linux 6.2
Previous Next
Reported by: Nicolas Graves <ngraves <at> ngraves.fr>
Date: Thu, 16 Mar 2023 08:09:01 UTC
Severity: normal
Done: Nicolas Graves <ngraves <at> ngraves.fr>
Bug is archived. No further changes may be made.
To add a comment to this bug, you must first unarchive it, by sending
a message to control AT debbugs.gnu.org, with unarchive 62217 in the body.
You can then email your comments to 62217 AT debbugs.gnu.org in the normal way.
Toggle the display of automated, internal messages from the tracker.
Report forwarded
to
bug-guix <at> gnu.org
:
bug#62217
; Package
guix
.
(Thu, 16 Mar 2023 08:09:01 GMT)
Full text and
rfc822 format available.
Acknowledgement sent
to
Nicolas Graves <ngraves <at> ngraves.fr>
:
New bug report received and forwarded. Copy sent to
bug-guix <at> gnu.org
.
(Thu, 16 Mar 2023 08:09:02 GMT)
Full text and
rfc822 format available.
Message #5 received at submit <at> debbugs.gnu.org (full text, mbox):
Hi!
I've updated linux to version 6.2.2 (the nonfree version), and since
then I can't launch ungoogled-chromium-wayland.
Nyxt or Firefox-like browsers work fine.
Here's what I tried :
guix shell gdb -- gdb /gnu/store/1jmlqw987ifnb3abr0s2hvihcg1n2xmx-ungoogled-chromium-wayland-109.0.5414.119-1/bin/chromium
yields
"/gnu/store/1jmlqw987ifnb3abr0s2hvihcg1n2xmx-ungoogled-chromium-wayland-109.0.5414.119-1/bin/chromium": not in executable format: file format not recognized
Thanks if you can fix this quickly.
--
Best regards,
Nicolas Graves
Information forwarded
to
bug-guix <at> gnu.org
:
bug#62217
; Package
guix
.
(Thu, 16 Mar 2023 09:37:01 GMT)
Full text and
rfc822 format available.
Message #8 received at 62217 <at> debbugs.gnu.org (full text, mbox):
[Message part 1 (text/plain, inline)]
Hi Nicolas,
Nicolas Graves via Bug reports for GNU Guix <bug-guix <at> gnu.org> writes:
> Hi!
>
> I've updated linux to version 6.2.2 (the nonfree version), and since
> then I can't launch ungoogled-chromium-wayland.
Can you reproduce in linux-libre? A `guix system vm` should be enough
to test this.
Best,
--
Josselin Poiret
[signature.asc (application/pgp-signature, inline)]
Information forwarded
to
bug-guix <at> gnu.org
:
bug#62217
; Package
guix
.
(Thu, 16 Mar 2023 14:59:01 GMT)
Full text and
rfc822 format available.
Message #11 received at 62217 <at> debbugs.gnu.org (full text, mbox):
On Thu, 16 Mar 2023, Nicolas Graves via Bug reports for GNU Guix wrote:
> "/gnu/store/1jmlqw987ifnb3abr0s2hvihcg1n2xmx-ungoogled-chromium-wayland-109.0.5414.119-1/bin/chromium": not in executable format: file format not recognized
I've run into this message in the past when my store got corrupted (in my
case it was a full disk on a computer that has other evil spirits living
in it as well). Can you check with `guix gc --verify=contents`? If it
reports anything, you might be able to repair it with `sudo guix gc
--verify=contents,repair`.
For what it's worth ungoogled-chromium works for me with Guix commit
5312d798ac36a72d8a977325a7c6ff7647be670a.
Best,
Jack
Information forwarded
to
bug-guix <at> gnu.org
:
bug#62217
; Package
guix
.
(Fri, 17 Mar 2023 17:50:01 GMT)
Full text and
rfc822 format available.
Message #14 received at 62217 <at> debbugs.gnu.org (full text, mbox):
Hi,
Jack Hill <jackhill <at> jackhill.us> writes:
> On Thu, 16 Mar 2023, Nicolas Graves via Bug reports for GNU Guix wrote:
>
>> "/gnu/store/1jmlqw987ifnb3abr0s2hvihcg1n2xmx-ungoogled-chromium-wayland-109.0.5414.119-1/bin/chromium":
>> not in executable format: file format not recognized
>
> I've run into this message in the past when my store got corrupted (in
> my case it was a full disk on a computer that has other evil spirits
> living in it as well). Can you check with `guix gc --verify=contents`?
> If it reports anything, you might be able to repair it with `sudo guix
> gc --verify=contents,repair`.
I believe the error is because chromium is a shell script wrapper and
not an ELF binary.
I used the following script for those:
--8<---------------cut here---------------start------------->8---
$ cat ~/.local/bin/run-gdb
#!/usr/bin/env bash
(
wrapper=$(cat $(which $1))
shift
. <(echo "$wrapper" | grep ^export)
binary=$(echo "$wrapper" | grep ^exec | grep -o -E '/gnu/store[^"]*')
gdb --args "$binary" "$@"
)
--8<---------------cut here---------------end--------------->8---
Then you can do:
--8<---------------cut here---------------start------------->8---
run-gdb chromium
--8<---------------cut here---------------end--------------->8---
Hope that helps,
--
Thanks,
Maxim
Information forwarded
to
bug-guix <at> gnu.org
:
bug#62217
; Package
guix
.
(Fri, 10 May 2024 09:47:01 GMT)
Full text and
rfc822 format available.
Message #17 received at 62217 <at> debbugs.gnu.org (full text, mbox):
I don't experience the issue anymore, closing it.
On 2023-03-17 13:49, Maxim Cournoyer wrote:
> Hi,
>
> Jack Hill <jackhill <at> jackhill.us> writes:
>
>> On Thu, 16 Mar 2023, Nicolas Graves via Bug reports for GNU Guix wrote:
>>
>>> "/gnu/store/1jmlqw987ifnb3abr0s2hvihcg1n2xmx-ungoogled-chromium-wayland-109.0.5414.119-1/bin/chromium":
>>> not in executable format: file format not recognized
>>
>> I've run into this message in the past when my store got corrupted (in
>> my case it was a full disk on a computer that has other evil spirits
>> living in it as well). Can you check with `guix gc --verify=contents`?
>> If it reports anything, you might be able to repair it with `sudo guix
>> gc --verify=contents,repair`.
>
> I believe the error is because chromium is a shell script wrapper and
> not an ELF binary.
>
> I used the following script for those:
>
> --8<---------------cut here---------------start------------->8---
> $ cat ~/.local/bin/run-gdb
> #!/usr/bin/env bash
>
> (
> wrapper=$(cat $(which $1))
> shift
> . <(echo "$wrapper" | grep ^export)
> binary=$(echo "$wrapper" | grep ^exec | grep -o -E '/gnu/store[^"]*')
> gdb --args "$binary" "$@"
> )
> --8<---------------cut here---------------end--------------->8---
>
> Then you can do:
>
> --8<---------------cut here---------------start------------->8---
> run-gdb chromium
> --8<---------------cut here---------------end--------------->8---
>
> Hope that helps,
--
Best regards,
Nicolas Graves
bug closed, send any further explanations to
62217 <at> debbugs.gnu.org and Nicolas Graves <ngraves <at> ngraves.fr>
Request was from
Nicolas Graves <ngraves <at> ngraves.fr>
to
control <at> debbugs.gnu.org
.
(Fri, 10 May 2024 09:47:02 GMT)
Full text and
rfc822 format available.
bug archived.
Request was from
Debbugs Internal Request <help-debbugs <at> gnu.org>
to
internal_control <at> debbugs.gnu.org
.
(Fri, 07 Jun 2024 11:24:08 GMT)
Full text and
rfc822 format available.
This bug report was last modified 336 days ago.
Previous Next
GNU bug tracking system
Copyright (C) 1999 Darren O. Benham,
1997,2003 nCipher Corporation Ltd,
1994-97 Ian Jackson.