13 comments

  • Fiveplus12 hours ago
    A good update. The <i>VIRTIO_NET_F_MTU</i> negotiation has been a roadblock for many guest OS implementations on apple&#x27;s virtualization stack. The spec is vague enough that linux just does it while openbsd had to explicitly patch in support to handle the hypervisor&#x27;s hardmtu limit.<p>This is a big deal for local development imho. With the raw single-thread performance of the M4&#x2F;M5 chips, an openbsd guest is arguably the best environment for testing pf configurations or running isolated mail servers (for example). Being able to rely on viogpu without the black-screen-of-death means we can slowly move away from serial console-only installs for quick VMs.<p>Big kudos to Helg and Stefan!
    • eru5 hours ago
      &gt; With the raw single-thread performance of the M4&#x2F;M5 chips, an openbsd guest is arguably the best environment for testing pf configurations or running isolated mail servers (for example).<p>A unikernel would probably be even better? (But then you need a mail server that&#x27;s set up for running as a unikernel, without an underlying OS.)
    • wang_li2 hours ago
      &gt;Being able to rely on viogpu without the black-screen-of-death means we can slowly move away from serial console-only installs for quick VMs.<p>No, thanks. My IaC doesn&#x27;t want or need any interaction when spinning up a quick or slow VM.
  • patjensen13 hours ago
    The bigger news is that this also fixes the QEMU compatibility bug that makes OpenBSD hang out of the box on arm64 when starting X.<p>It started in 7.3 with the frame buffer changes and the only workaround was to disable the kernel driver.<p>Maybe more people will get to try out OpenBSD successfully now.
    • someguyiguess4 hours ago
      I am one of them! Been wanting to try it out for a while but my only available machine is an MBP
    • archy_2 hours ago
      Why does QEMU need to start X? Shouldn&#x27;t that be OpenBSD&#x27;s responsibility?
    • danwills8 hours ago
      [flagged]
      • fleshmonad7 hours ago
        Maybe not posting such comments would increase the value of this site.
  • my12314 hours ago
    Note that this is about Virtualization.framework (Apple&#x27;s first party VMM). OpenBSD worked on Hypervisor.framework + qemu since a very long time.
    • tannhaeuser9 hours ago
      Out of my depth here. Is that the one Tahoe was introducing? What did it solve that was impossible before?
      • m1327 hours ago
        Virtualization.framework was introduced in Big Sur. It builds on top of Hypervisor.framework and is essentially Apple&#x27;s QEMU (in some ways quite literally, it implements QEMU&#x27;s pvpanic protocol for example). Before QEMU and other VMMs gained ARM64 Hypervisor.framework support, it was the only way to run virtual machines on ARM Macs and still is the only official way to virtualize ARM macOS.<p>The new Tahoe framework you&#x27;re probably thinking of is Containerization, which is a WSL2-esque wrapper around Virtualization.framework allowing for easy installation of Linux containers.
        • archy_2 hours ago
          &gt;a WSL2-esque wrapper around Virtualization.framework allowing for easy installation of Linux containers.<p>So Linux is now a first class citizen on both Windows and Mac? I guess it really is true that &#x27;if you can&#x27;t beat em, join em.&#x27; Jobs must be rolling in his grave.
          • trentnelson1 hour ago
            I mean to be fair, WSL1 and WSL2 are extremely successful engineering efforts by Microsoft. I can’t imagine having to go back to the Cygwin days.
    • atmosx5 hours ago
      Oh good point. I mixed it up, UTM is using qemu under hood, but as someone mentioned now OpenBSD snapshot boots with qemu seemlesly. It&#x27;s still virtualised though.
    • cpach11 hours ago
      Good point. The naming of those frameworks is sooo confusing. IMHO, nearly impossible to not mix them up.
      • carlm425 hours ago
        My mental model is that each of these covers a different layer of the stack, from lowest to highest:<p>* hypervisor-framework handles the hypervisor bits, like creating virtual machines, virtualising hardware resources, basically a C API on top of Apple&#x27;s hypervisor<p>* virtualization-framework is a higher-level API, meant to make it easy to run a full-blown VM with an OS and hardware integration, without having to reinvent the integration with lower-level primitives that hypervisor-framework provides<p>* containerization-framework uses virtualization-framework to run Linux containers on macOS in microVMs.<p>By analogy to not mix them up, it&#x27;s a bit like KVM &gt; QEMU &gt; containerd.<p>Hope this helps!
        • Angostura3 hours ago
          Well, it help me. So thanks!
  • 6r1732 minutes ago
    I wonder if openbsd is secure running as a guest ? it it able to isolate it-self sufficiently so that the host cannot mathematically breach it ? (which makes openbsd very suitable for keyholding)
  • MillionOClock10 hours ago
    Maybe I am missing something but the last few times I tested VMs it seemed to end up never <i>shrinking</i> in RAM size once it had grown, is this a real issue and if so is there any improvement coming on that front?
    • daneel_w9 minutes ago
      You&#x27;re missing the complexity of making the guest inform the host that it has fully freed this and that slab of memory and that the host may reclaim it until further notice. It&#x27;s a bit more complicated than the other way around, where the guest believes it has e.g. 4 GiB of RAM available but the host doesn&#x27;t allocate all of it for the guest until it tries to read&#x2F;write there. A virtual machine is something entirely else than a containerized piece of software.
    • TacticalCoder4 hours ago
      &gt; Maybe I am missing something but the last few times I tested VMs ...<p>Tested VMs on <i>what</i>? For VMs are used daily and there are, what, <i>hundreds of millions</i> of VMs running as we speak? Billions?
  • SomaticPirate13 hours ago
    Is there a guide on how to do this? I haven’t ever used the raw hypervisor.
    • signa1112 hours ago
      a quick kagi search revealed this: <a href="https:&#x2F;&#x2F;briancallahan.net&#x2F;blog&#x2F;20250222.html" rel="nofollow">https:&#x2F;&#x2F;briancallahan.net&#x2F;blog&#x2F;20250222.html</a>, perhaps it might work for you too ?
      • grosswait5 hours ago
        This compares VMWare Fusion to Virtual Buddy
    • eschaton13 hours ago
      It should just be a matter of producing a kernel and, if necessary, RAM disk that can be booted the same way as Linux.
      • jonhohle11 hours ago
        “just” is doing a lot of work in that sentence.
        • eschaton10 hours ago
          Yes and no; kernels aren’t magic, and “change how this kernel is loaded to match how Linux does it” is actually a reasonable first assignment for an Operating Systems class at a top-tier school. (You’re basically just creating an alternative `main()` if you don’t need a RAM disk image from which to load drivers.)
          • fooker8 hours ago
            It&#x27;s a first assignment if you are talking about a computer from 1990.
            • eschaton8 hours ago
              What, pray tell, would you do for a first assignment in an Operating Systems class at a top-tier school that actually involves making changes to on realistic operating system code?
              • surajrmal2 hours ago
                This is the set of assignments they do at the university of Illinois (a top 10 computer engineering school): <a href="https:&#x2F;&#x2F;courses.grainger.illinois.edu&#x2F;ece391&#x2F;fa2025&#x2F;assignments.html" rel="nofollow">https:&#x2F;&#x2F;courses.grainger.illinois.edu&#x2F;ece391&#x2F;fa2025&#x2F;assignme...</a><p>It looks roughly the same as when I took 15 years ago, except they switched to riscv from x86. Honestly, what you&#x27;re describing sounds too difficult for a first assignment. Implementing irq handlers or syscalls on an existing codebase is far more realistic, plausible, and useful.
              • fooker7 hours ago
                I had to implement system calls in xv6.<p>You can look up which top tier schools use it for OS classes.
                • glhaynes6 hours ago
                  At the risk of getting further off-topic: what sort of system calls did they have you implement? I’ve never done but a tiny bit of kernel hacking and that sounds like a good exercise, but I’m not sure what would be a good first syscall to add.
                  • surajrmal2 hours ago
                    Try asking your favorite llm. They will even guide you with a small curriculum.
                    • throwaway1324482 hours ago
                      Advice like this, and then people wonder why they’re lonely.
                • eschaton7 hours ago
                  Oh, is that what MIT’s using these days?
      • cpach11 hours ago
        Then one needs to launch it. Not sure if there are any lancher UIs out there, or if one has to write custom code for that.
        • eschaton10 hours ago
          My point is that as long as OpenBSD can boot like Linux, you just have to tell whatever VM front-end you’re using that you’re booting a Linux but give it an OpenBSD kernel and RAM disk.<p>Traditionally BSD has booted very differently than Linux, because Linus adopted the same boot process as MINIX when he first developed it (since he was actually using the MINIX boot blocks at first).<p>BSD has historically used a bootstrap that understands V7FS&#x2F;FFS and can load a kernel from a path on it. MINIX takes the actual kernel and RAM disk images as parameters so it doesn’t need to know about filesystems, and that tradition continued with Linux bootstraps once it was standalone.
          • Rediscover10 hours ago
            Who else was rdev&#x27;ing the Linux kernel to tell it where the root ext2(?) partition was long before they were using RAM disks? Like with SLS or MCC?
            • fragmede9 hours ago
              Originally Linux had Minix FS, followed by ext. Ext2 wouldn&#x27;t make an appearance until 1993 by Rémy Card, so it depends on when you were using it.
        • fragmede9 hours ago
          Parallels will run a VM that can (manually) boot bsd.rd from the EFI shell if you stick BOOTAA64.EFI and bsd.rd on a FAT32 GUID formatted.dmg, connect it to the VM, then boot EFI shell. Type:<p><pre><code> connect -r map -r fs0: bootaa64.efi boot bin.rd </code></pre> Then you&#x27;ll be in the OpenBSD installer, having booted an OpenBSD kernel.<p>You can grab the files from: <a href="https:&#x2F;&#x2F;ftp.openbsd.org&#x2F;pub&#x2F;OpenBSD&#x2F;snapshots&#x2F;arm64&#x2F;" rel="nofollow">https:&#x2F;&#x2F;ftp.openbsd.org&#x2F;pub&#x2F;OpenBSD&#x2F;snapshots&#x2F;arm64&#x2F;</a><p>Actually installing the system is left as an exercise for the reader.
  • singularity20019 hours ago
    so does redox at least this fork: <a href="https:&#x2F;&#x2F;github.com&#x2F;pannous&#x2F;redox" rel="nofollow">https:&#x2F;&#x2F;github.com&#x2F;pannous&#x2F;redox</a> completely Rust-based without any Makefiles.
  • ggm9 hours ago
    Well done! FreeBSD 15 is a complete no-go for X right now on utm, rdp&#x2F;vnc is the only way. Hopefully somebody will work out how to get a frame buffer working there, from this.
  • infi_v128 hours ago
    This is a significant milestone for OpenBSD on Apple hardware. The improved support for Virtualization.framework will definitely make local development and testing much smoother for many users. Kudos to the developers!
  • maximgeorge4 hours ago
    [dead]
  • hindustanuday11 hours ago
    [dead]
  • iberator12 hours ago
    No X and networking. What&#x27;s the point then? Useless imo
    • mghackerlady3 hours ago
      Networking is a disappointment but OpenBSD kinda expects you to use the command line. Fire up tmux (included because they invented it) and read the god tier manpages and play some of the games that are included
      • cyberpunk1 hour ago
        OpenBSD did not “invent” tmux afaik it was imported later.
        • brynet1 hour ago
          tmux was my first OpenBSD port, way back in 2008, albeit it was rather short-lived.<p><a href="https:&#x2F;&#x2F;marc.info&#x2F;?l=openbsd-ports-cvs&amp;m=121226747005033&amp;w=2" rel="nofollow">https:&#x2F;&#x2F;marc.info&#x2F;?l=openbsd-ports-cvs&amp;m=121226747005033&amp;w=2</a><p>I had discovered it searching on SourceForge originally, but the tmux creator Nicholas Marriott was already an OpenBSD user and he took MAINTAINER for the port.<p>A year later, tmux was imported by nicm@ to the OpenBSD base system, where it has remained upstream for last 16 years (GitHub sync&#x27;s from OpenBSD).<p><a href="https:&#x2F;&#x2F;marc.info&#x2F;?l=openbsd-cvs&amp;m=124389728412353&amp;w=2" rel="nofollow">https:&#x2F;&#x2F;marc.info&#x2F;?l=openbsd-cvs&amp;m=124389728412353&amp;w=2</a>