1
submitted 2 years ago* (last edited 2 years ago) by to c/linux@lemmy.ml
 
 

You're about to take your first steps in the wonderful world of Linux, but you're overwhelmed by the amount of choices? Welcome to this (I hope) very simple guide :)

The aim of this guide is to provide simple, clear information to ease your transition as a beginner. This is not a be-all-end-all guide nor an advanced guide. Because there is a lot of info and explanations everywhere, I will often (over-)simplify so as to keep the information accessible and digestible. Please refrain from asking to add your favorite distro/DE in the comments, I feel there is too much choice already ;)

Preamble

Make sure your hardware is compatible

Nowadays most relatively recent hardware works perfectly fine on Linux, but there are some edge cases still. If you don't use niche hardware and your wifi card is supported, chances are you're golden. Please note that nVidia is a bad faith player in the Linux world, so if you have a GeForce GPU, expect some trouble.

Make sure your favourite apps are either available or have a good replacement on Linux

If some proprietary app is essential to your workflow and is irreplaceable, consider running it in a VM, keeping a Windows partition for it or try and run it through Wine (this is advanced stuff though).

Be aware that Linux is not Windows/MacOS

Things work differently, and this is normal. You will probably struggle at the beginning while adjusting to a new paradigm. You may have to troubleshoot some things. You may break some things in the process. You will probably get frustrated at some point or another. It's okay. You're learning something new, and it can be hard to shed old habits forged by years on another system.

When in doubt, search for documentation

Arch Wiki is one of the greatest knowledge bases about Linux. Despite being heavily tied to Arch, most of its content is readily usable to troubleshoot most modern distros, as the building blocks (Kernel, systemd, core system apps, XOrg/Wayland, your DE of choice etc.) are the same. Most distros also maintain their own knowledge base.

Understanding the Linux world

What is Linux?

Linux, in the strictest definition, is the kernel, ie. the core component that, among other things, orchestrates and handles all interactions between hardware and software, of a large family of operating systems that, by metonymy, are called "Linux". In general understanding, Linux is any one of these operating systems, called distros.

What is a distro?

A distro, short for "Software Distribution", is a cohesive ensemble of software, providing a full operating system, maintained by a single team. Generally, all of them tend to provide almost the same software and work in a very similar way, but there are major philosophical differences that may influence your choice.

What are the main differences between distros?

As said above, there are a lot of philosophical differences between distros that lead to practical differences. There are a lot of very different ways the same software can be distributed.

  • "Point Release" (OpenSUSE Leap) vs. "Rolling Release" (OpenSUSE Tumbleweed): Point release distros are like traditional software. They have numbered releases, and between each one no feature updates take place, only security updates and bug fixes. Rolling Release distros package and distribute software as soon as it's available upstream (the software developer's repos), meaning that there are no versions and no specific schedule.
  • "Stable" (Debian Stable) vs. "Bleeding edge" (Arch): Stable distros are generally point release, and focus on fixing bugs and security flaws at the expense of new features. Each version goes through a lenghty period of feature freeze, testing and bug fixing before release. Stability here not only means trouble-free operation, but more importantly consistent behavior over time. Things won't evolve, but things won't break. At least until the next release. Bleeding edge distros, which often follow the rolling release model (there are outliers like Fedora which are mostly bleeding edge yet have point releases), on the other hand, are permanently evolving. By constantly pushing the latest version of each software package, new features, new bugs, bug fixes, security updates and sometimes breaking changes are released continuously. Note that this is not a binary, there is a very large continuum between the stablest and the most bleeding edge distro.
  • "Community" (Fedora) vs. "Commercial" (RHEL): Despite the name, Community distros are not only maintained by volunteers, but can also be developed by some company's employees and can be sponsored by commercial entities. However, the main difference with Commercial distros is that they're not a product destined to be sold. Commercial distros like Red Hat's RHEL, SuSE Linux Enterprise or Ubuntu Pro are (supposed to be) fully maintained by their company's employees and target businesses with paid support, maintenance, fixes, deployment, training etc.
  • "x package manager" vs. "y package manager", "x package format" vs. "y package format": It doesn't matter. Seriously. apt, dnf or pacman, to name a few, all have the exact same purpose: install and update software on your system and manage dependencies.
  • "general purpose" (Linux Mint) vs. "niche" (Kali Linux): General purpose distros are just that: distros that can do pretty much anything. Some are truly general purpose (like Debian), and have no bias towards any potential use, be it for a server, a desktop/laptop PC, some IOT or embedded devices, containers etc., some have various flavors depending on intended use (like Fedora Workstation for desktops and Fedora Server for, you guessed it, servers) but are still considered general purpose. They aim for maximum hardware compatibility and broad use cases. At the opposite end, niche distros are created for very specific and unique use cases, like pentesting (Kali), gaming (Nobara), music production (AV Linux) etc. They tend to have a lot of specific tools preinstalled, nonstandard defaults or modified kernels that may or may not work properly outside of their inteded use case.
  • "team" (Any major distro) vs. "single maintainer" (Nobara): Pretty self explanatory. Some distros are maintained by a single person or a very small group of people. These distros do not usually last very long.
  • "traditional" (Fedora Workstation) vs. "atomic" (Fedora Silverblue): In traditional distros, everything comes from a package. Every single component is individually installable, upgradeable, and deletable. Updating a package means deleting its previous version and replacing it with a new one. A power failure during an update lead to a partial upgrade and can make a system unbootable. Maybe a new package was bad and breaks something. Almost nothing prevents an unsuspecting user from destroying a core component. To mitigate risks and ensure a coherent system at each boot, atomic (also called transactional or immutable) distros, pioneered by Fedora Silverblue and Valve's SteamOS, were born. Like mobile phone OSes, the base system is a single image, that gets installed, alongside the current running version and without modifying it, and becomes active at the next reboot. As updates are isolated from one another, if the new version doesn't work the user can easily revert to a previous, functional version. Users are expected to install Flatpaks or use Distrobox, as installing (layering) packages is not as straightforward as with standard distros.
  • "OG" (Debian) vs. "derivative" (Ubuntu): Original distros are directly downstream of their components' source code repositories, and do most of the heavy lifting. Because of the tremendous amount of work it represents, only a few distros like Debian, Arch, Slackware or Fedora have the history, massive community and sometimes corporate financial backing to do this. Other distros reuse most packages from those original distros and add, replace or modify some of them for differenciation. For example, Debian is the parent of almost all deb-based distros like Ubuntu, which itself is the parent of distros like Mint or Pop!_OS.

