He/him

Formerly on .world.

  • 4 Posts
  • 42 Comments
Joined 1 year ago
cake
Cake day: July 4th, 2023

help-circle


  • On my previous laptop, the trackpad had a bug that made it spam interrupts after waking up from sleep. It ruined battery life and basically kept one core at 100% permanently.

    So I duct-taped a systemd script that unbound and bound the trackpad after each wake up.

    #!/bin/sh
    case "$1" in
            post)
                    echo -n "i2c_designware.0" > /sys/bus/platform/drivers/i2c_designware/unbind
                    echo -n "i2c_designware.0" > /sys/bus/platform/drivers/i2c_designware/bind
            ;;
    esac
    



  • You’re welcome!

    Yeah I think the recent nonfree images should take care of the most pressing driver issues (last time I installed Debian, I had to separately download and put on a second USB stick the drivers for my WiFi card just to be able to proceed with the installer). I don’t know if you still need to manually install proprietary blobs for the CPU or the GPU post-install tho. If not, that would mean modern Debian is indeed very close to OOTB functionality.


  • I pondered a lot including a bit about rpmfusion in Fedora’s paragraph, but I elected not to because there is already too much stuff here :D

    As a 20-years Debian user who switched to Fedora a couple years ago on my main laptop, I would say confidently that Debian is the distro I’m the most comfortable with. I love Debian. But, there are a couple things that prevent me from recommending it as a very first distro:

    • The base system is very barebones and you’re required to manually install vital things like proprietary drivers (I think it’s a bit more painless now with the nonfree installer but I haven’t installed a fresh Debian in a few years). For me, having a fully functional Debian laptop is not hard work but requires a bit of knowledge beforehand.
    • A lot of people want the latest and shiniest, and with Debian might be tempted to switch to Testing or Sid which is a very bad idea for a daily driver.

    Good call about Kalpa, I’m removing it






  • WFH@lemm.eetoLinux@lemmy.mlUsing Linux for the first time
    link
    fedilink
    English
    arrow-up
    14
    ·
    edit-2
    10 months ago

    May I ask why you, as a beginner, specifically chose one of those distros instead of more “mainstream” ones?

    Puppy Linux’s main use-case is to be a live ISO, that doesn’t need to be installed to run. It doesn’t mean it’s not a good idea to install it, but I think if you want to use an Ubuntu derivative, there are better options for a beginner like Pop or Mint that would let you install a lightweight desktop environment like XFCE, LXDE, LXQt and so on.

    Alpine Linux is specifically designed to avoid all the core system tools that are pretty much universal on most other distros like glibc, systemd or GNU tools and libraries, which will make your life hell as a beginner if you need to troubleshoot anything as most “universal” documentation like the Arch wiki would be at best partially relevant, at worst useless.



  • I have updated Debian across 4 major releases without issues. I have daily updates on Fedora without issues. I had to do maintenance probably monthly on Manjaro.

    Arch doesn’t do things for you, therefore Manjaro doesn’t do things for you. This means you are the one who needs to do the maintenance and upgrade config files and such. It is interesting, it is formative, but it is not for beginners who might get the impression that Linux needs constant maintenance and breaks often.




  • I’ve updated my post with “I heard conflicting stuff over the Internet and now I’m scared” and an introduction. Those are legitimate questions for people who, like me, do a lot of research before committing to something. Some of the discussions here and in other communities might scare people off, as they might feel they’ve done the “wrong” choice or are afraid to do the “wrong” choice.


  • I’ve ran my gaming pc on Manjaro for about 2 years. There were too many issues to list here, but the one huge problem for me for new users is updates.

    You have to wait for the semi-regular “stable update” post, check the major issues and act accordingly. This shouldn’t happen in a “beginner friendly” distro. I mean, those posts are great, but all other majors distros update without intervention.

    Also, I always updated from the tty as there’s a weird “never update inside Gnome” policy.