Lately I've been having trouble with Bookworm, on both a Pi5
and a Pi2B (32 bit), in which the Raspberry menu is used to
launch applications but seemingly nothing happens. No error
message pops up, it's as if I never even tried. Presumably
something had a fatal error, but where should I look for
the epitaph?
This happens most often with Firefox and Chromium browsers,
but occasionally happens with things like LX Terminal, which
I'd expect to be more robust.
There doesn't seem to be a /var/log/messages, as I'm accustomed
to checking, and ISTR Windows used a dedicated application for
watching system messages. Is there such a beast in Bookworm?
I haven't yet hooked up a serial console cable but could if that's
the only way to see what happened.
Thanks for reading!
bob prohaska
bp@www.zefox.net writes:
Lately I've been having trouble with Bookworm, on both a Pi5
and a Pi2B (32 bit), in which the Raspberry menu is used to
launch applications but seemingly nothing happens. No error
message pops up, it's as if I never even tried. Presumably
something had a fatal error, but where should I look for
the epitaph?
This happens most often with Firefox and Chromium browsers,
but occasionally happens with things like LX Terminal, which
I'd expect to be more robust.
There doesn't seem to be a /var/log/messages, as I'm accustomed
to checking, and ISTR Windows used a dedicated application for
watching system messages. Is there such a beast in Bookworm?
Standard error from applications launched from the desktop historically
(and at least to some extent, still) goes to a file in your home
directory. Watch it with:
tail -f ~/.xsession-errors
Some things log to the user journal:
journalctl --user --follow
Depending on the cause of the problem the kernel log may also be
informative:
journalctl --dmesg --follow
Lately I've been having trouble with Bookworm, on both a Pi5
and a Pi2B (32 bit), in which the Raspberry menu is used to
launch applications but seemingly nothing happens. No error
message pops up, it's as if I never even tried. Presumably
something had a fatal error, but where should I look for
the epitaph?
This happens most often with Firefox and Chromium browsers,
but occasionally happens with things like LX Terminal, which
I'd expect to be more robust.
There doesn't seem to be a /var/log/messages, as I'm accustomed
to checking, and ISTR Windows used a dedicated application for
watching system messages. Is there such a beast in Bookworm?
Unfortunately due an onset of idiocy at Pi towers, starting with
Bookworm they chose to remove rsyslog and it's look-at-with-anything
textual logs, leaving you with the aberration of journald binary
logging and the need to learn the incomprehensible incantations of journalctl.
Luckily you can readily reinstall the righteous rsyslog package, so
it works like Linux (and UNIX) is meant to work.
bp@www.zefox.net writes:
Lately I've been having trouble with Bookworm, on both a Pi5
and a Pi2B (32 bit), in which the Raspberry menu is used to
launch applications but seemingly nothing happens. No error
message pops up, it's as if I never even tried. Presumably
something had a fatal error, but where should I look for
the epitaph?
This happens most often with Firefox and Chromium browsers,
but occasionally happens with things like LX Terminal, which
I'd expect to be more robust.
There doesn't seem to be a /var/log/messages, as I'm accustomed
to checking, and ISTR Windows used a dedicated application for
watching system messages. Is there such a beast in Bookworm?
Standard error from applications launched from the desktop historically
(and at least to some extent, still) goes to a file in your home
directory. Watch it with:
tail -f ~/.xsession-errors
Some things log to the user journal:
journalctl --user --follow
Depending on the cause of the problem the kernel log may also be
informative:
journalctl --dmesg --follow
On Thu, 9 Jul 2026 18:40:37 +0100, druck wrote:
Unfortunately due an onset of idiocy at Pi towers, starting with
Bookworm they chose to remove rsyslog and it's look-at-with-anything textual logs, leaving you with the aberration of journald binary
logging and the need to learn the incomprehensible incantations of journalctl.
Luckily you can readily reinstall the righteous rsyslog package, so
it works like Linux (and UNIX) is meant to work.
Or you could run some other distro whose defaults are more to your
liking. Gods forbid you might have to make configuration changes
afterwards, eh?
I manage 13 (I just counted them) systems of my own running a mix of
Raspbian (or whatever it's called now), Debian and a couple of
Ubuntu.
One thing in particular is that **all** systems have logging
switched from systemd's journal to rsyslog.
bp@www.zefox.net wrote:
There doesn't seem to be a /var/log/messages, as I'm accustomed
to checking, and ISTR Windows used a dedicated application for
watching system messages. Is there such a beast in Bookworm?
Unfortunately due an onset of idiocy at Pi towers, starting with
Bookworm they chose to remove rsyslog and it's look-at-with-anything
textual logs,
leaving you with the aberration of journald binary logging and the
need to learn the incomprehensible incantations of journalctl.
Luckily you can readily reinstall the righteous rsyslog package, so it
works like Linux (and UNIX) is meant to work.
On Fri, 10 Jul 2026 08:42:08 +0100, Chris Green wrote:
I manage 13 (I just counted them) systems of my own running a mix of Raspbian (or whatever it's called now), Debian and a couple of
Ubuntu.
One thing in particular is that **all** systems have logging
switched from systemd's journal to rsyslog.
I?m sure that works OK for system logging (except for the timestamp
issue).
But remember, the systemd journal works for per-user-session logging,
too.
Lawrence D?Oliveiro <ldo@nz.invalid> wrote:
On Fri, 10 Jul 2026 08:42:08 +0100, Chris Green wrote:
One thing in particular is that **all** systems have logging
switched from systemd's journal to rsyslog.
I?m sure that works OK for system logging (except for the timestamp
issue).
But remember, the systemd journal works for per-user-session logging,
too.
Since I'm the only user 'per-user' logging isn't all that significant.
That's the easy stuff, compare journald.conf with logrotate, and
then find that half the vacuum options don't even work correctly. I
have to manually clean out in-memory logs every few weeks so it
doesn't get full, which affects random stuff.
After opening windows with all three commands running I tried to
start a program that sometimes fails silently. In this particular
case it didn't fail, starting normally. However, no extra output
was displayed in any of the monitoring windows. Should I have
seen any output from any of these commands during a successful
application start?
FWIW, the command run was from the raspberry>accessories menu,
it's called owon-vds-tiny and it runs control software for a
USB oscilloscope. When run from the command line it emits
a considerable flow of status information to the controlling
terminal.
Richard Kettlewell <invalid@invalid.invalid> wrote:
bp@www.zefox.net writes:
Lately I've been having trouble with Bookworm, on both a Pi5
and a Pi2B (32 bit), in which the Raspberry menu is used to
launch applications but seemingly nothing happens. No error
message pops up, it's as if I never even tried. Presumably
something had a fatal error, but where should I look for
the epitaph?
This happens most often with Firefox and Chromium browsers,
but occasionally happens with things like LX Terminal, which
I'd expect to be more robust.
There doesn't seem to be a /var/log/messages, as I'm accustomed
to checking, and ISTR Windows used a dedicated application for
watching system messages. Is there such a beast in Bookworm?
Standard error from applications launched from the desktop historically
(and at least to some extent, still) goes to a file in your home
directory. Watch it with:
tail -f ~/.xsession-errors
Some things log to the user journal:
journalctl --user --follow
Depending on the cause of the problem the kernel log may also be
informative:
journalctl --dmesg --follow
Thank you!!!
On 15/07/2026 21:56, Lawrence D?Oliveiro wrote:
On Wed, 15 Jul 2026 17:49:13 +0100, druck wrote:
That's the easy stuff, compare journald.conf with logrotate, and
then find that half the vacuum options don't even work correctly.
I have to manually clean out in-memory logs every few weeks so it
doesn't get full, which affects random stuff.
Never had any trouble with the systemd journal. None whatsoever.
Whether on client machines (running Debian Stable), or my own
(running Debian Unstable).
Well bravo, that proves it must be 100% perfect on a sample size of
1.
I suspect the problem is with your distro.
No, its the same one the vast majority of people use.
I've even had a bug report given the usual Peottering response to
the most glaring or errors; "Not a bug - wont fix".
bp@www.zefox.net writes:
After opening windows with all three commands running I tried to
start a program that sometimes fails silently. In this particular
case it didn't fail, starting normally. However, no extra output
was displayed in any of the monitoring windows. Should I have
seen any output from any of these commands during a successful
application start?
Not necessarily. Some programs are chatty, but often if there?s nothing
wrong then there?s no output.
FWIW, the command run was from the raspberry>accessories menu,
it's called owon-vds-tiny and it runs control software for a
USB oscilloscope. When run from the command line it emits
a considerable flow of status information to the controlling
terminal.
You would expect that to go _somewhere_ when started from a menu, so if you?re not seeing it at all then there?s certainly a question to answer. (It?s possible, though, that it only generates output if connected to a terminal, or that it writes it to some logfile that you don?t currently
know about.)
For the very first time an error dialog box appeared yesterday. The formatting looked more like a Windows widget, so I think it
probably came from the application, not the system. It reported an "incompatible magic value nnn...nnn in class file java/util/....".
bp@www.zefox.net writes:
For the very first time an error dialog box appeared yesterday. The
formatting looked more like a Windows widget, so I think it
probably came from the application, not the system. It reported an
"incompatible magic value nnn...nnn in class file java/util/....".
Part of a Java library or application is corrupted.
On a Pi, the first guess would be that the SD card is on the way out.
On 18/07/2026 15:49, Richard Kettlewell wrote:
bp@www.zefox.net writes:Assuming one is actually in use...
For the very first time an error dialog box appeared yesterday. The
formatting looked more like a Windows widget, so I think it
probably came from the application, not the system. It reported an
"incompatible magic value nnn...nnn in class file java/util/....".
Part of a Java library or application is corrupted.
On a Pi, the first guess would be that the SD card is on the way out.
On 17/07/2026 02:13, Lawrence D?Oliveiro wrote:
On Fri, 17 Jul 2026 00:42:22 +0100, druck wrote:
On 15/07/2026 21:56, Lawrence D?Oliveiro wrote:
I suspect the problem is with your distro.
No, its the same one the vast majority of people use.
There is no Linux distro that ?the vast majority of people use?.
On a Raspberry Pi group, the majority use Raspberry Pi OS.
Do you even use one, or just come here to shit post?
---druck
FWIW, the command run was from the raspberry>accessories menu,
it's called owon-vds-tiny and it runs control software for a
USB oscilloscope. When run from the command line it emits
a considerable flow of status information to the controlling
terminal.
On 17/07/2026 02:13, Lawrence D?Oliveiro wrote:
On Fri, 17 Jul 2026 00:42:22 +0100, druck wrote:
On 15/07/2026 21:56, Lawrence D?Oliveiro wrote:
I suspect the problem is with your distro.
No, its the same one the vast majority of people use.
There is no Linux distro that ?the vast majority of people use?.
On a Raspberry Pi group, the majority use Raspberry Pi OS.
Do you even use one, or just come here to shit post?
| Sysop: | Eric Oulashin |
|---|---|
| Location: | Beaverton, Oregon, USA |
| Users: | 104 |
| Nodes: | 16 (0 / 16) |
| Uptime: | 02:05:50 |
| Calls: | 8,746 |
| Files: | 9,530 |
| D/L today: |
125 files (38,164K bytes) |
| Messages: | 418,544 |