631
top 50 comments
sorted by: hot top controversial new old
[-] rozodru@piefed.social 76 points 3 months ago

as someone who is a dev by trade I update/backup on fridays because I think it's funny.

[-] muhyb@programming.dev 56 points 3 months ago
load more comments (2 replies)
[-] velxundussa@sh.itjust.works 38 points 3 months ago
[-] festnt@sh.itjust.works 17 points 3 months ago

but "yay" already does that

[-] Cort@lemmy.world 13 points 3 months ago
load more comments (2 replies)
[-] flying_sheep@lemmy.ml 4 points 3 months ago
[-] dastechniker@lemmy.world 36 points 3 months ago

I have a script I run daily (named daily) that makes a timeshift backup, checks for updates from pacman, then checks for updates from the AUR. I'm very fond of it :]

[-] jimerson@lemmy.world 11 points 3 months ago

Does paru -Syu not also include pacman, or do you just prefer to do pacman first?

[-] dastechniker@lemmy.world 10 points 3 months ago

I have never heard of paru until this very moment. I will look into it, thanks!

[-] jimerson@lemmy.world 7 points 3 months ago

Heck yeah! I hope it helps simplify things!

This might be the first time my limited Linux knowledge has been helpful to an internet stranger. Feels good.

[-] ArchAengelus@lemmy.dbzer0.com 6 points 3 months ago

I’ve been using yay for years, and it is sufficient. First time I’ve heard of paru.

Other than being written in rust, how does paru improve the experience of AUR wrapping?

[-] dastechniker@lemmy.world 5 points 3 months ago

Googling it, it just seems like yay but in rust and it shows PKGBUILD by default. Still cool to find alternative tools though

[-] towerful@programming.dev 2 points 3 months ago

I like typing yay and getting updates.

load more comments (2 replies)
[-] Twongo@lemmy.ml 21 points 3 months ago

whenever something is broken

[-] four@lemmy.zip 38 points 3 months ago

You update your broken system to fix it.

I update my working system to brake it.

[-] Twongo@lemmy.ml 18 points 3 months ago

we are not the same

[-] kogasa@programming.dev 11 points 3 months ago* (last edited 3 months ago)

We might be the same

Update my mesa drivers mid-game? Yea fuck it why not

[-] Lembot_0006@programming.dev 16 points 3 months ago

When I am bored. A few times per month in winter. Once or twice per summer.

[-] ekZepp@lemmy.world 7 points 3 months ago

We are still talking about updates, right?

[-] wltr@discuss.tchncs.de 11 points 3 months ago

I do sudo pacman -Syu as a ritual each time when I start my computer or laptop. Like, the very first thing after the system is booted. So far so good, been doing that for 7 years.

load more comments (8 replies)
[-] flameleaf@lemmy.world 10 points 3 months ago
[-] tal@lemmy.today 9 points 3 months ago

My Debian trixie desktop system rotates /var/log/apt/history once a month. So over the past year:

$ zgrep upgrade /var/log/apt/history.log*gz|wc -l
25
$ ls /var/log/apt/history.log*gz|wc -l
12
$

25 upgrades in 12 months. So about twice a month on average on that one.

[-] TheGingerNut 8 points 3 months ago

At most once per day. Sometimes I can go three weeks without remembering to upgrade

[-] palordrolap@fedia.io 7 points 3 months ago

For me, it's about reducing the amount of time the "update available" icon shows up in the system tray, because its very presence bothers me. Maybe there's something cool and new. Maybe it fixes a severe security problem. If it's for programs I'm not using right now, then the update can be applied right now. Otherwise it's going to have to wait until I'm done. And bother me.

Yes, I could turn updates off and never see it, but that seems like a bad plan in the long run.

load more comments (3 replies)
[-] rtxn@lemmy.world 7 points 3 months ago* (last edited 3 months ago)

My home PC, about once a week, or whenever I have to install new software. My work PC, about once a month because the nvidia driver takes fucking ages to update because of DKMS.

As for the servers under my professional care... it depends. Most of the servers that I made run Debian that I update three times a year whenever the downtime is acceptable for the university (spring break, late summer, early december) or if a CVE needs fixing (e.g. xz-utils). One internet-facing server that I inherited still runs Ubuntu 16.04 because some teachers can't possibly live without some legacy software and will throw a tantrum if upgrading is even mentioned -- that one gets zero updates, and I got the dean's promise in writing that I wouldn't be held responsible for it.

The big virtualization server still runs ESXi 6 because the university didn't want to pay for a lifetime license when it was available, doesn't want to pay for a subscription now, and doesn't want the downtime required to fully migrate to Proxmox VE. So it gets no updates. Plus it has a bad SSL cert and I need Chromium's thisisunsafe to bypass the error.

