• 1 Post
  • 26 Comments
Joined 1 year ago
cake
Cake day: July 16th, 2023

help-circle

  • And you can even go a step further and configure it so all the ISOs go into a subdirectory. Then you can still use the USB for other stuff without it becoming a mess. Right now I have the following structure:

    ├ apps // Lots of portable apps, using the PortableApps systemdata // For copying files between devices
    ├ images // ISOs go here, separated into Linux, Windows and Utilities
    ├ installs // For apps that need to be installed
    ├ secure // Encrypted Veracrypt store
    └ ventoy // Ventoy config
    

    All that on a tiny USB on my keychain and super useful when you’re the IT person for the family.



  • (like do I seriously need No Man’s Sky installed all the time for the once every three months that I play it?)

    That sound’s like the data is in semi-regular use at least. For me it’s more like “Do I seriously need the sequel installed for that other game I haven’t even started yet, but am definitely going to start any day now, after years of having it installed?”.













  • Not exactly the same thing, but the xone (XBox One controller driver for Linux) project disabled Issues on Github and uses a Discord server instead. Which is stupid as heck, because I’m not going to join a Discord server just to check if someone has already encountered the same issue as me.


  • The naming of WSL sort of makes sense because it’s actually build upon a kernel feature, which hass been mostly unused for more than a decade, called subsystems. There’s the ‘subsystem for Win32’, which is the primary one that all Windows applications use, and then there were also the ‘subsystem for POSIX’ as well as the 'subsystem for ‘OS/X’. WSL was simply a reboot of that technology.

    The funny part is that this turned out to be too complex so WSL 2 ditched all that and simply uses a VM running the actual kernel in the background, so the name isn’t even accurate anymore.



  • The way WSL1 worked is actually quite interesting: The NT kernel always had the capability to run multiple subsystems, with Win32 only being one of them and there were subsystems available for OS/2, POSIX and later UNIX. WSL1 was pretty much a revival of that feature. So WSL1 is indeed somewhat like Wine, but making heavy use of some features built into the kernel. So yeah, no real boot process happening.

    (Also it’s kinda stupid that the ‘S’ in WSL2 still stands for ‘subsystem’, despite not using that feature anymore.)