What are the main components of a distro, ie. a Linux-based operating system?

All distros provide, install and maintain, among other things, the following components:

  • Boot and core system components (these are generally out-of-scope for beginners, unless you need to fix something, but you should at least know they exist):
    • A boot manager (GRUB, systemd_init, etc.): Boots the computer after the motherboard POSTs, lets you choose what to start
    • An init system (systemd, etc.): Starts everything needed to run the computer, including the kernel
    • A kernel (Linux): Has control over everything, main interface for software to discuss with hardware
  • Command-line environment, to interact with he computer in text mode:
    • A shell (bash, zsh, fish etc.): The main interface for command-line stuff
    • Command-line tools (GNU, etc.): Standard suite of command-line tools + default tools chosen by the distro maintainers
    • User-installable command-line tools and shells
  • Graphical stack for desktop/laptop computers:
    • Display servers (X11, Wayland compositors): Handle drawing stuff on screens
    • A Desktop environment (Plasma, Gnome, XFCE etc.): The main graphical interface you'll interact with everyday.
    • User-facing applications (browsers, text processors, drawing software etc.): Some are generally installed by default and/or are part of a desktop environment's suite of software, most are user-installable.
  • A package manager (apt, dnf, pacman, yast etc.): Installs, deletes, updates and manages dependencies of all software installed on the machine.

Which are the main Desktop Environments and which one should I choose?

As a new user, this is basically the only thing you should concern yourself about: choosing a first Desktop environment. After all, it will be your main interface for the weeks/years to come. It's almost as important as choosing your first distro. These are a few common choices that cater to different tastes:

  • Gnome: Full featured yet very minimalist, Gnome is a great DE that eschews the traditional Desktop metaphor. Like MacOS, out of the box, it provides its strongly opinionated developers' vision of a user experience. Fortunately, unlike MacOS, there are thousands of extensions to tweak and extend the looks and behaviour of the DE. Dash-to-dock or Dash-to-panel are great if you want a more MacOS-like or Windows-like experience, Blur My Shell is great if you love blurry transparent things, Appindicator is a must, and everything else is up to you. Gnome's development cycle is highly regular and all core components and apps follow the same release schedule, which explains why a lot of distros choose it as their default DE.
  • KDE Plasma: Full featured and maximalist, Plasma does not cater to a single design philosophy, is very flexible and can be tweaked almost ad infinitum. This may be an advantage for people who like to spend hours making the perfect environment, or a disadvantage as the possibilities can be overwhelming, and the added complexity may compromise stability, bugginess or completeness. There is not yet a single development cycle for core components and apps, which makes it a bit more difficult for distro maintainers and explains why there are so few distros with Plasma as the flagship DE. The KDE team is however evolving towards a more regular update cycle.
  • Cinnamon: Forked from Gnome 3 by the Linux Mint team who disliked the extreme change of user experience it introduced, Cinammon provides a very traditional, "windows-like", desktop-metaphor experience in a more modern software stack than the older DEs it takes inspiration from. Cinnamon still keeps a lot in common with Gnome by being simple and easy to use, yet heavily modifiable with themes, applets and extensions.
  • Lightweight DEs for old or underpowered machines: The likes of XFCE, LXDE, LXQt are great if you want to ressurect an old machine, but lack the bells and whistles of the aforementioned DEs. If your machine is super old, extremely underpowered and has less than a few Gb of RAM, don't expect miracles though. A single browser tab can easily dwarf the RAM usage and processing power of your entire system.

