Unlocking Japan’s Tech Future: Insights for the World from the 2025 Tech Talent Japan Report

1 week ago

This week, while in Japan for a sold-out KubeCon + Cloud NativeCon, I had the great privilege of presenting our latest research to an audience of leading Japanese technology companies. As someone who has long admired Japan’s reputation for precision, quality, and innovation, it was especially meaningful to share insights that could help shape the country’s digital future.

Hilary Carter

Elementary OS 8: Where Privacy Meets Design Simplicity for a Better Linux Experience

1 week 1 day ago
by George Whittaker

In the world of Linux distributions, many projects aim to strike a balance between functionality, aesthetics, and security. Few, however, have achieved the level of polish and principled focus that Elementary OS brings to the table. With the release of Elementary OS 8, the developers have doubled down on their vision of an operating system that champions privacy and design simplicity without compromising usability. This article takes a look at how Elementary OS 8 prioritizes these values and why it deserves attention from privacy advocates and design enthusiasts alike.

A Fresh Take on Privacy: Built into the Core

Privacy isn’t just a feature in Elementary OS 8 — it’s a foundational principle. The developers have carefully considered how user data is handled at every level of the system.

AppCenter: A Curated, Privacy-Respecting Store

Unlike many popular app stores that may include proprietary apps with invasive tracking, the AppCenter in Elementary OS 8 focuses on open-source, privacy-friendly applications. Every app available through AppCenter undergoes a review process to ensure it adheres to the platform’s guidelines: no ads, no tracking, and no questionable data collection practices.

What sets AppCenter apart is its pay-what-you-want model, which allows users to support developers directly, eliminating the need for ad-supported or data-harvesting monetization schemes.

Flatpak Sandboxing

Elementary OS 8 ships with first-class Flatpak support, enabling apps to run in isolated sandboxes. This technology ensures that applications can only access the data and hardware resources explicitly granted by the user. For example, a note-taking app installed via Flatpak won’t have access to your microphone, camera, or sensitive directories unless you allow it.

The adoption of Flatpak aligns perfectly with Elementary’s privacy goals, as it provides clear boundaries between apps and the rest of the system.

Zero Telemetry, Transparent Feedback

Elementary OS 8 does not include any hidden telemetry or automatic data collection. Unlike some mainstream operating systems that quietly transmit usage statistics, crash reports, and device identifiers back to central servers, Elementary’s philosophy is that your data belongs to you.

When feedback is requested, such as through the optional Problem Reporting tool, users are clearly informed about what data will be sent and must opt in consciously.

Go to Full Article
George Whittaker

[Testing Update] 2025-06-19 - KDE Frameworks, Nvidia, Pamac, Xorg, Wine

1 week 1 day ago

Hello community, here we have another set of package updates.

Current Promotions
  • Find out all about our current Gaming Laptop the Hero with Manjaro pre-installed from Spain!
  • Protect your personal data, keep yourself safe with Surfshark VPN: See current promotion
Recent News Valkey to replace Redis in the [extra] Repository (click for more details) Previous News Finding information easier about Manjaro (click for more details) Notable Package Updates Additional Info Python 3.13 info (click for more details) Info about AUR packages (click for more details)

Get our latest daily developer images now from Github: Plasma, GNOME, XFCE. You can get the latest stable releases of Manjaro from CDN77.

Our current supported kernels
  • linux54 5.4.295
  • linux510 5.10.237
  • linux515 5.15.185
  • linux61 6.1.141
  • linux66 6.6.93
  • linux612 6.12.33
  • linux614 6.14.11 [EOL]
  • linux615 6.15.2
  • linux616 6.16.0-rc2
  • linux61-rt 6.1.134_rt51
  • linux66-rt 6.6.87_rt54
  • linux612-rt 6.12.28_rt10
  • linux613-rt 6.13_rt5
  • linux614-rt 6.14.0_rt3
  • linux615-rt 6.15.0_rt2

Package Changes (Thu Jun 19 09:57:54 CEST 2025)

  • testing core x86_64: 12 new and 12 removed package(s)
  • testing extra x86_64: 1231 new and 1237 removed package(s)
  • testing multilib x86_64: 5 new and 7 removed package(s)

A list of all package changes can be found here.

Click to view the poll.

Check if your mirror has already synced:

8 posts - 7 participants

Read full topic

philm

Open 3D Foundation Launches O3DE 25.05.0 Release with Enhanced Robotics Simulation, Stability and Performance for Games

1 week 2 days ago

SAN FRANCISCO, June 18, 2025 – Today, Open 3D Foundation (O3DF) announces the availability of the Open 3D Engine (O3DE) 25.05.0 release that delivers powerful new capabilities for game and simulation developers, with a focus on performance, stability, and a streamlined workflow. Engineered for creating high-fidelity, real-time 3D games, O3DE now offers improved rendering performance, enhanced cinematic tools, and a more efficient developer experience.

Maemalynn Meanor

