• 9 Posts
  • 1.73K Comments
Joined 1 year ago
cake
Cake day: July 6th, 2023

help-circle
  • Yeah. When I heard what they were doing with the library stuff. I thought that was such a weird hill to die on.

    Like how could any lawyer tell them they had a chance in hell of breaking copyright law at scale, because of the pandemic?

    And they didn’t create a new organization to do this very legally risky thing, they did it under their normal organization not some LLC. Crazy


  • Technically yes. There’s nothing special about the code running in the CPU. Long time ago there was an application that would switch from Windows to Linux without rebooting. But it was super unstable. You didn’t reinitialize all the memory… Some devices on the bus expect to get initialized one time, and can’t be reinitialized later after the system’s powered on, It’s asking for trouble

    What you really want to do, is have multiple operating systems running on different cores at the same time. And this is an ideal use case for a hypervisor like Xen which is a microkernel. That will then dedicate a CPU to any operating system you want, so they’re running in parallel.

    Then swapping between the operating systems is as simple as giving one control of the keyboard video and mouse.

    This is as close as you can get to having two different computers running side by side.