He/him

Formerly on .world.

  • 2 Posts
  • 3 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
    

  • I think Ubuntu was relevant 15 years ago, when Linux was scary. Nowadays, it’s neither easier to install nor to use than, say, Fedora for example. I’d even say any current distro with a live CD and a graphical installer is easier to install than Ubuntu 15 years ago.

    The fact that Canonical has successfully commercialised Linux doesn’t always sit well with some people in the spirit of FOSS Linux, but they have also done a great deal to widen the distribution and appeal of Linux.

    I agree with the second part but not the first. Linux would be nowhere near what it is today without some serious corporate investments, so commercial Linux is a good thing (or a necessary evil depending on your POV). The largest kernel contributors are large IT and hardware companies, after all.

    What’s bad about Ubuntu is that the “free” version is an inferior product, like a shareware of old. The biggest commercial competitors like SLES or RHEL are downstream from excellent community distros (OpenSuse and Fedora, respectively).

    The community support, forums and official documentation are most useful. I don’t currently use Ubuntu, but use their resources frequently.

    Fortunately that knowledge can be used downstream and often upstream too. After all, most Ubuntu issues are Debian Sid issues.