While you're here, please consider supporting GamingOnLinux on:
Reward Tiers: Patreon. Plain Donations: PayPal.
This ensures all of our main content remains totally free for everyone! Patreon supporters can also remove all adverts and sponsors! Supporting us helps bring good, fresh content. Without your continued support, we simply could not continue!
You can find even more ways to support us on this dedicated page any time. If you already are, thank you!
Reward Tiers: Patreon. Plain Donations: PayPal.
This ensures all of our main content remains totally free for everyone! Patreon supporters can also remove all adverts and sponsors! Supporting us helps bring good, fresh content. Without your continued support, we simply could not continue!
You can find even more ways to support us on this dedicated page any time. If you already are, thank you!
Login / Register
- GOG launch their Preservation Program to make games live forever with a hundred classics being 're-released'
- Valve dev details more on the work behind making Steam for Linux more stable
- Half-Life 2 free to keep until November 18th, Episodes One & Two now included with a huge update
- Proton Experimental adds DLSS 3 Frame Generation support, plus fixes for Dragon Age: The Veilguard, Rivals of Aether II and more
- NVIDIA detail upcoming Linux driver features for Wayland and explain current support
- > See more over 30 days here
-
Half-Life 2 free to keep until November 18th, Episodes …
- Xpander -
Avowed from Obsidian gets a release date, and pre-order…
- melkemind -
Half-Life: Blue Shift remake mod Black Mesa: Blue Shift…
- notmrflibble -
Half-Life: Blue Shift remake mod Black Mesa: Blue Shift…
- a0kami -
The Walking Dead, The Expanse and more in the Telltale …
- Caldathras - > See more comments
- Steam and offline gaming
- Dorrit - Weekend Players' Club 11/15/2024
- Ehvis - What do you want to see on GamingOnLinux?
- Liam Dawe - New Desktop Screenshot Thread
- Vortex_Acherontic - Types of programs that are irritating
- dvd - See more posts
View PC info
I like the idea of rolling releases though, and Manjaro Xfce feels very polished. But how stable is it on the long run?
I'd like to now your experiences (I notice in the Statistics section that 33% of users here are Arch based with 8% on Manjaro). I'm particularly interested in what you do proactively to prevent problems.
Thanks in advance :)
View PC info
View PC info
In any case I think it's worth trying out Tumbleweed alongside Arch-derivatives on KVM or Virtualbox or whatever before deciding which one you want to use.
View PC info
pacman -Syu
almost every day and never had a severe problem to date.
Say 1-2 times a year on average, I hit some packaging inconsistency that's typically quickly sorted out by the community.
It has been a fantastic ride so far, seriously.
View PC info
View PC info
worth a note, last 4 years i also have testing repos enabled, so i would call it pretty stable even with testing repositories. no issues.
xpander@archlinux ~ $ cat /var/log/pacman.log | grep -a filesystem
[2013-01-21 17:45] installed filesystem (2012.12-1)
[2013-01-21 17:45] -> Running build hook: [filesystems]
View PC info
I have rarely some issues, as long as you check the forum/update changelog if there will some things to do you're pretty safe.
When I have issues with upgrade it's mainly my fault.
Maybe Manjaro is not perfect, but soon as you try a rolling release you never want to go back IMO.
And don't forget the AUR (Arch User Repository) in all Arch based, it's a great thing!
View PC info
However I think users of Arch Linux tend to like going under the hood of their systems, which is why they would prefer a minimalist, rolling release distro. The Arch Linux wiki provides a lot of information on how to customize the system, and Arch's installation process asks you to edit configuration files and run commands directly (Arch-based distros might provide graphical installers though). When you tinker without following the instructions correctly, it can easily break your system. There have been a few times when I made my computer fail to boot, but I've been able to recover from them with help from the IRC channel, and learned a lot in the process.
For gaming specifically, note that many games only officially support Ubuntu or other Debian derived distros. So gaming on Arch Linux may require extra knowledge to fix issues like missing library versions.
View PC info
Update system
sudo pacman-mirrors --fasttrack 6 && sudo pacman -Syyu
Check for orphaned packages
sudo pacman -Qdt
Remove orphaned packages
sudo pacman -Rns $(pacman -Qdtq)
Check for foreign packages
sudo pacman -Qm
Install packages
sudo pacman -Syu package_name
Uninstall packages
sudo pacman -Rns package_name
Clean package cache
sudo paccache -r
Old configuration files
~/.config/ -- where apps stores their configuration
~/.cache/ -- cache of some programs may grow in size
~/.local/share/ -- old files may be lying there
What do you think?
View PC info
View PC info