How to Automate Daily Linux Health Checks with a Bash Script + Cron

1 week 2 days ago
The post How to Automate Daily Linux Health Checks with a Bash Script + Cron first appeared on Tecmint: Linux Howtos, Tutorials & Guides .

Managing Linux servers daily can be fun and stressful, especially when you’re dealing with unexpected downtimes or service failures. One

The post How to Automate Daily Linux Health Checks with a Bash Script + Cron first appeared on Tecmint: Linux Howtos, Tutorials & Guides.
Ravi Saive

Arch Linux Breaks New Ground: Official Rust Init System Support Arrives

1 week 3 days ago
by George Whittaker Introduction: Arch Linux Leads the Way in Modern Init Systems

Arch Linux has long been revered in the Linux community for its minimalist design, rolling release model, and cutting-edge technology adoption. Now, in a move that underscores its commitment to innovation and security, Arch Linux has officially added support for a Rust-based init system — marking a significant milestone not just for the distribution itself, but for the broader Linux ecosystem. This bold step positions Arch at the forefront of the trend towards modern, memory-safe system components and could signal a turning point in how critical low-level Linux processes are designed and maintained.

In this article, we’ll explore what this new Rust init system means for Arch Linux, why Rust was chosen, the technical details of this groundbreaking addition, and how it may shape the future of Linux init systems.

The Role of Init Systems in Linux: A Foundation of Every Boot

Before diving into the specifics of the Rust init system, it’s important to understand the role that init systems play in Linux. When a Linux system boots, the kernel initializes hardware and mounts the root filesystem. But after that, it needs to start up user space — all the daemons, services, and user processes that make a system usable. This crucial task falls to the init system, which is the first process the kernel starts (PID 1).

Key responsibilities of an init system include:

  • Initializing system services and daemons

  • Mounting additional filesystems

  • Setting up devices and networking

  • Managing service dependencies and startup order

  • Handling signals for shutdown, reboot, and service restarts

In essence, the init system is the conductor of the Linux orchestra, ensuring that all components of the system start and run in harmony.

From sysvinit to systemd: The Evolution of Init on Arch

Historically, Arch Linux began with sysvinit, a simple and traditional init system dating back to UNIX. However, as Linux systems grew more complex, sysvinit’s limitations became apparent — notably its lack of dependency management and parallel service startup.

In 2012, Arch made a significant transition to systemd, a modern init system written in C that brought features like parallel unit startup, socket activation, cgroups integration, and a powerful journal for logging. While systemd addressed many shortcomings of older init systems, it also sparked controversy due to its complexity and tight integration into the system.

Go to Full Article
George Whittaker

Transition to the new WoW64 wine and wine-staging

1 week 4 days ago

We are transitioning the wine and wine-staging package to a pure wow64 build. This change removes the dependency on the multilib repository for wine and wine-staging.

The main reason for this is to align with upstream Wine development, which simplifies packaging and the dependency chain.

Potential Issues:

  • OpenGL Performance: A known limitation of the new WoW64 mode is reduced performance for 32-bit applications that use OpenGL directly
  • Breaking Changes: Existing 32-bit prefixes needs to be recreated

If you are facing issues with 32 bit prefixes, please recreate these and reinstall the application.

Peter Jung

[Testing Update] 2025-06-14 - Firefox, Thunderbird, Login_NG, Erlang, Yoshimi

1 week 6 days ago

Hello community, here we have another set of package updates.

Current Promotions
  • Find out all about our current Gaming Laptop the Hero with Manjaro pre-installed from Spain!
  • Protect your personal data, keep yourself safe with Surfshark VPN: See current promotion
Recent News Valkey to replace Redis in the [extra] Repository (click for more details) Previous News Finding information easier about Manjaro (click for more details) Notable Package Updates Additional Info Python 3.13 info (click for more details) Info about AUR packages (click for more details)

Get our latest daily developer images now from Github: Plasma, GNOME, XFCE. You can get the latest stable releases of Manjaro from CDN77.

Our current supported kernels
  • linux54 5.4.295
  • linux510 5.10.237
  • linux515 5.15.185
  • linux61 6.1.141
  • linux66 6.6.93
  • linux612 6.12.33
  • linux614 6.14.11 [EOL]
  • linux615 6.15.2
  • linux616 6.16.0-rc1
  • linux61-rt 6.1.134_rt51
  • linux66-rt 6.6.87_rt54
  • linux612-rt 6.12.28_rt10
  • linux613-rt 6.13_rt5
  • linux614-rt 6.14.0_rt3
  • linux615-rt 6.15.0_rt2

Package Changes (Sat Jun 14 12:02:13 CEST 2025)

  • testing core x86_64: 4 new and 4 removed package(s)
  • testing extra x86_64: 1660 new and 1823 removed package(s)
  • testing multilib x86_64: 4 new and 4 removed package(s)

A list of all package changes can be found here.

Click to view the poll.

Check if your mirror has already synced:

9 posts - 8 participants

Read full topic

philm