Comment by rkagerer

Comment by rkagerer 3 days ago

54 replies

I realize not everyone will care about this, but I find the naming for these WSL-like subsystems is confusingly backwards. i.e. It should have been Linux Subsystem for Windows, or Window's Subsystem for [Linux | FreeBSD | etc].

asveikau 3 days ago

The explanation they give is they need to put their trademark, Windows, before Linux. Sometimes they say this is advice from the legal department.

I still think they could fulfill that requirement and call it the "Windows Linux subsystem" or something, but what do I know?

Unrelated, but I think the WSL2 design is kind of stupid. It's just a VM. I think the WSL1 design, where it was a syscall layer, is a better call. But that was slower, IIRC chiefly because the NT filesystem syscalls are slower than Linux's VFS. Rather than improve that problem, they side-step it by running Linux in a VM.

  • cpgxiii 3 days ago

    The design of WSL(1) makes more sense when you think of its original design goal of being a compatibility layer for Android apps. Android is "a Linux", but it is (1) a relatively unique one, and (2) everything between the Android kernel and Android apps really isolates the application layer from kernel-level details. Given this separation, it makes a lot of sense to leverage the existing NT flexibility and emulate a Linux kernel at the syscall layer. Sure, you'll have to patch some parts of the WSL(1) Android system components, but MS was already going to have to do that to work around Google-only components. In many ways, this route is no more complex than what Blackberry did to run Android apps atop their QNX-based OS.

    But once you give up the specialization for Android and want WSL to be a "real Linux" (i.e. behave like a specific Ubuntu/Fedora/etc distribution) now you no longer can get away with being Linux-like, you have to be Linux (i.e. you need the syscall layer to directly mirror all kernel development and features). It's actually fairly impressive how much worked with WSL(1) given how different the internals were, but you didn't have to go that far to find tools/services/etc that just wouldn't work.

    Instead, once you consider how long MS had been working on Hyper-V, and how interested they are in using it to apply additional security boundaries/isolation (e.g. VBS) within what outwardly appears to be a single Windows OS instance to the user, it makes a lot of sense to leverage that same approach to just run a real Linux kernel atop Hyper-V. In that world, you no longer have to match Linux kernel development, you just need to develop/maintain the kernel drivers used to interact with Hyper-V - and MS already had a lot of experience and need to do that given how much of Azure is running Linux VMs.

    • technofiend 2 days ago

      IO on many little files is dramatically faster in Linux on ext4 vs Windows thanks to NTFS' journaling overhead. So if you're doing development, you really want to do it inside wsl2.

      • asveikau 19 hours ago

        I think it's more complicated just than NTFS's design.

        In my original comment I said that the difference is the Linux VFS for a reason. The slow part in NT is when you go from a filename to a handle. Doing things like caching lookups by name is, IIRC, the responsibility of the individual drivers. Linux does better at this by having a heavily optimized layer sitting between the filesystem driver and the caller. Doing tons of open(2)s is faster on Linux because of the overall kernel design.

      • p_ing 2 days ago

        Journaling isn't the issue, small files go into the $MFT which is the fast-path. The issue is the file system filter overhead.

  • kbolino 3 days ago

    The bigger problem was how fast Linux evolves. Windows kernel development is glacial by comparison. Keeping up with every new thing in Linux was tantamount to maintaining a second operating system.

    • bayindirh 3 days ago

      IIRC, there was an article, whose author said that improving NT kernel without blessing from higher ups is even frowned upon.

      So making a better WSL on syscall layer, which NT kernel is designed for, is not only behind a technical effort wall, but also behind a big red tape.

      • RedShift1 2 days ago

        That's a good thing. The kernel is supposed to be the most stable thing.

    • duskwuff 2 days ago

      I'd argue that the breaking point was Docker. Running typical Linux userland applications was doable - and they did it - but making Docker work would have been effectively impossible, as it depends on a ton of highly Linux-specific systems (namespaces, cgroups, bind mounts, etc) with no direct Windows equivalents.

      • pjmlp 2 days ago

        Windows has native support for containers.

  • ronsor 3 days ago

    Improving that problem probably would've been a massive undertaking. That aside, there's the problem that implementing kernel mechanics is a lot more than faking syscalls: the various types of namespaces, FUSE, random edge cases that applications do expect, kernel modules, etc. At the end of the day, users don't want to stumble into some weird compatibility issue because they're running not-quite-Linux; it's a better UX to just offer normal Linux with better integration.

    The WSL2 design isn't stupid, it's practical. What I will give you is that it's not elegant in an "ivory tower of ideal computing" sense.

    • bitmasher9 3 days ago

      When people talk about improved compatibility or higher practicality I wonder why they don’t just run Linux on metal at that point. You can either run it on your laptop, or connect to a networked computer.

    • Brian_K_White 3 days ago

      Can I even use a usb serial port yet after how many years? (Possibly by now but how long did it take, and does it actually work well?)

      It is stupid in that it's not really any kind of subsystem, it's just a vm. VMs have their uses, but it's basically just an app.

      The reason hardware such as my usb serial example (or any serial) worked on wsl1 was because it actually was a subsystem.

      • beagle3 3 days ago

        Your serial might have worked, but your docker didn’t. (And someone else’s other drivers didn’t, and mmapping had ever-so-slightly different semantics causing rare and hard to reproduce issues).

        WSL2, on the whole, is much more compatible. If you want 100% Linux compatibility, just run Linux.

  • tester756 2 days ago

    >Unrelated, but I think the WSL2 design is kind of stupid

    Yet in practice works very well

    There's saying if something is stupid, but works, then it aint stupid

    • dvfjsdhgfv 2 days ago

      True, but I love the instant boot of WSL1 when I need to do something quickly. And, most of the time, if you don't do IO-heavy stuff, it works quite well.

  • emmelaich 3 days ago

    You can still use WSL1 if you want. (maybe you know this).

  • bee_rider 3 days ago

    > I still think they could fulfill that requirement and call it the "Windows Linux subsystem" or something, but what do I know?

    Your name is bizarrely better considering how small the difference is.

    > The explanation they give is they need to put their trademark, Windows, before Linux. Sometimes they say this is advice from the legal department.

    It feels like they have some strange internal naming policy. Maybe it is called the “Policy Product for Naming.”

    • grugagag 3 days ago

      Their naming is a serious problem that spreads confusion instead of clarity but what do they know, they’re like a headless chicken that has enough power to stay alive no matter what..

  • setopt 2 days ago

    Windows Subsystem for Linux Usage or something would have been clearer.

    • asveikau 19 hours ago

      "Windows Subsystem for Linux applications"