As for which one you should choose, this is entirely up to you, and depends on your preferences. FYI, you are not married to your distro's default desktop environment. It's just what comes preinstalled. You can install alternative DEs on any distro, no need to reinstall and/or distro-hop.

How do I install stuff on Linux?

Forget what you're used to do on Windows of MacOS: searching for your software in a seach engine, finding a big "Download" button on a random website and running an installer with administator privileges. Your package manager not only keeps you system up to date, but also lets you install any software that's available in your distro's repositories. You don't even need to know the command line, Gnome's Software or Plasma's Discover are nice graphical "App Stores" that let you find and install new software.

Flatpak are a great and more recent recent alternative to distro packages that's gaining a lot of traction, and is increasingly integrated by default to the aforementioned App Stores. It's basically a "universal" package manager system thet sits next to your system, that lets software developers directly distribute their own apps instead of offloading the packaging and distribution to distro maintainers.

Choosing a first distro

As discussed before, there is a metric fuckload (or 1.112 imperial fucktons) of distros out there. I advise you to keep it as mainstream as possible for your first steps. A distro with a large user base, backed by a decently large community of maintainers and contributors and aimed at being as fuss-free as possible is always better than a one-person effort tailored to a specific use-case. Choose a distro that implements well the DE of your choice.

What are great distros for beginners?

The following are great distros for beginners as well as more advanced users who just want to have a system that needs almost no configuration out of the box, just works and stays out of the way. Always read the installation documentation thoroughly before attempting anything, and follow any post-install requirements (for example, installing restricted-licence drivers on Fedora).

  • Fedora Workstation: Clean, sensible, modern and very up to date and should work out of the box for most hardware. Despite being sponsored by Red Hat (who are getting a lot of justified hate for moving RHEL away from open-source), this is a great community distro for both beginners and very advanced users (including the Linus Torvalds). Fedora is the flagship distro for the Gnome Desktop Environment, but also has a fantastic Plasma version. Keywords: Point Release, close to Bleeding Edge, Community, dnf/rpm, large maintainer team, traditional, original.
  • Linux Mint: Mint is an Ubuntu (or Debian for the LMDE variant) derivative for beginners and advanced users alike, that keeps Ubuntu's hardware support and ease of use while reverting its shenanigans and is Cinammon's flagship distro. Its main goal is to be a "just works" distro. Keywords: Point Release, halfway between Stable and Bleeding Edge, Community, apt/deb, smallish maintainer team but lots of contributors, traditional, derivative (Ubuntu or Debian).
  • Pop!_OS: Backed by hardware Linux vendor System76, this is another Ubuntu derivative that removes Snaps in favor or Flatpaks. Its heavily modified Gnome DE looks and feels nice. In a few months/years, it will be the flagship distro for the -promising but still in development- Cosmic DE. Keywords: Point Release, halfway between Stable and Bleeding Edge, commercially-backed Community, apt/deb, employee's maintainer team, traditional, derivative (Ubuntu).
  • If you want something (advertised as) zero-maintenance, why not go the Atomic way? They are still very new and there isn't a lot of support yet because they do things very differently than regular distros, but if they wort OOTB on your system, they should work reliably forever. Sensible choices are uBlue's Aurora (Plasma), Bluefin (Gnome) or Bazzite (gaming-ready), which are basically identical to Fedora's atomic variants but include (among other things) restricted-licence codecs and QOL improvements by default, or OpenSUSE's Aeon (Gnome). Keywords: Point Release, Bleeding Edge, Community, rpm-ostree, large maintainer team, Atomic, sub-project (Fedora/OpenSUSE).

Which power-user distros should I avoid as a beginner, unless I reaaaally need to understand everything instead of being productive day one?

