novafunc
- 53 Posts
- 37 Comments
novafunc@discuss.tchncs.deto
Linux@lemmy.ml•Linux didn't just eat 10% of Windows market share, AI bots are inflating the numbers
6·2 days agoSomething strange with the March 2026 results was that it had two new distro entries, “0 64 bit” at 17.60% and “64 bit” at 8%. In April, one of those entries disappeared and the other’s share dropped significantly. In May, both were gone entirely and Linux was back to a more reasonable marketshare of 4%.
novafunc@discuss.tchncs.deto
Linux@lemmy.ml•Linux didn't just eat 10% of Windows market share, AI bots are inflating the numbers
202·2 days agoOverall probably closer to the truth.
I wish people didn’t obsess over these large numbers as much. Like when Linux suddenly hit 5% on Steam when that was clearly just an outlier and was destined to fall right back down.
novafunc@discuss.tchncs.deto
Proton @lemmy.world•We’ve improved autofill for Proton PassEnglish
4·5 days agoOne thing I am missing with the browser extension (Firefox) is that while the vault is locked, sites ignore it as an option for passkeys.
So if I want to use a passkey, I need to unlock the vault and hit the passkey button. Worse, on some sites it automatically checks for passkeys. So I need to unlock the vault and then refresh the page.
Not a DE thing. In /etc/crypttab, you can point to.a keyfile or password to unlock the disk.
So you unlock the OS disk, and on that now readable OS disk are keyfiles and passwords that then unlock the other disks.
novafunc@discuss.tchncs.deOPto
Linux Gaming@lemmy.world•Minecraft 26.3 will switch to be Wayland by default and from glfw to SDL3English
36·19 days agoSorry, I should note that 26.3 is not released yet. This is a “snapshot”, aka a development build. The full version of 26.3 will be released in a couple of months.
I updated the title to reflect that 26.3 is not released yet.
novafunc@discuss.tchncs.deto
Linux Gaming@lemmy.world•Would you swap out Bazzite to SteamOS on your HTPC?English
4·21 days agoDefinitely agree, particularly when it comes to security.
Valve takes a snapshot of Arch repos, frozen in time. They then spend months developing on top of this version. And by the time it’s released, it’s multiple months out of date. They don’t pull in security updates; Arch is a rolling release, they don’t backport fixes like Debian or Fedora does.
novafunc@discuss.tchncs.deto
Linux Gaming@lemmy.world•Would you swap out Bazzite to SteamOS on your HTPC?English
6·21 days agoDefinitely misremembering.
Helium is great. I love how it focuses on having 0 distractions. No popups, great default settings.
novafunc@discuss.tchncs.deto
Linux@lemmy.ml•Does Pop!_OS give cosmic updates as soon as they are released?
2·25 days agoYes, but still important to keep in mind because it broke release expectations. Pop!_OS used release new versions every 6 months and then stopped releasing new versions while working on COSMIC and now only does LTS releases.
And now that COSMIC is “done”, it’s still not quite clear when they will release 26.04. I actually just found a quote from the CEO of System76 where he said “Future Pop!_OS releases, starting with Pop!_OS 26.04 LTS, will now align with the Ubuntu LTS release timing (approximately two weeks after the Ubuntu release date)” but that obviously didn’t happen.
novafunc@discuss.tchncs.deto
Linux@lemmy.ml•Does Pop!_OS give cosmic updates as soon as they are released?
5·26 days agoPop!_OS gets Cosmic updates before they are even technically released.
Pop!_OS packages are not cutting edge. They are based on Ubuntu LTS. They do keep some packages more up to date than Ubuntu, such as Cosmic, kernel, mesa. But the vast majority of packages are from Ubuntu LTS unmodified.
Pop!_OS has also been lagging in using the latest Ubuntu LTS. They stuck to 22.04 for almost 4 years before releasing 24.04. It’s also not clear when they will update Pop!_OS to 26.04, but that should not take as long as 24.04.
novafunc@discuss.tchncs.deOPto
Gnome@discuss.tchncs.de•Image-Based for Developers — Modal CollectiveEnglish
2·27 days agoWe’ve heard from a lot of developers working on lower level system components that on package-based systems they can easily install niche command line tools for developers.
…However, after some discussions with the Flatpak developers, we have a plan for how to approach the distribution of third-party tools and we’ve already began prototyping. We’ll share more about this soon in a dedicated post.
I hope this system at least shares runtimes with Flatpak or else I will be severely disappointed. I’d be giddy if it’s actually a case of flatpak offiically supporting CLI tools. It already does, and does it well, just missing a tiny bit of plumbing.
Yes, the packaging mess that Atomic distros cause.
I want a couple of functional things:
- To be able to safely upgrade my system silently, without interruptions, and rollback of necessary
- To know my system is not drifting away from upstream defaults and to restore it to a “factory” state
- To sandbox applications
I’d like to be able to do all that efficiently and cleanly too. Atomic systems generally fulfill those first two while traditional distros struggle, which is why I stick to Atomic distros.
But whereas you can use a single package manager on Arch and get everything (albeit without easy sandboxing), Atomics keep adding more and more. Here’s your rpm-ostree, flatpak, toolbox, homebrew, sysexts, etc.
I find sysexts particularly insulting because they regress so much on traditional packages for so little upside. Doesn’t even have dependency management.
I would wish we would stop creating so many package managers and just focus on improving existing ones.
In a more ideal world we would have something like
- Distro based on Freedesktop runtimes
- Flatpak that officially supports both GUI applications, CLI applications, and even daemons/services
- Flatpak would also be able to reuse the Freedesktop runtimes of the host system
novafunc@discuss.tchncs.deto
Linux Gaming@lemmy.world•Valorant being even more of an pita than usual with my dual boot (VAN: STATUS_SB_POLICY)English
2·27 days agoTechnically yes, practically no.
Windows doesn’t include the drivers to read Linux file systems (except through WSL) and Vanguard sure doesn’t either.
If you encrypt your disks, then it definitely can’t.
novafunc@discuss.tchncs.deto
Gnome@discuss.tchncs.de•GNOME 51 Alpha Desktop Environment Is Now Available for Public TestingEnglish
21·29 days agodeleted by creator
novafunc@discuss.tchncs.deto
Linux@lemmy.ml•Arbitrary code execution breaking sandboxes in KDE Plasma | Kimiblock's Blog
9·1 month agoCertainly an interesting vulnerability, but one you shouldn’t worry about.
If you do really care about sandbox security, the first thing I would recommend doing is globally blocking filesystem access to anywhere in your $HOME that runs script code, such as:
- bash files like ~/.bashrc and ~/.bash_profile
- ~/.local/bin and ~/bin
- ~/.ssh
I have a script that I use to control flatpak overrides and I do something like this:
# paths to block GLOBAL_RESTRICTION_PATHS=( "~/.bash_logout" "~/.bash_profile" "~/.bashrc" "~/.profile" "~/.ssh" "~/.zshenv" "xdg-config/zsh" "~/.local/bin" "xdg-config/systemd" ) # globally block these paths for path in "${GLOBAL_RESTRICTION_PATHS[@]}"; do flatpak --user override --nofilesystem="$path" done # but allow some apps like text editors to access them for path in "${GLOBAL_RESTRICTION_PATHS[@]}"; do flatpak --user override --filesystem="$path" org.gnome.TextEditor done
novafunc@discuss.tchncs.deto
Privacy@lemmy.ml•Mullvad founder donated 5 million SEK to populist Örebro party
184·1 month agoProton did not claim anything; the CEO of Proton claimed that Republicans (not Trump) would do better on big tech anti-trust.
This view is not that crazy given that the person Trump appointed was doing her job quite well. Too well to the point that Trump removed her from the position later on.
You’re forgetting that Universal Blue doesn’t just ship Fedora stuff.
They include stuff from Homebrew and Flathub out of the box.
Homebrew shipped the backdoored xz library while (by luck) Fedora stable didn’t.
novafunc@discuss.tchncs.deto
Linux@lemmy.ml•What do you think KDE should focus on for the next two years? - Call For Submissions
9·1 month agoDo they still do 15 minute bugs? That could still use some work.
Occasionally I get an itch to try Plasma and immediately get disappointed every time as I encounter some sort of bug just setting up the panel. Last time I tried was 6.6.5, so it wasn’t just a point 0 software issue.
As a side note, I still get so confused by the “new” panel/desktop edit mode introduced in 6.1.
I don’t think there’s much of a package up-to-date difference between LMDE and Linux Mint. Both Debian and Ubuntu LTS are released every two years. Ubuntu in even years, Debian in odd years. So every year they trade being more up to date.
Main difference now is that Linux Mint has access to Ubuntu’s hardware ennoblement stack.
















The main issue is that old Boxes is based on SPICE. It was/is a Red Hat project, but they stopped caring for it and deprecated it. So old Boxes is built on legacy tech that will pretty much just bit rot over time.