al_borland 3 days ago

Is this because, in the WSL example, it’s not Linux that’s the subsystem, but rather a Windows subsystem that enables running Linux. Thus the name, Windows Subsystem for Linux?

  • 1718627440 3 days ago

    It is because the NT kernel implements multiple personalities, so it could compete in the UNIX market. The component in the kernel that implements a personality is called a subsystem. It used to be a correct technical term, but of course using it to describe a well-integrated VM isn't correct.

    • skissane 2 days ago

      > It is because the NT kernel implements multiple personalities, so it could compete in the UNIX market.

      That wasn’t the original primary reason for it… Windows NT began life as NT OS/2… at first, an evolved OS/2 API was going to be its primary API… then as Windows 3.x took off and the IBM-Microsoft relationship further soured, the OS/2 API was downgraded to a backward compatibility afterthought, and eventually (in Windows XP) dropped entirely.

      And because they weren’t even sure what the primary API was going to be at first… and the whole idea of multiple OS “personalities” was all the rage - IBM’s Mach-based Workplace OS sought to unify AIX and OS/2 (and they even talked about extending that to OS/400), Taligent (IBM-Apple joint venture) had similar objectives - so it is understandable they made this API flexibility a focus of their early plans

      And the guy they hired as technical lead in developing NT, Dave Cutler - had come from DEC, which had the very real problem of selling two largely incompatible operating systems (Unix and OpenVMS) - and they also sought to unify them through multiple personalities, as their next generation operating system MICA which would merge Unix and OpenVMS, which Cutler was working on, until DEC management decided to cancel the project, and Cutler went to Microsoft to do the same thing there

      • 1718627440 2 days ago

        > the whole idea of multiple OS “personalities” was all the rage

        It IS honestly kind of cool. If Microsoft would invest into their solid OS instead of enshitifying it, they could implement Linux and Darwin on a single system. That would be quite a selling point.

