A space biologist by training and a (Arch)Linux user by passion #ArchLinux #Linux #KISS #FOSS #terminal, #python https://www-gem.codeberg.page/

  • 0 Posts
  • 4 Comments
Joined 3 years ago
cake
Cake day: February 17th, 2023

help-circle
  • www-gem@lemmy.mltoLinux@lemmy.mlMy experience with Arch
    link
    fedilink
    arrow-up
    1
    ·
    edit-2
    9 days ago

    I 100% agree with this comment. Also, if that “once-a-year single command” bit was about my comment, I’d have appreciated the shout-out 😄
    If not, all good — I was literally talking about copy-pasting a line from the Arch or package page. It’s nothing technical; it’s basically similar as running a pacman command.

    Arch has certainly a specific target audience. That’s true for every distros. The magic of GNU/Linux — you get to pick exactly how much chaos you want in your life. From super-polished plug-and-play distros to full DIY mode, there’s something for everyone. Nobody should ever be forced to use a distro. Again, it’s a personal choice and the one that will make you enjoy using your system. Arch is meant for people who have time and desire to build their system and write a bunch of config files. In that sense, yeah, it’s a technical distro, and that certainly not make its users anything special. I’m still and will forever be a Linux noob compared to a lots of people.


  • I’ve been using Arch for over 15 years, and honestly, I never check the news before updating. Once in a while, I’ll get an error — maybe once a year — and the fix is always just running a quick command I find on the Arch site or the package page. Takes seconds, no drama.

    I’ve only managed to break my system twice, and both times were 100% my fault. Even then, recovery was easy: just chroot in and run one command.

    As for updates, doing them regularly (daily, weekly, or monthly) is recommended. No need to go crazy with updates. Too frequent updates are actually discouraged. Arch is a rolling release, so your packages and dependencies get updated together — meaning things don’t randomly break. Skipping updates won’t nuke your system either, and if something ever goes sideways, you can just downgrade and be back up in no time.


  • www-gem@lemmy.mltoLinux@lemmy.mlMy experience with Arch
    link
    fedilink
    arrow-up
    34
    arrow-down
    2
    ·
    9 days ago

    Welcome :) The myth that “Arch isn’t user-friendly” will probably never die — and neither will “Arch is unstable.” I’m honestly relieved you didn’t dare push the door to join us 😏
    If you ever switch machines, you can check how Arch is supported on tons of laptops here.


  • You’re correct partial upgrades are unsupported. Arch follows a rolling release model, meaning there are no fixed “versions” of the system. Instead, everything is continuously updated. Each package is built and tested against the current state of the rest of the system in the Arch repositories. That package was compiled against the latest system libraries in the repos, not necessarily the ones on your machine.

    Your proposed “workaround” may work if the package is standalone and has few/no dependencies. Again, ArchLinux strongly recommends full system upgrades (pacman -Syu) rather than only reinstalling/upgrading a single package, because library or dependency mismatches can occur if your system is out of sync.
    A safer approach may be to use “pacman -S package --needed” which will avoid removing it first and automatically handles dependencies safely.