macOS Container Machines

(github.com)

330 points | by timsneath 3 hours ago

29 comments

  • timsneath 2 hours ago
    To clarify a few comments here: this is not only OCI containers: container machines add support for persistence and filesystem mounting, making container machines a great lightweight Linux environment for developers using macOS. More details here: https://developer.apple.com/videos/play/wwdc2026/389
    • Onavo 2 hours ago
      Ah, the Darwin/BSD Subsystem for Linux.
      • CGamesPlay 1 hour ago
        Not quite, it’s still a VM. And while it supports virtio balloon for growing RAM, it doesn’t yet support releasing that RAM back to the host. And there isn’t a convenient way to shrink the sparse disk images as they grow yet, either.
        • AlexB138 1 hour ago
          Isn't the Windows subsystem for Linux (the reference there) also a VM?
          • gsnedders 1 hour ago
            Only WSL2; WSL1 was an actual subsystem.
            • selcuka 1 hour ago
              So this is Darwin/BSD Subsystem for Linux 2.
            • LoganDark 1 hour ago
              WSL1 was so cool, WSL2 made it boring and isolated.
              • TylerE 1 hour ago
                Back in my day you to to download a couple GB worth of cygwin, and that wasn't an actual environment, basically just a GNU toolchain compiled for windows. But it got you like....grep and bash and stuff that ran natively on windows which was kinda cool.
                • noduerme 35 minutes ago
                  Cygwin was fun. I'd done zero development on Windows, but about 10 years ago I had to figure out how to deploy some nightly shell scripts across a bunch of local computers in a few dozen offices, where about 80% were MacOS and the rest were Windows. I don't remember exactly how I rigged it, but basically cygwin allowed me to keep the scripts as they were and trigger them in place, with a few small modifications.

                  I never want to deal with that again ;)

                  [edit] fwiw, Termux on Android is similarly a fun pseudo-environment. It's a nice and helpful toy.

                  • TylerE 28 minutes ago
                    The biggest issue I remember is directory seperators... windows of course using \ which bash would then interpret as an escape. Cygwin mostly papered over that from what I can recall, but it could lead to some weirdness, like sometimes you'd get C:\\path\\es\\like\\this
                    • rpeden 12 minutes ago
                      You could also use forward slashes, like C:/path/subpath, which has worked since Windows 1.0/DOS 2.0.

                      That's handy when you're entering paths in a Cygwin/MSYS Bash shell, but might not help much if you're trying to parse or otherwise work with existing patgh variables composed with backslashes.

                • _blk 1 hour ago
                  ... Now it's just called git bash
                  • michaelsbradley 57 minutes ago
                    Just install and use MSYS2, git bash is derived from it anyway, and a regular MSYS2 installation offers a lot more.
        • jayd16 1 hour ago
          Mac Subsystem for Linux 2
  • blahgeek 2 hours ago
    OrbStack works really well for me. I wonder how it’s compared to this performance wise
    • kdrag0n 2 hours ago
      (OrbStack dev here.) Instead of Virtualization.framework, we have a custom Rust virtualization stack with custom devices and protocols for things like filesystem sharing. It's a highly optimized vertically integrated stack specifically for running our Linux machines and containers.

      Our biggest perf/resource gain is dynamic memory, which reduces memory usage a lot by releasing unused memory back to macOS. Nothing else supports this, including Containerization.

      I gave Container Machines a try and it seems to be much closer to OCI containers with a default bind mount than OrbStack machines. It has fewer integrations and doesn't run systemd or any other normal init system, so it's hard to run services.

      • mescalito 1 hour ago
        Super happy orbstack customer. Just curious on your statement:

        > I gave Container Machines a try and it seems to be much closer to OCI containers with a default bind mount than OrbStack machines. It has fewer integrations and doesn't run systemd or any other normal init system, so it's hard to run services.

        The linked md document says:

        > Real Linux services for testing. Run a database or whatever your stack needs as a system service — systemctl start postgresql works on images with systemd installed.

        Was that not the case when you used container machines?

        • kdrag0n 1 hour ago
          That's my bad, I used the example alpine commands and the official alpine doesn't have init. It's supported if you build an image with systemd installed
      • egernst 2 hours ago
        Thanks for the info kdrag0n! Big fan of OrbStack; good call out on dynamic memory.

        If the guest image has /sbin/init, we use that.

        We'd recommend using a base image for the guest that includes systemd. ie: https://github.com/apple/container/blob/main/docs/container-...

      • CGamesPlay 1 hour ago
        > Our biggest perf/resource gain is dynamic memory, which reduces memory usage a lot by releasing unused memory back to macOS. Nothing else supports this, including Containerization.

        Wow, missed this when reviewing OrbStack. I assumed that you just used Containerization and therefore would have the same limitation.

      • saltamimi 1 hour ago
        I know this is off topic, but I do thank you for your Android work, the idea and elegance of fastboot.js and that SafetyNet workaround trick was truly really cool.
        • kdrag0n 1 hour ago
          Ahh those were good times, glad you came across it :)
      • kxxx 2 hours ago
        Apple says that `systemctl` is supported... hmm am I missing something?

        "Real Linux services for testing. Run a database or whatever your stack needs as a system service — systemctl start postgresql works on images with systemd installed."

        • kdrag0n 2 hours ago
          Good catch, I tried the example alpine commands and there was no init system. Makes sense if it's based on OCI images
          • kxxx 1 hour ago
            Just tested it on on an OCI image with systemd and it works well. I can see the appeal of OrbStack regarding memory reallocation and will stick with it in the time being :)
      • trueno 1 hour ago
        just dropping in to say orbstack super owns and i use it every day. huge respect to rethinking this experience, for a minute there i thought docker was just going to be the only path. i dont think ive looked back for docker since. orbstack just feels right, and damn its so fast and good with resources, and the UI is just insanely straight forward. props!
      • blackqueeriroh 15 minutes ago
        When are y’all gonna support sandboxing? Preferably Docker Sandboxes?
      • TheTaytay 1 hour ago
        We love OrbStack too! Thank you for it,

        I wanted to make its VM/machine our default secure agent sandbox, but I couldn’t figure out how to isolate this VM from the host properly. This thread prompted me to find the issue though, and I saw this was recently implemented! https://github.com/orbstack/orbstack/issues/169

        • kdrag0n 1 hour ago
          Yep! Still refining it but isolated machines now have fine-grained settings for filesystem mounts, network isolation, SSH agent forwarding, and CPU/memory/disk limits
      • jhancock 1 hour ago
        I’ve been using podman on Mac. It’s been a nice fit as the container build files are identical to what I use on my fedora server. I have noticed my 2 virtual core 4 gb Linode vps runs apps faster in the same container as when run on my MacBook Air M2 16 gb. I expected some performance overhead but didn’t think it would be noticeable as it is. Overall happy with podman. How might OrbStack differ?
        • thatxliner 1 hour ago
          Having used both, it feels like OrbStack "just works" more than Podman. The main example of this is Supabase.
      • vsgherzi 1 hour ago
        I love orbstack, is there any code I could read on the rust side? Seems very interesting
    • emmelaich 1 hour ago
      I'd like to see a comparison to https://tart.run/ as well.

      AFAICT it's pretty similar.

    • mpeg 33 minutes ago
      I like orbstack in theory, but I find it hard to justify a $96/yr license fee for something that has so many open source, free alternatives. As it is, I’d rather use podman or colima
    • cpuguy83 1 hour ago
      Not a full docker env, I aimed this as doing builds though you can run dockerd as an option, https://github.com/cpuguy83/crucible uses the containerization framework to run either build kitd or dockerd and wire it up to docker/buildx cli (or whatever client tooling you want to use).

      The Containerization framework is a library that sits as a layer on top of the virtualization framework. So each container is its own VM.

      Machine is tooling above the containerization framework to run multiple things in a container in a vm.

    • kxxx 2 hours ago
      I really like OrbStack and am also not sure why I'd use Container Machines over it, at the moment...
  • noobcoder 15 minutes ago
    The costs are startup time and image compatibility: dockerhub images don't work as machine images because container machine expects systemd

    I am trying it on but its brekaing on homebrew 1.0.0. The formula puts plugins at opt/container/libexec/container-plugins/ and the apiserver looks in libexec/container/plugins/

    This can be solved through a symlink or smth

  • WatchDog 2 hours ago
    Do these containers share a common kernel? Or are they each ran in a separate VM?

    Edit: It's a VM per container. https://github.com/apple/container/blob/main/docs/technical-...

  • jaimehrubiks 2 hours ago
    Will this be able to replace docker desktop an equivalents, removing the expensive Linux VM that runs alongside them?
    • usernametaken29 2 hours ago
      My first thought as well, docker desktop overhead is pretty bad, would be awesome to see this land natively in DD. By my estimate this could happen, seeing as Docker has historically tried to improve performance but quickly had to accept platform limitations… would only be natural to settle DD over to containers
      • deathanatos 2 hours ago
        Well, you can avoid the Docker Desktop tax by not running Docker Desktop. colima is a perfectly usable implementation of Docker for macOS, without the bloat of Docker Desktop.

        That said, colima still has the expensive VM that upthread is mentioning.

    • thejazzman 2 hours ago
      It mostly removes the big shared background VM and replaces it with smaller, more isolated Apple-native VMs.

      I did an experiment migrating my Podman workload to Apple's container @ https://gist.github.com/jmonster/39e14585e107dbf990a90966c0f...

      TL;DR reduces ram/storage usage; minimizes it's existence

      • nozzlegear 57 minutes ago
        Nice, thanks for this. My plan is to swap over to Apple's containers for local dev, and keep using podman quadlets in production.
      • deathanatos 2 hours ago
        How does that work, realistically?

        > Memory defaults to half of host memory

        That's the most expensive part of the whole transaction, b/c AFAIK, RAM is then dedicated to the VM. It can be swapped out, I suppose, but that's not great.

        • MBCook 7 minutes ago
          CGamesPlay said above its balloon memory so it won’t use all that memory by default, but it can’t release balloon memory yet.
    • lostlogin 2 hours ago
      Others here mention it and I’m a new convert to Colima.

      The pain of working around Docker Desktop is bad.

    • trollbridge 2 hours ago
      That sure would be nice. I seem to rm -rf ~/.colima every few days.
  • cogman10 1 hour ago
    Is there any reason why macOS doesn't try a WSL1 style approach? I get why that didn't fully work out for windows, but it seems like macOS being another *nix would make a lot of what was hard for windows, easy for mac. It seems like it should be possible to run most linux applications natively on macOS with few additional new APIs.

    BSD actually has this already.

    • twoodfin 1 hour ago
      What would be the advantages over a VM infrastructure Apple needs anyway and that has a much simpler, more stable “ABI” compared to the Linux kernel?
      • cogman10 52 minutes ago
        Potentially faster application execution along much lower memory requirements. In the case of docker, even a possibility of shared library loading further reducing runtime costs (For example, containers based on the same base image could load glibc into memory only once).

        There's also simply the possibility of using linux software directly in macos without doing OS dependent changes to the software.

        • MBCook 3 minutes ago
          Yeah. But in exchange it’s a lot of work to keep up with. For GUI stuff you’re now having to have some sort of Wayland layer/driver.

          Running VMs is really really easy and low maintenance demand on Apple. And it’s guaranteed compatibility.

          Wasn’t compatibility what really sunk WSL1?

  • rickstanley 53 minutes ago
    I was wondering if it's possible to have the container volume change to, say, an external drive. I currently use QMEU with qcow2 images to achieve this, works well enough.
  • mkagenius 42 minutes ago
    Apple containers are great for providing a sandbox to your AI coding agents

    I have made it a MCP so that it's easily discoverable by all the coding agents

    https://github.com/instavm/coderunner

  • llimllib 2 hours ago
    Is this new? I thought we had this already

    In my testing (iirc) filesystem performance was not good enough to be usable with node/rust dev where lots of small files get stat-ed

    update: what's new is the `container machine` subcommand. I went to test it out, but container failed to run at all for me: https://github.com/apple/container/issues/1681

    • kdrag0n 1 hour ago
      Curious if you've tried OrbStack? There's always more work to do (test workloads appreciated!) but we've put a lot of effort into optimizing for small files and other common developer workloads in OrbStack's customized filesystem sharing protocol (not standard virtiofs).
    • ahknight 59 minutes ago
      Podman is on macOS, FWIW. Uses the existing container framework to run the machine already. Root-full or not.
  • osigurdson 1 hour ago
    I'm surprised they cared enough to do this. I'd still rather use Linux but MacBook value is incredible.
    • marssaxman 1 hour ago
      I'd always rather use Linux, but sometimes your employer gives you a MacBook. I might use this tool.
  • numbsafari 2 hours ago
    Wouldn’t it be nice if services like Codespaces or Coder or Gitlab would allow you to target running on their hosted/integrated platform, or let you launch that same container completely locally? Sometimes I wanna take my “remote” dev environment off-line but still benefit from the integrated UX.
    • RossBencina 1 hour ago
      This exists. It's called devcontainers and there is a cli for managing it locally.

      https://github.com/devcontainers/ https://containers.dev/

    • CGamesPlay 1 hour ago
      If you can express that operation in Terraform, then Coder would let you do that. First problems I can think of are connectivity from the Coder provisioner to your local machine (Tailscale? Local?), and migrating disk images if you want to actually switch a workspace between environments (local provisioner could do this, but no matter what it’ll be slow and janky).
    • jayd16 1 hour ago
      Maybe I don't understand but why doesn't Gitlabs self hosted setup work?
  • Joyfield 51 minutes ago
    We have WSL at home.
  • gigatexal 10 minutes ago
    I saw the video on this this is distrobox basically for Mac. It’s very cool. Seamless with your local files and the container. I’m very keen to try it.
  • 0xbadcafebee 1 hour ago
    Anyone know why you would use this instead of QEMU+Lima+Colima+Docker/containerd? The latter works on multiple OSes, has a very large ecosystem of tools, images, documentation, and lets you replace pieces as needed
  • a1o 2 hours ago
    With colima I can run AMD64 (x86) Linux containers in my Arm64 too. I think this is strictly for Arm64 Linux VMs, or is there some way to run x86 with this too?
    • frizlab 2 hours ago
      Rosetta should be supported
  • ChrisArchitect 2 hours ago
    WWDC presentation video:

    Discover container machines

    https://developer.apple.com/videos/play/wwdc2026/389/

  • commandersaki 2 hours ago
    Would be cool if you can redirect USB devices to the VM.
    • rgovostes 6 minutes ago
      I've successfully tinkered with USB/IP with Apple containers, but it does require loading a custom kernel (which they make pretty easy, thankfully). On the host side, macOS also doesn't make it easy to unload a driver that attaches automatically.
    • kdrag0n 2 hours ago
      We just released this in OrbStack :) https://docs.orbstack.dev/features/usb

      Blog post soon

      • blackqueeriroh 11 minutes ago
        What happened to Orbstack for like 9 months until earlier this year? Suddenly everything went silent for a bit and I was pretty concerned. Glad y’all are back!!!!
      • calebm 51 minutes ago
        Thank you for sharing this - I looked into OrbStack a few months ago, and this was the reason I didn't use it (as my primary purpose was to have an external wifi adapter for wifi pwnage).
      • commandersaki 1 hour ago
        Yeah I find this useful for redirecting storage/sdcard*, so you can format linux filesystems or use other tools.

        * need a usb sdcard reader for macbook pro cause the builtin is not usb)

        • kdrag0n 42 minutes ago
          We're working on block device passthrough for the builtin SD reader.
    • egernst 2 hours ago
      Agreed! There's some good improvements around Accessory Access in virtualization framework this year also - checkout: https://developer.apple.com/videos/play/wwdc2026/224/?time=2...
      • commandersaki 1 hour ago
        I wonder if the custom virtio can be used to support attaching the built-in sdcard readers on macs which aren't exposed as usb.
  • m132 1 hour ago
    Every time I see Apple flaunting Linux containers I can hardly consider it as anything but admitting defeat. It could easily be Darwin, if they still had the capacity.
    • groundzeros2015 1 hour ago
      Just change 30 years of internet history
    • TheDong 51 minutes ago
      Apple set itself up for defeat in the server and developer marketplace as soon as they decided macOS was proprietary code.

      Why would any serious developer use closed-source code they can't debug and modify? Especially for a production server?

      It's the same reason no serious developers or hackers use macOS, like part of the point of being a developer is being able to dig into the code at any layer and debug and fix things.

      • m132 35 minutes ago
        OpenDarwin was a thing at one point, with mailing lists and other infrastructure hosted by Apple.

        That being said, my point isn't that Apple should absolutely focus on making a server OS again. It just saddens me how far behind macOS has fallen as they stopped caring about the fundamentals; back in the day, it would be Linux trailing behind macOS. Nowadays, you can't even have multiple routing tables on the latter, the firewall code was probably last updated in Snow Leopard, and what Apple happily shows off on WWDC is a wrapper around Linux. Something functionally equal can be cobbled up together by anyone sufficiently experienced in minutes, using just Bash, OpenSSH, and QEMU.

        I really wish macOS would let me have a similar level of control over applications as Linux with namespaces, without me having to do all the heavy lifting.

      • vehemenz 37 minutes ago
        No offense, but serious developers don’t think this way at all.
    • tw04 59 minutes ago
      What is the alternative? They gave up the server market a decade ago and before that they barely actually supported it.

      If they were to support darwin containers, what would be the point? Literally nobody would build to it, Linux won.

      • riffic 53 minutes ago
        > Literally nobody would build to it

        because nobody does ci/cd against macOS or iOS apps right?

        • tw04 47 minutes ago
          And what is the revenue stream tied to that ci/cd pipeline they aren’t capturing today? Apple would sell less hardware in order to…?

          There aren’t any app developers avoiding the Apple ecosystem because there aren’t Darwin containers. They don’t sell server hardware and by all accounts have no intention of ever reentering that space. So they’d spend a bunch of developer cycles to reduce their own revenue stream with no apparent upside beyond “goodwill” which they’ve never been overly concerned about.

          • m132 27 minutes ago
            Correct me if I'm wrong, but by the same logic, you could also say this whole containerization framework is of no use either.

            If they're investing resources into it regardless, they might at least try making something that Docker for macOS and co. haven't solved the same exact way already. Something that, due to their almost unhealthy obsession with "system integrity", only they can realistically make. Like native containers.

            • tw04 17 minutes ago
              Supporting the containerization framework lets them sell more laptops to Linux devs that may have otherwise bought a Dell or hp or insert brand to run Linux natively on or windows with WSL.
    • ahknight 1 hour ago
      [dead]
  • Barbing 2 hours ago
    I found it hard to believe I didn’t have a simple way of staying safe by installing an arbitrary application in a sandbox on macOS. (Restoring using Time Machine doesn’t count! :) )

    This is a step in the right direction but requires any given developer’s buy-in first, right?

  • t1234s 1 hour ago
    Is this similar to what cygwin was for windows? Could this be an alternative to homebrew?
  • namegulf 2 hours ago
    Would be nice if they also support Intel based macs, what prevents?
    • danhon 2 hours ago
      Allocation of a finite amount of engineering resources.
      • joshuat 2 hours ago
        And a legitimate business interest to further incentivize the adoption of Apple Silicon devices. Same with Rosetta deprecation after macOS 27.
        • crote 45 minutes ago
          Sure, but to what extent?

          Enterprise ARM servers are still a niche product, and so are the ARM developer machines running Linux or Windows. Until this significantly changes, Apple will have to provide good x86 interop - or lose the developer market entirely.

          Forcing people towards Apple silicon is of course an attractive approach when targeting the large portion of the market using their MacBooks as Facebook browsing machines, but (especially with the new MacBook Neo) what's going to happen when a large portion of the market for high-end MBPs disappears because it turned from the default no-brainer into a liability?

          • macintux 21 minutes ago
            > Until this significantly changes, Apple will have to provide good x86 interop - or lose the developer market entirely.

            I'm very, very skeptical of this analysis. Certainly "entirely" is hyperbole.

        • JumpCrisscross 2 hours ago
          > a legitimate business interest to further incentivize the adoption of Apple Silicon devices

          Apple has never been about supporting legacy platforms with new features. And with over a quarter of revenue and two fifths of Apple's gross profits coming from services, one could argue the incentives run either way.

        • ForOldHack 1 hour ago
          Rosetta 2. Rosetta was for Intel to emulate 68k, now if you could get Rosetta 2 to run under Rosetta, then you could run 68k, on an ARM, and if you could get the apple ][ emulator...
          • weikju 39 minutes ago
            Rosetta 1 was for emulating PPC not 68k
    • MBCook 2 hours ago
      Apple won’t support them with MacOS 27, and it seems they announced this tool as part of this year’s WWDC.

      Basically: they’ve moved on.

    • teaearlgraycold 2 hours ago
      Intel Macs are cringe.

      Edit: I grow stronger with each downvote

      • imglorp 1 hour ago
        I'll defend, not cringe for everyone.

        Daily driver is a 6yo, 32Mb mbp and it might not scream like an M5 or have the miraculous power draw of an M5, it gets my job done.

        One nice thing is x86 containers run natively: I run most of my $work landscape which is 40 or 50 k8s pods on top of Kind, which is itself a plain container. That mirrors my prod. That plus slack, zoom, ff with scores of tabs, etc. all while building rust and playing music.

      • ncr100 1 hour ago
        More power to ya!
      • Brian_K_White 2 hours ago
        cringe is cringe
  • sachinjoseph 1 hour ago
    WSL-like implementation on macOS?
  • michaelsbradley 56 minutes ago
    Can macOS be run as a container machine on macOS?
  • xiaodai 26 minutes ago
    so basically dockers
  • jwlake 57 minutes ago
    haven't we had hypervisor.framework for like years now?
  • riffic 1 hour ago
    darwin containers when?
  • m463 2 hours ago
    looks like apple wrote a native docker in swift

    you can now run linux containers on your mac

    ... but it could be better.

    what about (totally contrived):

      FROM apple/macos:10.11.6
    
      RUN xcodebuild -project myapp.xcodeproj -scheme MyScheme -configuration Release
    • trollbridge 2 hours ago
      Close - but it would be more like this:

        services:
          macos:
            image: dockurr/macos
            container_name: macos
            environment:
              VERSION: "15"
      
      (And indecently slow.)
    • webXL 2 hours ago
      Nice, but expect to page through a few pages of ToS during the build
      • m463 2 hours ago
        lol

          ENV XCODE_FRONTEND=unattended
          ENV XCODE_LICENSES=accept,firstborn,applepay,appleid=sjobs@me.com
    • windowliker 2 hours ago
      It would be wonderful if this ran on older versions of macOS, but according to the README they only support 26.
      • m463 46 minutes ago
        you do not understand... Not run on, run IN :)

        I'm saying the older version of macos could build/run INSIDE the container

        just like on a ubuntu 24.04 system you can do:

          FROM ubuntu:16.04
        
        or

          docker run ubuntu:16.04 
        
        and though I haven't tried it, I believe docker can do arm in x86 using an emulator (like rosetta)
    • jadar 2 hours ago
      i wish!
  • sourcegrift 2 hours ago
    [flagged]
    • al_borland 1 hour ago
      macOS only needs to support the hardware it ships on, so of course Linux would have wider hardware support, but that doesn’t really matter in context. The bigger question is what hardware to people actually want? I see most people drool over Apple hardware while not finding any suitable equivalent for the PC that they can install Linux on.

      Framework is trying to close that gap with their new release, but we’ll have to see how it is once people get their hands on it. I think it also comes at a price premium. There is always the Thinkpad route, but Lenovo burned just about every bridge with me a decade ago with things like Superfish. Where is the premium Linux laptop OEM that people can trust? Last I heard System76 was just rebranding Clevo hardware. What are people using? Dell? HP?

    • hollerith 2 hours ago
      Sadly, Linux is much much less secure.
      • pixelatedindex 2 hours ago
        This claim is so absurd that I need some sources.
        • armadyl 1 hour ago
          The person you replied to is right, the "security" of Linux might as well be nonexistent compared to macOS and especially iOS/Android. Even the developers of Secureblue (https://secureblue.dev/) state that despite their hardening and mitigations Linux still lags far behind macOS (and possibly Windows) security-wise. The only Linux derivative that has proper security is Android, and even better GrapheneOS.

          https://privsec.dev/posts/linux/linux-insecurities/

          https://madaidans-insecurities.github.io/linux.html

          I also commented here on Linux phones, the same can apply to Linux as a desktop OS: https://news.ycombinator.com/item?id=46997397

          Also on top of that Linux/Windows laptops also lack the hardware-backed security that Macs and to an extent some Chromebooks have.

        • dvhh 46 minutes ago
          Security by obscurity worked quite well
        • JumpCrisscross 2 hours ago
          Linux is easier to misconfigure. Macs resists being misconfigured insecurely. At their tightest, I'd say neither is fundamentally more insecure than the other. (The exception would be M5-based Macs, which come with MIE. Though that isn't a macOS vs Linux thing per se.)
          • armadyl 1 hour ago
            This is incorrect macOS is fundamentally more secure than desktop Linux operating systems and it isn't particularly close.

            No amount of Linux hardening will get a system even close to an M-chip Mac. Software insecurities aside, desktop Linux OS systems have almost none of the hardware-backed security benefits that Macs do.

            • TimTheTinker 1 hour ago
              At some point, lack of security becomes a feature. A fully secure, locked-down, T2 attested macOS is able to be controlled not just by Apple, but by increasingly evil governments, with no recourse available to users.
              • armadyl 1 hour ago
                Conversely, a Linux system with no verified boot can be easily tampered with without the user detecting it by people lower than the government such as casual hackers. So in a world where your government is going crazy, you're opting for an operating system that can be penetrated with relative ease (e.g. with persistent root malware) both by a non-government hacker on top of a state backed one.
                • JumpCrisscross 1 hour ago
                  I'd also guess it's much harder to securely source components for a Linux build in the way Apple is able to.
                  • armadyl 47 minutes ago
                    It's not really about supply chain security it's about the hardware itself. PC manufacturers in general just can't keep up since they don't have full control/integration over the hardware stack like Apple does. Also CPU, secure element etc security is limited but Qualcomm is catching up pretty quickly I believe if they aren't there already. We won't talk about Intel and AMD. But that's beyond my knowledge so I can't say anything too specific that's just what I have from general knowledge I'm sure someone will jump in with additional info if needed.

                    I don't think Apple is particularly any more secure against the US government than Intel is with supply chain vulnerabilities but I have nothing to back that up with aside from vibes.