It's fucking rough out here.

load more comments (1 replies)
[-] l3enc@piefed.ee 6 points 3 months ago

every week more or less, it's basically just as often as I remember. oh and whenever I have to update a program for security reasons, like a system wide patch or a new browser release, that sorta thing. using opensuse tumbleweed btw

[-] sefra1@lemmy.zip 5 points 3 months ago

Once a week usually, or when I have to reboot anyway.

[-] syaochan@feddit.it 5 points 3 months ago

I've set up unattended upgrades and forgot about updates, until I get a mail saying they happened.

[-] tal@lemmy.today 8 points 3 months ago

Note that at least on Debian, the unattended-upgrades package only, by default, does security updates. While those are the most important ones, if you want various bugfixes and such, you probably do want to at least occasionally do an update yourself.

[-] syaochan@feddit.it 7 points 3 months ago

On my laptop with LMDE, which is basically Debian, I've configured it to update everything. The only thing left out are flatpaks which I update when I remember.

[-] lennee@lemmy.world 5 points 3 months ago

every 5 minutes sounds about right

[-] Digit@lemmy.wtf 4 points 3 months ago

Sometimes I let a Gentoo lapse on upgrades, just for the extra fun.

[-] XaetaCore@lemmy.neondystopia.world 4 points 3 months ago* (last edited 3 months ago)

I have a bash alias alias update='flatpak update ; flatpak remove --unused ; emerge --sync -a ; emerge --ask --verbose --update --deep --changed-use --keep-going --with-bdeps=y --backtrack=500 @world ; emerge --depclean ; eclean-dist -d' Which i run like update && shutdown -P now And usually in the morning i do another update to check if it missed anything

Run the main update before i sleep computer shuts down when done and when i wake up i check what i missed

Does the job every time 😎

[-] FlowerFan@piefed.blahaj.zone 4 points 3 months ago

Fedora Silverblue (actually bluebuild building my own OS)

practically only if there's a new release of a software I want to install (which zeroes out to approx all 2 months)

[-] gustofwind@lemmy.world 4 points 3 months ago

If I’m bored and done with everything and can peacefully restart

Every 1-2 weeks, depends on how often I remember

[-] rumschlumpel@feddit.org 3 points 3 months ago
[-] exu@feditown.com 3 points 3 months ago

paru -Syu; poweroff most evenings

[-] kadu@scribe.disroot.org 2 points 3 months ago

I use Apdatifier for KDE and it checks every 180 minutes. If there are updates, I update.

load more comments
view more: next ›
this post was submitted on 31 Jan 2026
631 points (100.0% liked)

linuxmemes

31524 readers
664 users here now

Hint: :q!


Sister communities:


Community rules (click to expand)

1. Follow the site-wide rules

2. Be civil
  • Understand the difference between a joke and an insult.
  • Do not harrass or attack users for any reason. This includes using blanket terms, like "every user of thing".
  • Don't get baited into back-and-forth insults. We are not animals.
  • Leave remarks of "peasantry" to the PCMR community. If you dislike an OS/service/application, attack the thing you dislike, not the individuals who use it. Some people may not have a choice.
  • Bigotry will not be tolerated.
  • 3. Post Linux-related content
  • Including Unix and BSD.
  • Non-Linux content is acceptable as long as it makes a reference to Linux. For example, the poorly made mockery of sudo in Windows.
  • No porn, no politics, no trolling or ragebaiting.
  • Don't come looking for advice, this is not the right community.
  • 4. No recent reposts
  • Everybody uses Arch btw, can't quit Vim, <loves/tolerates/hates> systemd, and wants to interject for a moment. You can stop now.
  • 5. 🇬🇧 Language/язык/Sprache
  • This is primarily an English-speaking community. 🇬🇧🇦🇺🇺🇸
  • Comments written in other languages are allowed.
  • The substance of a post should be comprehensible for people who only speak English.
  • Titles and post bodies written in other languages will be allowed, but only as long as the above rule is observed.
  • 6. (NEW!) Regarding public figuresWe all have our opinions, and certain public figures can be divisive. Keep in mind that this is a community for memes and light-hearted fun, not for airing grievances or leveling accusations.
  • Keep discussions polite and free of disparagement.
  • We are never in possession of all of the facts. Defamatory comments will not be tolerated.
  • Discussions that get too heated will be locked and offending comments removed.
  •  

    Please report posts and comments that break these rules!


    Important: never execute code or follow advice that you don't understand or can't verify, especially here. The word of the day is credibility. This is a meme community -- even the most helpful comments might just be shitposts that can damage your system. Be aware, be smart, don't remove France.

    founded 2 years ago
    MODERATORS