• 2 Posts
  • 164 Comments
Joined 3 years ago
cake
Cake day: August 9th, 2023

help-circle

  • Ubuntu was reliably bugged and I could not use the software I needed for work because of that. I had to fuck with it on a monthly basis to fix it.

    Arch reliably works and is always up to date, so bugs that I experience get fixed in a timely manner.

    I never had to fix it after an update. On my personal PC I have the same arch install since 2020.

    Never ever did my arch not boot or not work after an update.

    I literally have a web server with arch that runs automatic daily unsupervised updates (which is not recommended by arch devs tbh.) And it has been serving my personal homepage for a year without downtime or maintenance (except for 15sec post update reboots ofc.).

    If you want to go beyond personal anecdotes as evidence, we both would need to conduct a significant study.

    But I feel like people keep saying that arch is unstable without trying it themselves or without looking at data.

















  • Here is my personal approach to this.

    • I have set my bash history to a ridiculous 1000000 max length, so that I can use CTRL+R to search for commands that I have ran before

    • I write down a lot of commands in a searchable note text document

    • Ask chatGPT

    • Use the tldr command

    • Added A LOT of verbose custom aliases and scripts. For example instead of

    inotifywait -m -r --exclude "(/tmp.*|/var/cache.*|/dev/pts/|/var/log.*)" -e MOVED_TO -e CREATE -e CLOSE_WRITE -e DELETE -e MODIFY . (nobody can remember that alphabet gibberish)

    I just type watch_for_changes .

    Since it is verbose, straight from my brain, I always remember it and it works with autocomplete. I have like ~30 such commands so far.