Tech News
← Home  ·  All topics

Linux

83 GoKawiil briefs on this topic

Ubuntu completes shift of coreutils from C to Rust implementation

Ubuntu has finished replacing the traditional GNU coreutils package with a Rust-based implementation across its system utilities. This marks a major step in the distribution's broader effort to rewrite core system components in memory-safe Rust rather than C.

Study Highlights Malloc() Bottlenecks in Multithreaded Programs

An analysis traces the evolution of memory allocation from stack-based schemes to dynamic linked-list heaps, garbage collection, and jemalloc's 2006 introduction of 'arenas' for NUMA and multi-core memory management. It notes that standard malloc() implementations serialize concurrent allocation requests, causing multithreaded applications to slow down rather than scale as processor counts increase.

BambooToken malware framework uses MQTT protocol to control Windows and Linux hosts

Researchers at Lumen's Black Lotus Labs identified a previously undocumented malware framework, BambooToken, active since 2023, that in its 2024-2025 variants switched to the MQTT messaging protocol for command-and-control. Infected systems subscribe to unique topics on a central broker to receive operator commands and report status, and the malware has infected servers tied to mobile apps, legal, financial, and software development firms via side-loading disguised as Tendyron OnKey USB-token software or a fake Kingsoft Office suite.

DigitalOcean leaves CSS-Tricks dormant while funding DHH's Omarchy with $3M

CSS-Tricks, the web development site DigitalOcean acquired in 2022 and briefly revived in mid-2024 under editor Geoff Graham, has gone inactive again with no explanation from its owner. Meanwhile, DigitalOcean quickly arranged a $3 million donation to Omarchy, a set of Arch Linux scripts led by David Heinemeier Hansson, and has also stopped small monthly payments to GNOME and Flathub infrastructure.

Valve prices Steam Frame VR headset at $1,059, bundles free Half-Life: Alyx

Valve has opened reservations for its standalone Steam Frame VR headset, priced at $1,059 for 256GB storage or $1,299 for 1TB, with sign-ups closing September 17 and invitations sent starting September 18. Every unit includes two controllers, a 6GHz wireless adapter, and a native Arm64 rebuild of Half-Life: Alyx that runs directly on the device.

YC-backed Cua seeks founding GTM lead to commercialize its computer-use AI framework

Cua, a Y Combinator-backed startup building infrastructure for AI agents that operate computers and applications, is hiring its first dedicated go-to-market employee. The hire will work directly with founders to identify target customers, design sales and pilot processes from scratch, and help grow products built on Cua's Driver framework. Responsibilities span the entire commercial cycle, from technical discovery and demos to closing deals and expanding accounts.

OpenRGB releases version 1.0 for unified, cross-platform RGB control

OpenRGB, an open-source project, has reached its 1.0 release, offering a single lightweight application to control RGB lighting from multiple manufacturers instead of juggling separate proprietary apps. It runs on Windows, Linux and MacOS, and has been tested across x86, x86_64, Arm32 and Arm64 hardware including Raspberry Pi devices. The software is released under the GNU General Public License v2 and includes a network-based SDK for third-party integrations.

Cpak launches as an OCI-based packaging format for Linux apps

A new project called cpak introduces an OCI-compliant application package format aimed at Linux desktops, servers and devices. It packages software with a legible manifest and traceable origin, supports Dockerfile-style builds with layer caching but no container daemon, and lets apps bind directly to host GPU drivers rather than bundling their own.

Swiss government and military begin shifting from Microsoft 365 to openDesk

Switzerland's Federal Chancellery and its Armed Forces Cyber Command are separately moving away from Microsoft 365 toward openDesk, a German-built open-source workplace suite covering email, calendars, documents and video conferencing. The Chancellery plans to run openDesk alongside Microsoft 365 for about 3,000 of 47,000 federal employees by the end of 2027, at an estimated cost of 9 million Swiss francs, while the military is proceeding faster on sensitive systems.

System76 launches Thelio Mira AI workstation with up to 192GB GPU memory

System76 has introduced Thelio Mira AI, a Linux-based desktop workstation aimed at local AI development that supports GPU configurations offering up to 192 GB of memory. The machine is designed to let developers train, fine-tune, and iterate on demanding AI models without relying on cloud infrastructure, and it ships with standard System76 hardware warranty options of one, two, or three years.

Omarchy pairs Arch Linux with built-in AI coding agents for easier setup

Omarchy is a Linux distribution built on Arch that automates installation and configuration while integrating multiple AI coding agents such as Claude Code, GitHub Copilot CLI, and Grok CLI directly into the desktop. Users can pick a default agent to debug system issues, tweak settings, or build apps and themes, and can also run local models via LM Studio or Ollama. It targets developers on modern x86-64 hardware, though it can run on older machines too.

Researcher outlines manual and automated methods for testing kernel race condition bugs

A security researcher describes the practical difficulty of confirming and reproducing race condition bugs in software, particularly the Linux kernel. Current techniques include manually inserting delay calls into kernel code to force specific thread interleavings, or using DTrace probes on macOS and Windows, both of which are slow and require trial and error.