These are amongst the very best but should not be installed as your first distro, unless you like extremely steep learning curves and being overwhelmed.

  • Debian Stable: as one of the oldest, still maintained distros and the granddaddy of probably half of the distros out there, Debian is built like a tank. A very stringent policy of focusing on bug and security fixes over new features makes Debian extremely stable and predictable, but it can also feel quite outdated. Still a rock-solid experience, with a lot to tinker with despite very sensible defaults. It is an incredible learning tool and is as "Standard Linux" as can be. Debian almost made the cut to "beginner" distros because of its incredible reliability and massive amount of documentation available, but it might be a bit too involved for an absolute beginner to configure to perfection. Keywords: Point Release, Stable as fuck, Community, apt/deb, large maintainer team, traditional, original.
  • Arch: The opposite of Debian in philosophy, packages often come to Arch almost as soon as the source code is released. Expect a lot of manual installation and configuration, daily updates, and regularly fixing stuff. An incredible learning tool too, that will make you intimate with the inner workings of Linux. The "Arch btw" meme of having to perform every single install step by hand has taken a hit since Arch has had a basic but functional installer for a few years now, which is honestly a good thing. I work in sofware. A software engineer who does every single tedious task manually instead of automating it is a shit software engineer. A software engineer who prides themself from doing every single tedious task manually should seriously reconsider their career choices. Arch's other main appeal is the Arch User Repository or AUR, a massive collection of user-created, automated install scripts for pretty much anything. Keywords: Rolling Release, Bleeding-edge, Community, pacman/pkg, large maintainer team, traditional, original.

