03 Aug 2026
OSnews
9front “THIS WAS SUPPOSED TO BE FUN” released
The best operating system in the world, 9front, released its latest version, "THIS WAS SUPPOSED TO BE FUN". As I'm sure you know, 9front is a fork of plan9, and one that's actually consistently maintained and developed. It brings an improved affinewarp API for scaling and zooming, a new Synaptics driver, and a new driver for UPSs. There's also a new tool called gdbfs, which allows you to mount a remote gdb at /proc. Of course, there's much more than this, including the usual list of bugfixes and small changes. Few of us are worthy of using 9front, but if you are, you already know where to get it and how to update.
03 Aug 2026 3:56pm GMT
MkLinux and the pimped-out Apple Workgroup Server 9150
Cameron Kaiser's articles are always a right treat, and this one's no different. It's about running MkLinux on the Apple Workgroup Server, the regular Mac rebadged into a server product and predecessor to Apple's first real server product, the Apple Network Server running AIX. The Workgroup Servers were originally marketed with Apple's UNIX variant, A/UX, but with this operating system not surviving the transition to PowerPC processors, Apple started offering other options. A/UX ultimately didn't survive the 1994 68K transition to PowerPC, but in 1996 Apple publicly offered another option: run Linux, using the Mach microkernel. Although MkLinux emerged after the 9150's discontinuation, it's still just an overgrown NuBus Power Mac, so between more RAM, a beefier CPU upgrade and various video cards, by the end of this article we ought to have a configuration that gives us the best of two worlds - classic MacOS and MkLinux - in one server. ↫ Cameron Kaiser I never really stopped to think that MkLinux really was, but it's a lot more interesting than just an early Linux port to PowerPC Macs. In fact, it ran the monolithic Linux kernel as a userspace process on top of the Mach microkernel, which made it a valuable testing ground for Apple's later XNU efforts. It's wild that Apple had an official, blessed Linux operating system as early as the mid '90s, even if its performance was apparently not particularly great - due to the overhead of running it atop Mach - and Jobs canned it as soon as he came back to the company.
03 Aug 2026 12:54pm GMT
“A big win for Android interoperability”
Whenever the EU steps in to regulate the big technology companies, the response from news outlets and bloggers (often funded or outright owned by right-wing extremists) is to claim it's just a bunch of dumb , tech-illiterate bureaucrats telling the vastly more intelligent and superior technology companies what to do. Of course, this is just propaganda. Case in point: Something big just happened. As the Open Home Foundation's Android developer for Home Assistant, I was invited by the European Commission (EC) to consult on Android interoperability. The call for feedback was part of the Commission's work under the Digital Markets Act (DMA). For anyone unfamiliar, the DMA is an EU law that defines and regulates "gatekeeper platforms" - those that offer "core" services like search engines, app stores, and messaging platforms - to make digital markets fairer and more open to competition. As you might imagine, I had plenty to say about Google's restrictions on Android, especially the tech giant limiting wake word detection to its own Gemini assistant, a concern I surfaced in our Home Assistant 2026.3 Release Party. To put it plainly, Google had no grounds for limiting Android interoperability in the first place, other than to give itself the upper hand. We knew our community deserved better, and that's what we told the Commission. The result? The EC listened to us and all the other organizations that contributed. On July 16, 2026, the European Commission adopted a decision under the DMA that requires Alphabet (Google's parent company) to open up eleven Android features, including always-on wake word detection, ambient sensor access, and screen automation - to all assistants, on equal terms. ↫ Timothy Nibeaudeau What's really interesting is just how deeply technical and detailed this new EU decision really is. Timothy Nibeaudeau laid out the technical details of how wake word detection on Android works for the European Commission - in short, a DSP runs a really tiny model in a process isolated from the network to detect just a specific wakeword, and only once that wakeword is detected does it hand things off to a larger model running on the actual main SoC - and the EC's new decision accurately and precisely describes this method and wrote their decision to take every detail into account. When I was invited to share these limitations (and others) with the Commission, I didn't hold back. Which is why we were thrilled to discover an impressively precise and technically accurate decision from the EU: it correctly describes the two-stage wake word architecture, the DSP, the isolated process, and the role coupling. The report went down to details we only figured out by reading Android's source code ourselves. ↫ Timothy Nibeaudeau The idea that the European Union and Commission are a bunch of dumb, illiterate bureaucrats imposing impossible, unworkable, unrealistic demands on poor, hardworking, honest technology companies is a bunch of propaganda paid for by these very same companies, and every decision and ruling by the EU around the Digital Markets Act further confirms this by having strong technological underpinnings and being based on the actual workings of the technologies they cover. The EU does a lot of dumb things - as any government body does - but you don't get to enjoy a nearly two-thirds approval rating for nothing, especially not in the face of the state of the world today. The Digital Markets Act has already proven to be incredibly effective, and this is exactly why the right-wing propaganda against it is reaching an ever crazier fever pitch. When basic consumer protection legislation makes the most powerful companies, right-wing media empires, and even the most powerful country in the world throw tamper tantrums like toddlers, you know you're doing something right.
03 Aug 2026 12:19pm GMT
01 Aug 2026
OSnews
NetBSD 11.0 released
NetBSD, the operating system specifically designed to run on anything from a supercomputer to a toothpick, just released version 11.0. There's a ton of changes and improvements here, such as a brand new port to RISC-V, which supports a number of the more popular RISC-V SoCs (sadly, not the one I have just yet). NetBSD 11.0 also adds initial support for the Qualcomm Snapdragon X Elite platform, as well as a port to the virt68k platform, which means the Motorola 68000 port in QEMU using paravirtualized devices. Speaking of virtualisation, they're also introducing a new MICROVM kernel for x86: New MICROVM kernel for x86, supporting both i386 and amd64, NetBSD 11.0 introduces a dedicated MICROVM kernel designed for extremely fast virtual machine boot, leveraging PVH boot, VirtIO MMIO, and multiple kernel optimizations, it can boot in about 10 ms on 2020-era x86 CPUs. ↫ NetBSD 11.0 release notes There's also improved support for Linux system calls in compat_linux, the npf firewall, and much more. Of course, the list of other improvements, buigfixes, and smaller changes is long, including many changes for old, outdated, or otherwise odd architectures and platforms, as is the NetBSD way. Which other operating system proudly lists substantial improvements to their PA-RISC, Motorola 68000, and Alpha ports, among others?
01 Aug 2026 9:14pm GMT
CallMeMaybe: runtime reflection library built on C++26 static reflection
I have a policy to effectively never link to YouTube videos. I'll gladly make an exception for this one. Reflection is one of the most powerful concepts in Computer Science. Unfortunately, not every programming language is blessed enough to have it. In the 1980s, one company, Symbolics took the concept to the logical extreme. By representing EVERYTHING as objects; they created the most powerful (and inadvertently) least private operating system ever created! The company collapsed, but the ideas live on. Some modern languages got a full dose of reflection. Some…weren't so lucky. I ranked them all, and in the end I'll show you how I dragged C++ up a tier with my brand new runtime reflection library, CallMeMaybe! ↫ Laurie Wired The GitHub description of CallMeMaybe: CallMeMaybe (CMM) is a C++ runtime reflection library built on top of P2996 static reflection introduced in C++26. CMM purposefully mirrors many of the std::meta functions to provide a uniform interface, but allows runtime introspection, dynamic invocation, and instantiation by building a runtime reflection registry. Class members can be automatically traversed and reflected by simply adding ] as an annotation. CMM implements a custom type system to completely avoid RTTI requirements. ↫ CallMeMaybe GitHub page My YouTube linking policy will remain in place.
01 Aug 2026 9:05pm GMT
31 Jul 2026
OSnews
Develop cross-platform CLI and GUI tools with Tcl/Tk
Tcl, or the "Tool Command Language", created and released by John Ousterhout in 1990, deserves a place among the greatest products of the human mind. Especially when combined with its better known graphical user interface Toolkit - Tk. In 1997 Ousterhout was awarded the ACM Software System Award for Tcl/Tk, an award given to institutions or individuals recognized for developing software systems with a lasting influence, reflected in contributions to concepts, in commercial acceptance, or both. ↫ Armen Barsegyan Everything you could ever possibly want to know about Tcl/Tk. There's nothing to add here; if this is up your alley - and you know if it is - just go ahead and read it, and stop wasting time here.
31 Jul 2026 10:44pm GMT
LLVM toolchain coming to OpenBSD/sparc64 and SPARC Solaris (snv_151a)
Speaking of OpenBSD: Yes, you read that right. Modern development tools in the form of the LLVM compiler infrastructure is well on its way to supporting OpenBSD/sparc64 along with other more conventional architectures. The support is now ready for testing, via a patch set presented by Kirill A. Korinsky in a message to the tech@ mailing list, with the subject LLVM toolchain for sparc64. ↫ Peter N. M. Hansteen On a related note, the the entire LLVM stack (version 19.1.7, including llvm's binutils, clang, ldd) has also been ported to the SPARC version of Solaris 11 Express (snv_151a). This should make it possible to also port things like Rust and Zig to this same version of Solaris on SPARC, which is good news, because this release supports SPARC hardware long dropped by the current Solaris builds from Oracle.
31 Jul 2026 3:07pm GMT
Dead software walking: the ongoing evolution of relayd(8) and httpd(8)
As I mentioned in my OpenBSD 7.8 highlights post, development of relayd(8) and httpd(8) had stalled. Many diffs appeared on the tech@ mailing list from different contributors, but few were committed into the repository. The main reason was simple: Established OpenBSD developers weren't interested in these daemons anymore. Call it momentum, or timing. Around the same time, kirill@ and I started working on these daemons more actively. We both use them regularly and have real-world use cases. I support customers with OpenBSD setups that often involve complex httpd(8) and relayd(8) configurations. This practical need motivated me on many levels. ↫ Rafael Sadowski They've managed to do a ton of work on these two daemons, fixing many long-standing issues and reviewing tons of stalled patch submissions, while also modernising the code and adding new features. It's great to see people contribute significant time and energy to fixing up the tools they use for everyone else's benefit.
31 Jul 2026 2:55pm GMT
30 Jul 2026
OSnews
Microsoft claims it’s going to improve Windows 11’s context menus
When I had to use Windows 11 for a month because you people paid me to do so, the one seemingly small thing that really ground my gears were Windows 11's terrible right-click (context) menus. They were full of stuff I didn't put there, slow to open, and in some places, a modern Windows 11 context menu would have its own old Win32 context menu with even more stuff. It seems Microsoft is finally going to fix all of this. This new compact menu will be much faster and more reliable, as it foregoes needing to load in all the third-party actions that slow it down currently. Additionally, at the Windows Insider Meetup in London, Microsoft showed me a new context menu customization feature coming soon that will let users configure what apps and actions appear in the right-click menu. ↫ Zac Bowden at Windows Central Look, I know to us non-Windows users this seem like an incredibly small and dumb thing to focus on, but when your operating system is as much of a trashfire as Windows has become, improved context menus are massive improvements that make a meaningful difference. Of course, Microsoft makes these types of promises all the time, so I'll believe it when I see it.
30 Jul 2026 11:06pm GMT
Chrome gets “live patching”
We may all have a disdain for Chrome - OSNews users probably use Chrome a lot less than the average public - but that doesn't mean the browser doesn't sometimes do interesting things other browsers should copy. Chrome is in the the process of increasing its release cadence, but getting users to restart their browser more often than they already do to apply these higher number of updates is going to be a problem. As such, Google is working on something that seems quite obvious now that they've talking about it: Investing in "dynamic patching" that will eliminate the need for a full browser restart in most cases. By leveraging Chrome's multi-process architecture, dynamic patching sequentially replaces background child processes (like the Renderer and GPU) with updated binaries on the fly. Stay tuned to learn more as we research and develop this feature. ↫ Chrome Security Team Chrome was the first browser to use multiple processes, isolating tabs from one another so that if one website or tab went haywire, your other tabs would be unaffected. It makes perfect sense to have the browser use new, updated binaries for new tabs you open as soon as they become available, in a sort of ship-of-Theseus kind of approach to updating. Of course, you can't postpone the inevitable forever, but this should provide real-world benefits to users. Neat. The linked blog post goes into much more detail about other things too, like various low-level mitigations to prevent bugs and security issues from causing too much harm.
30 Jul 2026 10:53pm GMT
29 Jul 2026
OSnews
Windows 11 is quietly installing OneDrive Photos on your machine
It's that time of the week again, I guess. The year is 2026, and I'm still amazed when I find a new entry in my Start menu's All apps list for an app I don't remember installing. This time, it's Microsoft again, and the product is OneDrive Photos, which appears to be yet another photo viewer and editor for Windows 11 that nobody asked to have installed automatically. While searching for Microsoft Photos, a new app called "OneDrive Photos" showed up in my results out of nowhere. It appears to have arrived either via Windows Update or an update for the OneDrive sync client on Windows. ↫ Mayank Parmar at Windows Latest Just don't use Windows. You people paid me to use it and it was not a fun experience.
29 Jul 2026 12:48pm GMT
Ubuntu Touch 24.04-2.0 and 24.04-1.4 released
Ubuntu Touch, the mobile Linux operating system originally started by, you guessed it, Ubuntu, but now managed by UBports, released versions 24.04-2.0 and 24.04-1.4. The latter is a maintenance release with some bug fixes and minor changes, while the former is a bigger release with quite a few improvements, so let's focus on that one. Ubuntu Touch 24.04-2.0 updates the Chromium engine for the Morph browser from 87 to 134, which is massive leap forward, while still lagging behind the most recent version quite a bit. This release also adds a Widevine installer for people who want to view DRM-encumbered content on the web. This release also adds support for notches and rounded corners in smartphone displays, so that content in the UI can dodge these. There's also a screenshot editor for making basic edits to screenshots, as well as the ability to print straight from your device. Of course, there's the usual list of bugfixes and smaller improvements, and, most importantly of all, support for over 2000 new emoji. Existing users can use the regular update tools, but do note that you'll need to upgrade to 24.04-1.4 first, since it contains some provisions to enable the 24.04-2.0 update. If I had any of the listed supported devices, I would definitely want to do a proper review of Ubuntu Touch. It seems like it has made so much progress in recent years.
29 Jul 2026 12:39pm GMT
State of multi-player Wayland
I've been fascinated by the idea of attaching multiple mice to one computer, and then having multiple mouse cursors inside of one desktop environment! I just spent three weeks investigating how well that's currently supported on Linux & Wayland. Let me tell you what I found! The results are surprisingly cool. ↫ blinry It shouldn't come as a surprise, though, that a lot of graphical user interfaces don't really have any affordances for multiple mouse pointers manipulating the same object (e.g. one cursor drags the window, another tries to close it), but the possibilities are really endless here. It's not quite there yet to be considered fully-featured and plug-and-play, but it's a lot more capable than I thought it would be. The first thing that came to my mind is sitting down behind my computer with my kids to teach them the basics of using a GUI. Instead of having to pass the mouse back and forth, one of my kids (or both!) could have his own cursor, which is a lot more fun and collaborative. Games are obviously another great application for this sort of thing, especially things like classic board games. I hope this gets some more attention.
29 Jul 2026 12:27pm GMT
27 Jul 2026
OSnews
Windows NT got its name from one of Intel’s failed x86 replacements
Dave Farquhar published an article today about Windows NT 3.1's place in the market when it was originally released, and while the article is interesting and a fun read, it does mention this: Microsoft took its nascent code that it intended to form the base of OS/2 3.0, renamed it Windows New Technology, and eventually released it as Windows NT 3.1. ↫ Dave Farquhar While Microsoft did, in fact, use the "New Technology" branding as a marketing trick, this is not what "NT" originally stood for. Two developers from the original Windows NT development team, Mark Lucovsky and David Thompson, explained all the way back in 2003 that "NT" came from the codename for Intel's then-new RISC platform, the Intel i860 (Raymond Chen confirmed the veracity of their story). The i860 was the first target platform for Windows NT, and it was codenamed "N-10" - NT. Finally, it was time to start writing some code. "We checked the first code pieces in around mid-December 1988," Lucovsky said, "and had a very basic system kind of booting on a simulator of the Intel i860 (which was codenamed "N-Ten") by January." In fact, this is where NT actually got its name, Lucovsky revealed, adding that the "new technology" moniker was added after the fact in a rare spurt of product marketing by the original NT team members. "Originally, we were targeting NT to the Intel i860, a RISC processor that was horribly behind schedule. Because we didn't have any i860 machines in-house to test on, we used an i860 simulator. That's why we called it NT, because it worked on the 'N-Ten.'" ↫ Paul Thurrott The i860 was one of Intel's many attempts over the years to replace x86 with something more modern, but - as would become tradition with Intel and attempting to replace its x86 architecture - it suffered from endless delays, missed targets, and lacklustre performance. It saw only sporadic use in the market, and ended up on the chopping block after only a few years. Intel tried to replace x86 again soon after with Itanium, which suffered an identical fate. Still, the engineers working on the i860 platform in the late '80s and early '90s at Intel can at least take some pride in that to this day, the most popular desktop operating system in the world got its name from the product they developed. Intel's i860 might barely even be worthy of a footnote today, but billions of PC users log into their Windows "N-10" machines every day, unwittingly carrying a torch for the failed x86 replacement.
27 Jul 2026 11:37pm GMT
The Fedora 45 sausage factory
This is a walkthrough of how Fedora turns source code and packages into the artifacts you download and install. It follows the a package from a packager's git push to a composed release: ISOs, cloud images, container images, and OSTree deployments. ↫ Simon de Vlieger Linux distributions - good ones like Fedora, at least - are really complex operations, with a ton of checks and balances to ensure no git push eventually ends up causing problems on individual users' machines way down the line. The fact so many people involved in this complex web of processes also happen to be volunteers doing all of this out of the goodness of their hearts is amazing. Of course, this doesn't just apply to Fedora, but also the countless other distributions out there, especially those not owned by some giant corporation like IBM. If you're just a casual Fedora user, there's really no reason you have to know or be aware of any of this, but it's still fun and interesting to understand the inner workings of your distribution of choice.
27 Jul 2026 7:33pm GMT
Comanche: Maximum Overkill from 1992 does weird things on Intel processors
Let's do another article about weird code in video games. The original 1992 Comanche release is extremely picky about memory managers. The game refuses to work with EMM emulators and crashes when EMM386 is active. The game may also hang or reboot the system when HIMEM.SYS is not loaded (the problem seems to be system configuration dependent). These issues are clearly noted in the Comanche documentations, but at the same time they're also all signs of a substandard DOS extender. On top of that, the game authors accomplished a remarkable feat: By only loosely following Intel's instructions on how to enter protected mode, NovaLogic managed to write a game which worked on the then-existing 386 and 486 processors, but under some circumstances failed to run on Pentium and later processors. ↫ Michal Necasek at OS/2 Museum As usual, a great read from Michal Nacesek.
27 Jul 2026 7:23pm GMT