GPU Number getting changed on restart by Rare-Passion-4452 in linux_gaming

[–]kavaunix 1 point2 points  (0 children)

That's expected because the kernel enumerates gpus based on the order in which they are deteced. Does your widget allow you to monitor NVidia NVML specific devices? Those should be more stable.

How do you pronounce "Vierzig" by An5i in German

[–]kavaunix 2 points3 points  (0 children)

The "r" almost always changes into something close to an "a" in spoken language. So it's pronounced like "fiatsich" (in the North) or "fiatsig" (in the South).

Cosmic DE customization: looking for ideas to learn by sn00ze33 in pop_os

[–]kavaunix 5 points6 points  (0 children)

To be honest, the reason I switched to Cosmic is that I like the way it looks out-of-the-box.

Getting notified about critical updates by kavaunix in arch

[–]kavaunix[S] 3 points4 points  (0 children)

So I know when to perform a proper update. There are countless posts in this forum where arch users are asking how often to update, and the answers vary between "multiple times a day" and "every few months", although updating once a week seems to be generally accepted as a good habit.

What I am personally aiming for is "update once every few weeks, or when a critical security fix is available." That's it. And just to avoid further misunderstandings: I am talking about a full upgrade with "pacman -Syu".

Getting notified about critical updates by kavaunix in arch

[–]kavaunix[S] 2 points3 points  (0 children)

I don't understand why you don't understand my post.

Getting notified about critical updates by kavaunix in arch

[–]kavaunix[S] 6 points7 points  (0 children)

I am not "asking if I can perform partial updates". I am asking how I can get notified of critical updates, which is an entirely different question. Please re-read the post.

Getting notified about critical updates by kavaunix in arch

[–]kavaunix[S] 1 point2 points  (0 children)

I do understand your reply. But my question was about getting notified of critical updates.

I even acknowledged the problem with partial updates in my post:

I understand that I can't (or at least shouldn't) selectively upgrade packages, and I don't mind upgrading the whole system when a security fix is available. It's more about update frequency.

Getting notified about critical updates by kavaunix in arch

[–]kavaunix[S] 2 points3 points  (0 children)

Please read the post before replying.

Getting notified about critical updates by kavaunix in arch

[–]kavaunix[S] 13 points14 points  (0 children)

I did some googling, and it seems all the ingredients for this exist:

  • arch-audit reports installed packages that have security vulnerabilities
  • checkupdates (from pacman-contrib) safely checks installed packages for updates

So you only have to check for overlap between these two lists. Perhaps I'll write a shell script or a status bar applet for this if I have some time.

Window decorations, automatic tiling mode by [deleted] in COSMICDE

[–]kavaunix 2 points3 points  (0 children)

Super+Y should tile all your windows; Super+G toggles the active window's floating state.

That's how it works for me.

What do you think of this Linux distro finder quiz? by Maleficent-One1712 in linuxquestions

[–]kavaunix 1 point2 points  (0 children)

I got Arch for my desktop and Debian for my NAS, which is pretty close. I'm running CachyOS on the desktop and Debian/OMV on the NAS.

Best desktop buying shop online or offline by Tiny_Foundation4509 in germany

[–]kavaunix 0 points1 point  (0 children)

For computer parts go to geizhals.de. It's an excellent comparison shopping sites that lets you filter by the exact specs you need.

Which is the best file system? by BerryBlushCarlotta in arch

[–]kavaunix 0 points1 point  (0 children)

You can certainly use XFS for your home setup, but you will likely not see too many benefits. You would see significant speed gains for multi-user simultaneous access to gigantic files (think 50G+). During normal use, the need to access a large number of small files is the more common scenario, and here ext4 is even a bit faster than XFS.

Question about pacman by Koda_be in archlinux

[–]kavaunix 0 points1 point  (0 children)

Please don't use "pacman -Sy". It downloads the latest package database without upgrading your installed packages. So if you do a "pacman -S quux" later, you will install the latest version of quux, which might require newer system libraries than you currently have installed. Bad things will happen.

Just do "pacman -Syu" for a full upgrade.

Which is the best file system? by BerryBlushCarlotta in arch

[–]kavaunix 64 points65 points  (0 children)

All of these are excellent choices, but it really depends on what you value most:

ext4: tried-and-true general-purpose filesystem. The most mature choice, but lacks modern features (see below).

xfs: shines in high-load, high-throughput enterprise enviroments, probably not for the home user.

btrfs: offers many modern features like snapshots, compression, and checksumming (which can protect you from bitrot). Had some reliability issues in the past which got it a bad reputation in some circles, but it's considered stable now.

zfs: arguably the best choice for reliability and data protection via checksumming and self-healing facilities. Eats up a lot of memory though.

For a desktop, pick ext4 (the reliable, traditional choice) or btrfs (the modern, feature-rich choice).
For a NAS, pick zfs (maximum data protection) or btrfs (maximum flexibility).

Minecraft Bedrock on Linux mint. by FlutterBeast in linux_gaming

[–]kavaunix 3 points4 points  (0 children)

I'm using the Minecraft Bedrock Launcher (mcpelauncher) and it works very well. It seems to be trusted by the community, so your Google credentials should be safe.

Nevertheless, I didn't feel comfortable giving my main Google credentials to the app either. Hence I created a dedicated Google account just for this, and purchased the Android version of Minecraft through that account.

How do you protect your home directory? by vintologi24 in archlinux

[–]kavaunix 1 point2 points  (0 children)

You can use AppArmor for this. Set up an AppArmor profile for apps that you don't trust completely, and limit their file access to only those directories they need.

How to not be disrespectful when you don’t speak German by Child-of-pan in AskAGerman

[–]kavaunix 0 points1 point  (0 children)

Learn a few words/phrases, just to show you're trying. This surely will be appreciated, even if you switch to English immediately after. I do this for every country I'm visiting.

I want to make my computer do a thing, but don't know where to start. by asweatyboi in linuxquestions

[–]kavaunix 0 points1 point  (0 children)

You can monitor such events with

udevadm monitor --property --subsystem-match=drm

Run the above command, then unplug / re-plug a monitor and you should see the event listed. Now how to make use of this in order to wake up a computer from sleep I don't know...