mkhalil 3 days ago

It *is* confusing but in actuality, it kind of works: It's a Windows Subsystem - as in the Hypervisor/VM platform - to boot a Linux VM. And, more importantly IMO, Linux distro is using this Windows Subsystem for: booting, drivers, and networking (.e.g. the "/sys/wsl" folder, and whether the Window Subsystem will generate fstab, etc..)

PeterStuer 3 days ago

Windows' subsystem for Linux feels ok. It is a subsystem of Windows after all, not a subsystem of Linux.

So I guess this project should be FreeBSD's subsystem for Linux? Or should it be FreeBSD's subsystem for Windows' subsystem for Linux?

  • sebtron 3 days ago

    > It is a subsystem of Windows after all, not a subsystem of Linux.

    Sure, but it is a Linux system.

    It's kind of like saying Edge is a "Windows subsystem for the browser".

    • jayd16 3 days ago

      "Windows' <integrated VM> for Linux" makes some sense.

aryonoco 3 days ago

For the same reason it’s called “Azure Database for PostgreSQL”, whereas the sensible name would have been “PostgreSQL Database for Azure”.

If Microsoft is putting someone else’s trademark (in this case Linux or PostgreSQL) in its product name, their own trademark will always come first and someone else’s trademark will come last.

  • wvenable 2 days ago

    Trademark law pretty much requires the "For X" style of product naming. It's caught a few open source projects.

9front 3 days ago

Before WSL, Microsoft provided "Windows Services for UNIX" to "Seamlessly integrate Microsoft Windows into your UNIX environment."

The same Windows services are provided to "Seamlessly integrate Microsoft Widows into your Linux environment."

WSU became WSL!

[removed] 3 days ago
[deleted]
reaperducer 3 days ago

I find the naming for these WSL-like subsystems is confusingly backwards.

Whoever decided on the name didn't have sentence diagramming in elementary school English class.

heavyset_go 3 days ago

It follows their old "Windows Services for UNIX" product's naming scheme. I don't like it either, but it's consistent.

qalmakka 2 days ago

yeah especially since it stopped being an actual subsystem in the Windows NT sense of the term with WSL2 - it's a hecking virtual machine that's very convenient to run, but that's like saying that WinBoat is a "Linux subsystem for Windows" - totally ludicrous

gdulli 3 days ago

"Linux subsystem" would be a subsystem of Linux, which it isn't. It makes more sense the way it is. People seem confused because their mind naturally wants to go to "Linux for Windows", but it's better if they're trained to think of it as a series of Windows subsystems, since that's what they are.

  • iamtedd 3 days ago

    That doesn't make any sense. Using the Linux kernel as an example, it has multiple subsystems.

    - Power management subsystem

    - Scheduling subsystem

    - Sound subsystem

    etc

    The word before "subsystem" describes the subsystem itself, not the greater system to which it belongs.

[removed] 3 days ago
[deleted]
surfingdino 3 days ago

A remnant of their 'Linux is a cancer' phase and the famous fight against Open Source that started with the "Halloween Document" then helping SCO https://yro.slashdot.org/story/21/04/01/1647259/sco-linux-fu... They are not Open Source's friend and at one point extracted license fees from Amazon for using Linux... https://www.zdnet.com/article/amazon-becomes-the-latest-comp... Yeah, I wish they would leave OS alone.

vermaden 3 days ago

As usual with Microsoft - its all fucked up.

WINE => Windows Subsystem for Linux/FreeBSD/UNIX

WSL => Linux/FreeBSD Subsystem for Windows