this post was submitted on 06 Nov 2023
19 points (95.2% liked)

Linux

47361 readers
1576 users here now

From Wikipedia, the free encyclopedia

Linux is a family of open source Unix-like operating systems based on the Linux kernel, an operating system kernel first released on September 17, 1991 by Linus Torvalds. Linux is typically packaged in a Linux distribution (or distro for short).

Distributions include the Linux kernel and supporting system software and libraries, many of which are provided by the GNU Project. Many Linux distributions use the word "Linux" in their name, but the Free Software Foundation uses the name GNU/Linux to emphasize the importance of GNU software, causing some controversy.

Rules

Related Communities

Community icon by Alpár-Etele Méder, licensed under CC BY 3.0

founded 5 years ago
MODERATORS
 

My laptop seems very finicky with linux and enjoys periodically freezing. Some distributions are more stable than others and I'd like to keep testing other distributions without reinstalling/ downloading/transferring all my apps and steam games constantly.

What I would like to achieve is to have my small handful of flatpak apps and flatpak steam games on a separate partition to quickly access while I test and troubleshoot issues.

Is that possible to do with flatpaks?

you are viewing a single comment's thread
view the rest of the comments
[–] [email protected] 4 points 10 months ago (1 children)

I've spoken to another user who has the same issue as me and they made a couple suggestions including disabling certain options in BIOS or trying a distribution with a newer kernel.

At first I thought it was issues with iGPU and dGPU switching but I'm beginning to suspect that's not the case.

Reproducing when it freezes is a challenge because it's very inconsistent and does not leave and crash reports.

The only improvement I've seen yet is switching from Linux Mint 21.2 to LMDE 6 but the kernel is still older compared to the versions that I was suggested for my hardware.

I would like to try a newer kernel just for the sake of trying.

[–] [email protected] 8 points 10 months ago* (last edited 10 months ago) (2 children)

I feel you. The bugs that get the machine to crash and you have zero chance of getting any useful debug information, are by far the most annoying ones.

In my experience it's most of the time some driver issues in the kernel or the (NVidia) proprietary drivers. Or an hardware issue. On Debian I can install several kernel versions alongside each other. So there would be no need for me to install more than one distribution. Most of the times a proper crash isn't caused by the userspace anyways, so it boils down to the different kernel versions and configurations anyways. You could also try an older kernel.

[–] [email protected] 1 points 10 months ago* (last edited 10 months ago) (1 children)

To this day I have no idea how to even get journalctl errors from exactly before that crash.

Like all this journalctl -r -b 1 and all that doesnt seem to show the right ones.

[–] [email protected] 1 points 10 months ago* (last edited 10 months ago)

On my debian machine something like journalctl -b 1 -k shows stuff. There's also lots of debug files in /var/log/ like boot.log debug, kern.log, messages, syslog.

But it somehow needs to be able to store the log on your disk. If the system craps out completely, it won't get written to disk. The magic SysRequest keys might help if it only freezes. I learned "Raising elephants is so utterly boring." You might wanna goggle that and learn how to do it.

Other than that, I mostly look at all logs (no '-b1' and search for the place where it rebooted. Sometimes you find other related stuff while scrolling. But my own (old) thinkpad doesn't ever crash.

I think there are other crash-dump tools available. It believe there's something called 'kdump-tools' available on Debian. YMMV.

[–] [email protected] 1 points 10 months ago (2 children)

I have an AMD + AMD setup but apparently the Dell G5 series has issues with linux so it's been an uphill challenge.

I did see that LMDE 6 makes it easy to boot different kernels at startup which is handy. I tried looking at Liquorix Kernel but I don't think it's ready for LMDE 6 just yet. I can't recall exactly why but I got a big nope when trying to download it. I think I tried looking at the Zen Kernel as well but couldn't figure out if it's just for Arch or if it's compatible with Debian.

Too much to learn and now enough hours or attention span. Slow progress but I guess it's a thing to do besides watching my plants grow.

[–] [email protected] 2 points 10 months ago* (last edited 10 months ago)

Maybe just start with the different versions available in your distro's package manager. I've never downloaded a custom kernel from somewhere else. (Well, I have but that was embedded stuff and not a desktop computer.)

[–] [email protected] 1 points 10 months ago* (last edited 10 months ago) (1 children)

pages like this also suggest things like updating the BIOS and the graphics card firmware with some AMD tool. And I've read several times you should try the kernel parameter amdgpu.runpm=0

Make sure to do all of that first. And observe if the freezes happen in certain circumstances. Maybe you can deduct something from that. Maybe it happens while gaming (GPU). Or when under load. Or if you move it around (loose connection), or when hot or after a certain time even if idle. Disable power management and see if that helps. Should be less effort than installing 5 operating systems. (If the crash isn't super rare) And try using the magic SysReq keys to force linux to sync and reboot to see if the kernel is still alive somehow.

[–] [email protected] 2 points 10 months ago (1 children)

Fortunately I updated my BIOS from windows before switching to Linux and as of recently, I still have the latest version.

I added amdgpu.runpm=0 and that did increase stability considerably. My system froze up way less often which was great.

I also found that adding processor.max_cstate=1 has made my system even more stable and I haven't had a freeze up in days now. This page gives a nice run down of what it does.

I wouldn't be surprised if there is a freeze up in the future but overall my system has been a lot more stable making everything far more enjoyable.

[–] [email protected] 2 points 10 months ago* (last edited 10 months ago)

Awesome. Let's hope the eventually fix the remaining hiccups. Maybe it's really the power management if those kernel parameters did it.