Which distro should I avoid, period?

  • Ubuntu: despite having a huge mind-share as the beginner distro, Ubuntu suffers from it's parent company's policy to make Ubuntu kinda-Linux-but-not-really and a second-rate citizen compared to their Ubuntu Pro commercial product. Some of the worst takes in recent years have been pushing Snaps super agressively in order to get some "vendor-lock-in", proprietary walled-garden ecosystem with exclusive commercial apps, forcibly installing snaps even when explicitely asking for a .deb package through apt, baking ads and nags into major software or only delivering critical security patches to Pro customers. Fortunately, there are some great derivatives like Mint or Pop!_OS cited above that work equally well but revert some of the most controversial decisions made by Canonical.
  • Manjaro: Manjaro might seem appealing as a "user-friendlier" Arch derivative and some of its tools are fantastic to remove some configuration burden, but ongoing mismanagement issues and the fact that it needs Arch-style regular maintenance as updates often break stuff prevent it from being a truly beginner distro. Manjaro also has a highly irregular update schedule that's weeks behind Arch, making using the AUR extremely dangerous, as it always expects a fully up-to-date Arch system.
  • Any single-maintainer or tiny team distros like Nobara or CachyOS. They might be fantastic distros made by exceptional people (I have mad respect for Nobara's maintainer Glorious Eggroll and his work on Proton-GE), they are most often derivatives so the heavy lifting is already done by their parent distro's maitainers, but there is too much risk involved. Sometimes life happens, sometimes people move on to other projects, and dozens of small distros get abandonned every year, leaving their users dead in the water. Trusting larger teams is a much safer bet in the long term.
  • Anything that refuse to use standards for ideological reasons like Alpine Linux, Devuan or Artix. Don't get me wrong, not using any GNU tools or systemd is a cool technological feat and developing alternatives to the current consensus is how things evolve. However, these standard tools have a long history, hundreds if not thousands of maintainers and are used by millions, meaning there's a huge chance your specific issue is already solved. Refusing to use them should be reserved to very advanced users who perfectly understand what they're gaining and losing. As a beginner to intermediate level, it will at best make most of the documentation out there irrelevant, at worst make your life a miserable hell if you need to troubleshoot anything.

Philosophical questions, or "I've seen people arguing over the Internet and now I'm scared"

You've done your research, you're almost ready to take the plunge, you even read a lot of stuff on this very community or on the other website that starts with a "R", but people seem very passionately for or against stuff. What should you do?

Shoud I learn the command line?

Yes, eventually. To be honest, nowadays a lot of things can be configured on the fly graphically, through your DE's settings. But sometimes, it's much more efficient to work on the command line, and sometimes it's the only way to fix something. It's not that difficult, and you can be reasonably productive by understanding just about a dozen very simple commands.

I have a very old laptop/desktop, should I use a distro from its era?

Noooo!. Contrary to Windows and MacOS which only work correctly on period-correct computers, Linux runs perfectly well on any hardware from the last 20 to 30 years. You will not gain performance by using an old distro, but you will gain hundreds of critical security flaws that have been since corrected. If you need to squeeze performance out of an old computer, use a lightweight graphical environment or repurpose it as a headless home server. If it's possible, one of the best ways to breathe new life into an old machine is to add some RAM, as even lightweight modern sofware will struggle with less than a few Gb.

Should I be concerned about systemd?

No. In short, systemd is fine and all major distros have switched to systemd years ago. Even the extremely cautious people behind Debian have used systemd as default since 2015. Not wanting to use systemd is a niche more rooted in philosophical and ideological rather than practical or technical reasons, and leads to much deeper issues than you should concern yourself with as a beginner.

Should I be concerned about XOrg/Wayland?

Yes and No, but mostly No. First off, most distros install both Wayland and XOrg by default, so if one is not satisfying to you, try the other. Remember in the preamble when I said nVidia was a bad actor? Well, most of people's complaints about Wayland are because of nVidia and their shitty drivers, so GTX/RTX users should stay on XOrg for now. But like it or not, XOrg is dead and unmaintained, and Wayland is the present and future. XOrg did too many things, carried too many features from the 80's and 90's and its codebase is a barely maintainable mess. X11 was born in a time when mainframes did most of the heavy lifting and windows were forwarded over a local network to dumb clients. X11 predates the Internet and has basically no security model. Wayland solves that by being a much simpler display protocol with a much smaller feature set adapted to modern computing and security. The only downside is that some very specific functionalities based on decades of X11 hacking and absolute lack of security can be lost.

I want to play some games, should I look for a gaming distro?

No. General purpose distros are perfectly fine for gaming. You can install Steam, Lutris, Heroic, Itch etc. and use Proton just fine on almost anything. Even Debian. In short, yes, you can game on Linux, there are great tutorials on the internet.

Should I be concerned about Flatpaks and/or Snaps vs. native packages?

Not really. Flatpaks are great, and more and more developers package their apps directly in Flatpak format. As a rule of thumb, for user facing applications, if your app store gives you the choice between Flatpak and your native package manager version, choose the most recent stable version and/or the one packaged by the developer themselves (which should often be the Flatpak anyway). Snaps however are kinda bad. They are a Canonical/Ubuntu thing, so as long as you avoid Ubuntu, its spins and its derivatives that still include Snaps, you should be fine. They tend to take a lot longer to startup than regular apps or Flatpaks, the snap store is proprietary, centralized and Canonical controls every part of it. Also, Canonical is very aggressive in pushing snaps to their users, even forcing them even when they want to install an apt package. If you don't care, have fun.

I need/want program "x", but it is only available on distro "y" and not on mine. I've been told to ditch my beloved distro and install the other one, should I?

No. Generally, most software is intallable from your distro's package manager and/or Flatpak. But sometimes, your distro doesn't package this program you need, or an inconsiderate developer only distributes a random .deb on their Github release page. Enter Distrobox. It is a very simple, easy to use command line tool that automates the creation of other Linux distros containers using Docker or Podman (basically, tiny, semi-independant Linuxes that live inside your regular Linux), and lets you "export" programs installed inside these containers to you main system so you can run them as easily and with almost the same performance as native programs. Some atomic distros like uBlue's variants even include it by default. That .deb we've talked about before? Spin a Debian container and dpkg install the shit out of it. Absolutely need the AUR? Spin an Arch container and go to town.

Acknowledgements

Thanks to everyone who helped improve this guide: @GravitySpoiled@lemmy.ml, @tkn@startrek.website, @throwaway2@lemmy.today, @cerement@slrpnk.net, @kzhe@lemm.ee, @freijon@feddit.ch, @aarroyoc@lemuria.es, @SexualPolytope@lemmy.sdf.org, @Plopp@lemmy.world, @bsergay@discuss.online ...and many others who chimed in in the comments <3

Link to version 1: https://lemm.ee/post/15895051

2
 
 

Timestamps:

00:00 Intro

00:36 Sponsor: TuxCare

01:45 Flatpak gets half a million in funding

03:57 Omarchy gets 8 million dollars

06:05 Nintendo nukes 400 repos linked to emulation

08:16 GrapheneOS will come to Motorola flagships

09:34 Kernel 7.3 brings a lot of performance improvements

11:10 BTRFS improves, ext4 and XFS still much faster

13:09 Chromium working on adding proper Flatpak support

14:35 Multikernel project has its first version

16:39 Asahi project now supports M3 macs

18:30 LibreOffice gets big improvements

20:42 Apple starts putting ads in their Maps app

23:26 Wine and Proton update

24:57 Sponsor: Tuxedo Computers

Links:

Flatpak gets half a million in funding

https://modal.cx/blog/announcing-flatpak-sta/

Omarchy gets 8 million dollars

https://linuxiac.com/arch-based-omarchy-linux-distro-lands-a-massive-8m-boost/

https://omarchy.org/news/2026/08/omacom-foundation-launches-with-8-million/

Nintendo nukes 400 repos linked to emulation

https://www.tomshardware.com/video-games/nintendo/nintendo-takes-down-over-400-github-repositories-for-switch-emulators-in-one-go-relentless-dmca-strikes-tied-to-piracy-concerns-over-illegal-cryptographic-keys

GrapheneOS will come to Motorola flagships

https://linuxiac.com/grapheneos-support-is-coming-to-motorola-flagships-in-2027/

https://grapheneos.social/@GrapheneOS/117078064184215730

Kernel 7.3 brings a lot of performance improvements

https://itsfoss.com/news/linux-7-3-preview/

BTRFS improves, ext4 and XFS still much faster

https://www.phoronix.com/review/linux-73-filesystems/4

Chromium working on adding proper Flatpak support

https://www.phoronix.com/news/Chrome-Chromium-Flatpak

Multikernel project has its first version

https://linuxiac.com/multikernel-linux-releases-first-public-kernel-tree-based-on-linux-7-0/

https://lore.kernel.org/lkml/ao34RJ7aZ2BLd67S@pop-os.localdomain/

Asahi project now supports M3 macs https://asahilinux.org/2026/08/progress-report-7-2/

LibreOffice gets big improvements

https://blog.documentfoundation.org/blog/2026/08/26/libreoffice-26-8/

Apple starts putting ads in their Maps app

https://www.techradar.com/phones/iphone/ill-just-use-google-maps-apple-maps-users-rebel-against-new-ads-that-you-cant-turn-off-even-with-an-icloud-subscription

Wine and Proton update

https://gitlab.winehq.org/wine/wine/-/releases/wine-11.16

https://www.gamingonlinux.com/2026/08/proton-11-0-2-is-out-with-lots-of-gaming-fixes-for-linux-steamos-steam-deck-steam-machine/

3
4
5
Greg K-H: CVEs per release (social.kernel.org)
submitted 17 hours ago* by to c/linux@lemmy.ml
6
 
 

Every time when i poweron the pc, some proccess are started with the system. Some of them are Anydesk and SQL. I had disable sql from start alongside the system with systemctl disable mysql, so i think that i need to do the same with anydesk. But why these programs make this? Even if i dont start the app/program, they will be there, eating resources from the start... WHY THIS HAPPEN?!?!

Edit: Something i forgot to put: why they have root permissions? this happen no wonder the system i install these programms, they have the same behaviour

7
 
 

A demo of a lone palmtree on an island, with a fps counter on the top left. The camera moves around freely, but can be interacted by zooming in or out. It has a day/night cycle of 5 minutes... with the shadow following along the sun/moon. It also has a soothing sea sound, plus the eventual seagull. If you want to make your ARM device "explode", this is it. Focuses on GPU usage.

Download it by clicking here.

Download dependencies (Debian): sudo apt install build-essential libsdl2-dev libvulkan-dev glslc

Requirements:

Vulkan 1.2

SDL 2

A GPU with compute shaders support

Keys:

Reduce render resolution with -, and + to increase it.

Zoom in with mouse scroll wheel up. And out with mouse scroll wheel down.

How to compile:

Download the tar file provided in the link above.

Decompress it

Download the required dependencies

Enter the decompressed directory

make -j$(nproc)

Then run it by typing ./lonepalmtree

8
 
 

**NOTE: i have only used linux for about a year or so and im not a power user, im basically a tired windows user but i know more stuff than most beginners i feel like? like not a lot more but a little bit ** so when i don't have anything open my memory usage is like 4-5GB out of 16, which makes it pretty bad when i want to play games (even minecraft can make it so my pc use 99% memory so i have to hard reset, although i might have fixed that) and/or when i want some demanding theming things (like a live wallpaper). "Background services" is using like 4GB and "baloo_file_extractor" is using like 1GB out of the 4. I have done a tiny tiny bit of research and ive found out that baloo is a file indexing thingo, but idrk what file indexing is used for so i don't know if i should disable it

distro: endeavourOS de: kde plasma wayland ram: 16gb of something (i have a prebuilt so idk what ddr it is or whatever)

if you need more info then please say so (i can't show images for some reason)

9
 
 

How to get windows to not do disk checking or ruin my bootloader when i add a linux partition on the same drive. I don't like the windows panicking when there is a linux partition on it and doing a variety of things, even if its not on the same ssd it STILL does disk checking but I have not seen anything worse than that on the same partition, but I need the space.

Dunno if this belongs in the linux subreddit but I mean if there is any way i can hide linux that could also work.

10
11
12
Get your Windows license refund (en.refund4freedom.org)
submitted 1 day ago* by to c/linux@lemmy.ml
13
 
 

I need to map network shares from my Synology NAS and also from a Win11 Pro desktop. There are just so many variations on how to do this. All I need to do is map drive letters to shares on startup so they are always available.

Sorry for the noob question.

14
15
submitted 3 days ago* (last edited 3 days ago) by to c/linux@lemmy.ml
 
 

Hi,
I will be writing petition to my government (Poland) to try to get them to ban Windows at schools. I believe it should be illegal to force children to use systems that are paid and use children’s data for AI and advertising.
Maybe you will do it as well? Let’s end this insane practice.

16
 
 

So preface, I am extremely OOTL with the distros. I have my Fedora box for work and its been running just fine for 5 years now. Before that i am an Arch btw user with i3 config riced to the max. I wanted to get actual work done so i stuck with Fedora and have not attempted any other distros.

Anyway, this Omarchy seems like a big deal? Idk everywhere i search, people are saying stuff like it is the best thing for Linux. Recently, there was news that Omarchy actually got funded for like $8 million?? The money comes from some big names too: Dell, DHH, Stripe, Jack Dorsey...etc. The dev who is working on Hyprland also indirectly benefits from this funding.

Is this going to become a serious corporate backed distro? We have Redhat for that right? Or is this just hype

17
submitted 2 days ago* (last edited 2 days ago) by to c/linux@lemmy.ml
 
 

EDIT: Ended up going for Kubuntu anyway. Installed it with separate / and /home so in case they want to explore more there's the option.

I daily drove Linux for about 6 years and finally managed to convince some of my family members to try it!

However, I realized I don't have a lot of ideas about beginner distros. I have some requirements that led me to some decisions, but there doesn't seem to be a fit-all option:

  • Minimal maintenance -> Debian-based (stable release)
  • High compatibility -> Debian-based (.deb seems more convenient than say, AUR)
  • Familiarity -> KDE Plasma (looks like Windows, very customizable)

It's for a Thinkpad X1. The main purpose is going to be academics.

All of that points to Kubuntu, but I worry about the Canonical Snap store stuff.

Everyone recommends Linux Mint for starters, but it doesn't come with a KDE Plasma flavour. I know I can install it myself, but the integration is gonna be bad and they're gonna bug me a lot.

I use Endeavour OS personally, so I'm somewhat familiar with Arch-based system. I guess .debs can be installed with debtap, but that feels like a whole another hacky solution. I have done university courses with my Endeavour OS laptop and I know quite a bit of software comes in .deb but not AUR.

What should I pick for them? And should I get more input from them? If so, what should I ask about?

18
current status of the web (how-i-experience-web-today.com)
submitted 3 days ago by to c/linux@lemmy.ml
 
 

cross-posted from: https://feddit.org/post/34629418

i think the article does a wonderful job at illustrating the point without even uttering a single word

19
 
 

I am looking for good options for an elderly relative which has some onset of slight dementia, but is still living alone (with assistance).

The main problem is that usual things are becoming just too complicated for that person. There are too many details that don't matter. For example, user interfaces have a lot of features that are not strictly needed, many hidden states, often no clearly visible affordances, and so on. Some mail clients make it difficult to recognize phishing.

As a good example how it is done better, I'd name GNOME simple-scan. A really good and simple UI!

This person is currently using Thunderbird + Firefox on Windows, and K9 Mail on Android. Learned to use Windows in their sixties and is now in mid-eighties age.

The main need is a simpler Email client.

Any suggestions?

20
21
 
 

I was reading on the web that clamav is not an "endpoint antivirus solution" but at the same time its called the best antivirus for gnu/linux and gnu/linux servers. Is worth for a desktop/personal computer?

22
submitted 4 days ago* (last edited 4 days ago) by to c/linux@lemmy.ml
 
 

Slop Linux got money to spend and the reactionary ----- is the first one to get it.

David Heinemeier Hansson, aka DHH, has put a number on how serious he is about desktop Linux. That number is eight million dollars, and it's going into a brand new nonprofit called the Omacom Foundation.

DHH is incorporating the foundation now, set to cover the Omarchy trademark, its infrastructure and hosting, promotion for the project, and funding for the open source developers whose work it depends on.

He calls it a "moral obligation," not just to get Omarchy into more people's hands but to change how they use a computer in the first place.

The above is so Google-in-early-days-vibes coded that one has to think they should know by now that nobody is buying it. Except that the gen alpha has the attention span of a flea and doesn't really read anything nor it's interested in History. So those techy bozos will always find new prey.

Michael Dell of Dell Technologies, Patrick Collison of Stripe, Tobi Lütke of Shopify, Jack Dorsey of Block, Matthew Prince of Cloudflare, Jason Fried of 37signals, Brendan Iribe of Sesame, and DHH himself each put in a million dollars to make it happen.

People already like using Omarchy, DHH says, and he wants this money to last as long as possible instead of getting spent all at once while also making the most out of it.

There are two major updates to this. Omacom funding has hit $10 million, and it has become a premier sponsor for Quickshell.

Hyprland first to gain

Hyprland is the first project outside Omarchy to see any of this money. Omacom is extending an exclusive sponsorship to support Vaxry, the developer behind the Wayland compositor Omarchy runs on.

Under this, he is locked into an agreement for three years, with the possibility of extending for two more years.

This way Vaxry gets to work on Hyprland full time without needing to think about the money. As part of this arrangement, the €5/month Hyprperks subscription service will be discontinued, and everything offered under it will be provided for free.

DHH also joked about finding Vaxry a pookie, noting that:

Many thanks to 37signals (hello self! 😂), Butterfly, and Framework for helping Hyprland get to this point. Thrilled that the Omacom Foundation can take over from October 10, and give one of the best developers in this new Linux moment the chance to go all-in.

(* This deal does not include any direct assistance in getting Vaxry a girlfriend, but I’ll personally be available as a reference for any inquiries on the matter.*)

I'll feel bad for any girl taking her chances.

Do you remember this?

This isn't the first time we are talking about money and Hyprland. Back in 2025, Framework became a Gold tier sponsor of the project. But that didn't sit too well with many people, as soon after, a thread titled "Framework supporting far-right racists?" came up on the official forum.

The original poster called out Vaxry's old freedesktop.org ban and pushed Framework to explain why it was funding the project. Framework's own account made things worse that same day. It posted a tweet comparing Omarchy to the old Windows XP product key meme, and people read that as an endorsement of DHH.

While Framework did send hardware to people at Omarchy, the project itself never got any direct funding. Later, Framework had to start publishing a running list of its sponsorships after people kept asking exactly who the company was funding and why.

Where Omarchy's headed

Quattro, Omarchy's newest release, shipped recently, building AI agents into the desktop by default instead of treating them as an extra. While none of the eight patrons have said publicly that Omarchy's AI bet factored into their decision to back the foundation.

My read is that it's hard to ignore, especially with Michael Dell's company betting heavily on AI infrastructure elsewhere. A distro built around AI agents is exactly the kind of bet a company selling AI hardware would want to back.

And it all ties into what DHH said about truly democratizing Linux.

Whether that $8 million and a nonprofit structure are what bring about the "year of the Linux desktop" is a question for another time.

23
24
 
 

Almost a year after the Multikernel project shared its Linux kernel code and submitted its first patches for review, the team has now made its Multikernel Linux tree publicly available for the first time. This release is built on Linux 7.0 and is labeled v7.0-mk2 in the project’s kernel tree. Currently, only x86_64 is officially supported.

If you haven’t heard of it, Multikernel is a new way of using Linux on big multi-core systems. Rather than one Linux kernel running everything, it lets several separate Linux kernels run side by side on the same hardware.

The main idea is simple. One Linux instance acts as the host and manages a pool of CPUs, memory, and PCI devices. It can split these resources into separate groups and start another Linux kernel in each group. Unlike virtual machines, these extra kernels don’t run on a hypervisor. Each one gets its own physical CPUs, memory, and devices, and runs right on the hardware.

Resources aren’t locked in place, either. The project says you can shut down instances, return their CPUs, memory, and devices to the host, and then start new instances with a different kernel if needed.

With this release, the project has also shared performance comparisons showing where its bare-metal approach can outperform traditional virtualization. In one set of lmbench tests, Multikernel was compared to a well-tuned KVM virtual machine. Both used the same kernel build, two CPU cores, and 1 GB of memory on a dual-socket Intel Xeon Gold 5418Y system.

The results showed almost the same memory latency and bandwidth, which makes sense given how efficient modern hardware virtualization is. The bigger differences showed up in tasks that need lots of transitions and CPU wakeups.

For example, the tests showed a two-process context switch took 1.37 microseconds with Multikernel, compared to 3.42 microseconds in the default KVM guest. Pipe latency was 3.24 microseconds versus 7.06, and Unix socket latency was 4.81 versus 7.48 microseconds.

However, the developers point out that these numbers don’t mean Multikernel is always several times faster than KVM. A lot of the difference comes from how idle virtual CPUs are managed. In the default KVM setup, waking an idle vCPU means leaving and re-entering the virtual machine. Multikernel, on the other hand, manages its physical CPU cores directly.

The downside is that these CPU cores look fully used to the host and use more power. The project measured about 19 extra watts in this setup. Giving the guest more control over CPU power management also helped latency, but still came with power and resource tradeoffs.

For this first public release, the developers say x86_64 has been tested the most. Support for other architectures may come later. The architecture-specific interfaces have already been separated with future ports in mind, but none are officially supported yet.

For additional details, see the announcement. You can find the Multikernel Linux source code on GitHub. The project also offers a getting-started guide for anyone who wants to try out the technology.

25
 
 

view more: next ›