Alt text: meme with the ‘Always has been’ format Linux, MacOS, OpenBSD and ChromeOS logos on top of the Earth The first astronaut says ‘Wait, it’s all Unix?’ A Windows logo, on top of the second astronaut. The second astronaut says ‘Always has been’ and points a gun to the first astronaut.

  • dadarobot@lemmy.sdf.org
    59·
    1 year ago

    Linux is unix-like, and not from the same family really. ChromeOS is based on linux, so similarly unix-like. Mac is Darwin, which is actually unix. Also all BSDs are unix

    • clubb@lemmy.world
      32·
      1 year ago

      BSD is also unix-like. Quoting OpenBSD, “[OpenBSD] produces a FREE , multi-platform 4.4BSD-based UNIX-like operating system.”

      • Rustmilian@lemmy.worldEnglish
        13·
        1 year ago

        The OG Berkeley Software Distribution (BSD) is a direct descendant of Unix. I personally wouldn’t qualify this particular version as a “Unix-like”.

        • dadarobot@lemmy.sdf.org
          5·
          1 year ago

          Yeah, reading these comments, it looks like they are not legally able to call it unix, despite having direct lineage. Linux however is a complete re-write, making it more obviously not proper unix by most definitions.

          • thanatotus@lemmy.ml
            3·
            1 year ago

            That’s because UNIX is a trademark and OS vendors will have to pay fees to opengroup.org in order to call their OS Unix.

      • Successful_Try543@feddit.de
        12·
        1 year ago

        Nice to know, I’ve always thought BSD is actually UNIX.

        The BSD variants are descendants of UNIX developed by the University of California at Berkeley, with UNIX source code from Bell Labs. However, the BSD code base has evolved since then, replacing all the AT&T code. Since the BSD variants are not certified as compliant with the Single UNIX Specification, they are referred to as “UNIX-like” rather than “UNIX”.

        • lemmyreader@lemmy.mlEnglish
          71·
          1 year ago

          UNIX™ is a trademark name (Think of e.g. IBM AIX, HP-UX, SunOS). Linux and BSD are Unix alike. I believe that Apple has made an effort to be entitled to call an OS of theirs UNIX, not sure whether it’s Darwin or something else.

          • Successful_Try543@feddit.de
            9·
            1 year ago

            UNIX is trademarked by ‘The Open Group’, Unix is not. 🙃

            To make things more confusing, according to German Wikipedia, Unix is used for Unix-like OSes which are not officially UNIX-certified. 😵‍💫

    • accideath@lemmy.world
      18·
      1 year ago

      The weird thing about macOS is, that while it is certified UNIX, its XNU kernel literally stands for “X is Not Unix”

      • Rustmilian@lemmy.worldEnglish
        10·
        1 year ago

        Everything is represented by a file, doesn’t mean you can open it with a text editor.

      • jabjoe@feddit.ukEnglish
        2·
        1 year ago

        More like file descriptor. File path is like address system, but it’s not how you get all file descriptors. For example: sockets (there is bash’s fake /dev/{tcp,udp}), epoll, timer, event, inotify.

        In UNIX systems event systems have a list of filedescriptors with a callback for each. You could have your event loop an epoll fd itself and nest it in another.