this post was submitted on 23 Sep 2025
85 points (97.8% liked)

Linux

58584 readers
2081 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

Related Communities

Community icon by Alpár-Etele Méder, licensed under CC BY 3.0

founded 6 years ago
MODERATORS
you are viewing a single comment's thread
view the rest of the comments
[–] tla@lemmy.world 11 points 5 days ago (5 children)

How is this better than a hypervisor OS running multiple VM's?

[–] LeFantome@programming.dev 7 points 4 days ago* (last edited 4 days ago)

There is no hypervisor. So, no hypervisor to update and manage.

[–] friend_of_satan@lemmy.world 5 points 4 days ago

I recently heard this great phrase:

"A VM makes an OS believe that it has the machine to itself; a container makes a process believe that it has the OS to itself."

This would be somewhere between that, where each container could believe it has the OS to itself, but with different kernels.

[–] avidamoeba@lemmy.ca 14 points 5 days ago* (last edited 5 days ago)

I imagine there's some overhead savings but I don't know what. I guess with classic hypervisor there's still calls going through the host kerbel whereas with this they'd go straight to the hardware without special passthrough features?

[–] deadcade@lemmy.deadca.de 5 points 5 days ago

Saving on some overhead, because the hypervisor is skipped. Things like disk IO to physical disks can be more efficient using multikernel (with direct access to HW) than VMs (which have to virtualize at least some components of HW access).

With the proposed "Kernel Hand Over", it might be possible to send processes to another kernel entirely. This would allow booting a completely new kernel, moving your existing processes and resources over, then shutting down the old kernel, effectively updating with zero downtime.

It will definitely take some time for any enterprises to transition over (if they have a use for this), and consumers will likely not see much use in this technology.

[–] fruitycoder@sh.itjust.works 1 points 3 days ago

More transparent hardware sharing, less over head by not needing to virtualize hardware.