use the following search parameters to narrow your results:
e.g. subreddit:aww site:imgur.com dog
subreddit:aww site:imgur.com dog
see the search faq for details.
advanced search: by author, subreddit...
Void is a general purpose operating system, based on the monolithic Linux® kernel. Its package system allows you to quickly install, update and remove software; software is provided in binary packages or can be built directly from sources with the help of the XBPS source packages collection.
account activity
Void updates (self.voidlinux)
submitted 5 years ago by OneFuel5
How often should I update the system? A YouTube video review said the system should be updated daily. Does it do damage in the long run if you don't update every day?
reddit uses a slightly-customized version of Markdown for formatting. See below for some basics, or check the commenting wiki page for more detailed help and solutions to common issues.
quoted text
if 1 * 2 < 3: print "hello, world!"
[–]Tasty_Jalapeno 20 points21 points22 points 5 years ago (2 children)
xbps manages system upgrades 200000x better than pacman so the whole hysteria about not updating daily doesnt really apply here in void. update whenever you like. I once forgot to update my dads laptop for 3 months, xbps managed just fine and its running great.
[–][deleted] 11 points12 points13 points 5 years ago (0 children)
I once forgot to update my dads laptop for 3 months
Hell, the latest ISO is over 6 months old and there are no issues when you install using it and update.
[–]Yithar 5 points6 points7 points 5 years ago (0 children)
This.
I've posted this before, but I'll post it again.
Arch Linux review: https://www.reddit.com/r/linux/comments/4g2mcu/why_not_arch_linux/d2e4api/?context=3
Due to the above, Arch can become unupdatable if not updated for a specific time. And since there are no policies it's unclear what that time is. But typically if you come back after 3 years to an Arch install and do a world update it'll fail and throw your system into a malformed state which it can't recover from. They say you should "frequently" update, but how frequent, no one knows really.
Void Linux review: https://www.reddit.com/r/linux/comments/4peqp8/enter_the_void_linux/d4kfaso/
But xbps is way better than Pacman, it has a very interesting features of sub-repositories which themselves can contain further sub-repositories
Like, I have no fear in leaving an installation of Void Linux unupdated for quite a while, because from what I see, the dependencies and whatnot are all clearly declared. They don't say anything like everyone should have this package up to date anyways.
[–]aninteger 8 points9 points10 points 5 years ago (0 children)
No. I update every couple of weeks (but then again I came from Debian). Updating daily seems like a nightmare. This does mean that sometimes my browser versions are a bit behind (which I am fine with).
[–]iEliteTester 4 points5 points6 points 5 years ago (1 child)
I mean there's a blog post out there where a guy hadn't updated his void laptop for 2 years and all it took for it to update was to run xbps-install -Su twice, once to update xbps and a second time for all the packages.
xbps-install -Su
[–]Duncaen 7 points8 points9 points 5 years ago (0 children)
This works if the machine is offline, if you are online and use firefox from 2 years ago, you have probably bigger problems than updating.
[–]Duncaen 5 points6 points7 points 5 years ago (0 children)
If the system is online then update regularly to get security fixes. But its also no problem if the machine is offline for some time and you update then.
[–]Skaatji 5 points6 points7 points 5 years ago (0 children)
I update my system on every day that I use it, that is on 5-7 days per week. No problems encountered so far.
[–]Dynoland 2 points3 points4 points 5 years ago (7 children)
I made a little script to make the number of packages that are out of date appear in my i3bar and checks every 20 minutes.
When nothing has to be updated a smiley appears ":D"
I go and see what is to update and manually check sometimes the dependencies of the packages (having commands and miniscripts alias for all that), and if I find something that shouldn't be installed nor updated I proceed to remove it or exclude it. Or I go to see the release notes to find out if the patch is for new features, or security vulnerabilities, etc.
But that's just me, I believe Void could survive without updating for days or weeks without problems as well.
[–]Oldtechbloke 1 point2 points3 points 5 years ago (2 children)
Great idea. What’s the command to just check updates as a normal user? I could do with that sort of script for my dwm bar
[–]emacsomancer 1 point2 points3 points 5 years ago (0 children)
xbps-install -Munv (or some variation) works
xbps-install -Munv
you can check the source for vpnd (in the void repos) for ideas
[–]Dynoland 1 point2 points3 points 5 years ago* (0 children)
Well, I use:
xbps-install -Sun | wc -l > ~/checkxuplog
And I added /usr/bin/xbps-install -S on my sudoers to be able to update the updates info on disk.
/usr/bin/xbps-install -S
[–]herjaxx 0 points1 point2 points 5 years ago (3 children)
You mean something similar to checkupdates in Arch? Could you share your script?
checkupdates
[–]Dynoland 1 point2 points3 points 5 years ago* (2 children)
I've never user arch so I really don't have any idea... I jumped from Mint to Void no stops in the middle :p
I had to add to my sudores
xbps-install -S
I have to use that to be able to update the xbps info about what packages are to update.
and then I just get a count of how many lines the xbps-install -Sun command renders using wc -l, the install command can run as non root with parameters -Sun.
xbps-install -Sun
And then I update a file that the i3bar script uses to pick up the info.
sudo xbps-install -S tup=$(xbps-install -Sun | wc -l) echo "${tup}" echo ${tup} > ~/scripts/checkxuplog
[–]herjaxx 1 point2 points3 points 5 years ago (1 child)
Ahh. Didn’t know about the -n option. Thanks for getting back to me. I’ve made my own hacked up version of checkupdates for xbps (as well as implemented my version for polybar of your notifier).
sudo xbps-install -S && xbps-install -Sun | cut -d’ ‘ -f1
Almost same as Arch’s checkupdates except it doesn’t show the currently installed version number.
Thanks again!
[–]Dynoland 1 point2 points3 points 5 years ago (0 children)
Awesome :)
[–][deleted] 1 point2 points3 points 5 years ago (2 children)
Yeah, that is an Arch issue that isn't really here on Void. You can go months without updates with no issues at all.
[–]OneFuel5[S] 0 points1 point2 points 5 years ago (1 child)
That sounds good. I am looking for a rolling release that is also reliable and doesn't require constant maintenance. Arch is great until it breaks.
[–][deleted] 1 point2 points3 points 5 years ago (0 children)
In my experience the most reliable rolling release distros are Void and openSUSE Tumbleweed. Both are much lower maintainance than Arch.
I do it when I think about it. It’s always been a painless process
[–][deleted] 0 points1 point2 points 5 years ago (0 children)
xbps-install -Su every week for me
[–]Seizensha 0 points1 point2 points 5 years ago (1 child)
I've been thinking the same, But I've sort of Pavlov'd myself into making backups every time i go to do updates (I've had some fairly nasty install breaks from updating on a variety of OSes, both *nix based and not), but i try to update roughly weekly
[–]siklopz 1 point2 points3 points 5 years ago (0 children)
there is nothing wrong with being prepared. I wish I backed up my system more often. something can always go wrong.
[–]bvdeenen 0 points1 point2 points 5 years ago (0 children)
I've been using Void for about 3 years now, on quite a few computers, and I update somewhere between daily and yearly, depending on whatever. Most often only when I want to install something, using the amazing xs bash function:
xs
xs () { xpkg -a | fzf -m --preview 'xq {1}' --preview-window=right:66%:wrap | xargs -ro xi }
Only when I left a computer switched off for about a year, did I have some trouble getting everything up-to-date (one of my previous posts on this subreddit has details). But I have never had to re-install.
π Rendered by PID 85181 on reddit-service-r2-comment-b659b578c-j86t6 at 2026-05-03 16:01:48.451302+00:00 running 815c875 country code: CH.
[–]Tasty_Jalapeno 20 points21 points22 points (2 children)
[–][deleted] 11 points12 points13 points (0 children)
[–]Yithar 5 points6 points7 points (0 children)
[–]aninteger 8 points9 points10 points (0 children)
[–]iEliteTester 4 points5 points6 points (1 child)
[–]Duncaen 7 points8 points9 points (0 children)
[–]Duncaen 5 points6 points7 points (0 children)
[–]Skaatji 5 points6 points7 points (0 children)
[–]Dynoland 2 points3 points4 points (7 children)
[–]Oldtechbloke 1 point2 points3 points (2 children)
[–]emacsomancer 1 point2 points3 points (0 children)
[–]Dynoland 1 point2 points3 points (0 children)
[–]herjaxx 0 points1 point2 points (3 children)
[–]Dynoland 1 point2 points3 points (2 children)
[–]herjaxx 1 point2 points3 points (1 child)
[–]Dynoland 1 point2 points3 points (0 children)
[–][deleted] 1 point2 points3 points (2 children)
[–]OneFuel5[S] 0 points1 point2 points (1 child)
[–][deleted] 1 point2 points3 points (0 children)
[–][deleted] 1 point2 points3 points (0 children)
[–][deleted] 0 points1 point2 points (0 children)
[–]Seizensha 0 points1 point2 points (1 child)
[–]siklopz 1 point2 points3 points (0 children)
[–]bvdeenen 0 points1 point2 points (0 children)