this post was submitted on 31 Jan 2024
61 points (100.0% liked)
Linux
48082 readers
757 users here now
From Wikipedia, the free encyclopedia
Linux is a family of open source Unix-like operating systems based on the Linux kernel, an operating system kernel first released on September 17, 1991 by Linus Torvalds. Linux is typically packaged in a Linux distribution (or distro for short).
Distributions include the Linux kernel and supporting system software and libraries, many of which are provided by the GNU Project. Many Linux distributions use the word "Linux" in their name, but the Free Software Foundation uses the name GNU/Linux to emphasize the importance of GNU software, causing some controversy.
Rules
- Posts must be relevant to operating systems running the Linux kernel. GNU/Linux or otherwise.
- No misinformation
- No NSFW content
- No hate speech, bigotry, etc
Related Communities
Community icon by Alpár-Etele Méder, licensed under CC BY 3.0
founded 5 years ago
MODERATORS
you are viewing a single comment's thread
view the rest of the comments
view the rest of the comments
TL:DR:
Fedora Atomic Desktops is the umbrella term for Distros like
They have a different, image-based OS core, which is read-only when used. This is known as "immutable", but you can actually
The benefits are
rpm-ostree reset
/var/home
is mounted executable and everything is writable by the user. It is a start though.Modifications can still be done
rpm-ostree
/etc
and/var
are completely writableApps are installed like this:
rpm-ostree install
. Will be added to the system on every update and work just like on regular Fedora. Slow down updates, pull in often tons of dependencies and thus should be used sparsely[distrobox/toolbox] enter {name} -- {appname}
, for exampledistrobox enter Fedora -- qgis
. Distrobox automates the desktop entry creation, its simplycp /usr/share/applications/appname.desktop ~/.local/share/applications/ && sed -i 's/Exec=/Exec=toolbox enter {name} -- /g' ~/.local/share/applications/appname.desktop
(and a bit more, just use Distrobox)There are also many more solutions. In theory you can make Snaps work, but just don't.
There are kata containers which are really fancy and in future will hopefully allow an isolated environment like on ChromeOS...
or you can run normal VMs (You can run libvirt (
qemu qemu-kvm
) in a rootful Distrobox,virt-manager
in a rootless Distrobox and connect over ssh. Or just layer the packages)You can use binaries like
ffmpeg
from the Flatpak runtimes.Also have a look at secureblue, an ecosystem of Fedora Variants with highly improved Security, while perfectly usable.
And now read the post.