How to Achieve Independence, Privacy, and Trust in the Adoption of AI

1 month 2 weeks ago

In my week at Open Source Summit Europe and AI_Dev in Amsterdam, the topic of digital sovereignty persisted throughout various keynotes, panels, and hallway track conversations. Control, agency, and participation are seen as critical for Europe’s digital future. But sovereignty does not necessarily equate to solutions built within a country’s borders. Instead, it is seen as a larger movement of capacity-building that places local developers and innovators as builders and decision-makers on the global open source technologies the country or region relies on. This is as relevant in Europe as it is in my home country of Canada, where concerns around digital sovereignty also abound. 

Anna Hermansen

Harnessing GitOps on Linux for Seamless, Git-First Infrastructure Management

1 month 2 weeks ago
by George Whittaker Introduction

Imagine a world where every server, application, and network configuration is meticulously orchestrated via Git, where updates, audits, and recoveries happen with a single commit. This is the realm GitOps unlocks, especially potent when paired with the versatility of Linux environments. In this article, we'll dive deep into how Git-driven workflows can transform the way you manage Linux infrastructure, offering clarity, control, and confidence in every change.

GitOps Demystified: A New Infrastructure Paradigm

GitOps isn't just a catchy buzzword, it's a methodical rethink of how infrastructure should be managed.

  • It treats Git as the definitive blueprint for your live systems, everything from server settings to application deployments is declared, versioned, and stored in repositories.

  • With Git as the single source of truth, every adjustment is tracked, reversible, and auditable, turning ops into a transparent, code-centric process.

  • Beyond simple CI/CD, GitOps introduces a continuous reconciliation model: specialized agents continuously compare the actual state of systems against the desired state in Git and correct any discrepancies automatically.

Why Linux and GitOps Are a Natural Pair

Linux stands at the heart of infrastructure, servers, containers, edge systems, you name it. When GitOps is layered onto that:

  • You'll leverage Linux’s scripting capabilities (like bash) to craft powerful, domain-specific automation that dovetails perfectly with GitOps agents.

  • The transparency of Git coupled with Linux’s flexible architecture simplifies debugging, auditing, and recovery.

  • The combination gives infrastructure teams the agility to iterate faster while keeping control rigorous and secure.

Architecting GitOps Pipelines for Linux Environments Structuring Repositories Deliberately

A well-organized Git setup is crucial:

  • Use separate repositories or disciplined directory structures for:

    • Infrastructure modules (e.g., Terraform, networking, VMs),

    • Platform components (monitoring, ingress controllers, certificates),

    • Application-level configurations (Helm overrides, container versions).

  • This separation helps ensure access controls align with responsibilities and limits risks from misconfiguration or accidental cross-impact.

Go to Full Article
George Whittaker

[Testing Update] 2025-09-03 - Qemu, Nvidia, Deepin, Ollama, Virtualbox

1 month 2 weeks ago

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

Current Promotions 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.297
  • linux510 5.10.241
  • linux515 5.15.190
  • linux61 6.1.149
  • linux66 6.6.103
  • linux612 6.12.44
  • linux615 6.15.11 [EOL]
  • linux616 6.16.4
  • linux617 6.17.0-rc4
  • linux61-rt 6.1.146_rt53
  • linux66-rt 6.6.101_rt59
  • linux612-rt 6.12.43_rt12
  • linux615-rt 6.15.0_rt2
  • linux616-rt 6.16.0_rt3

Package Changes (Wed Sep 3 12:46:36 CEST 2025)

  • testing core x86_64: 1 new and 1 removed package(s)
  • testing extra x86_64: 1305 new and 1307 removed package(s)
  • testing multilib x86_64: 1 new and 1 removed package(s)

Overlay Changes

  • testing extra x86_64: 37 new and 39 removed package(s)
  • testing multilib x86_64: 2 new and 2 removed package(s)

A list of all changes can be found here.

Click to view the poll.

Check if your mirror has already synced:

11 posts - 7 participants

Read full topic

philm

Top 5 Diagram Tools for Linux Users in 2025 (Free & Open-Source)

1 month 2 weeks ago
The post Top 5 Diagram Tools for Linux Users in 2025 (Free & Open-Source) first appeared on Tecmint: Linux Howtos, Tutorials & Guides .

Since diagrams such as networks, organizational structures, system architectures, workflows, etc., have become an indispensable part of both technical and

The post Top 5 Diagram Tools for Linux Users in 2025 (Free & Open-Source) first appeared on Tecmint: Linux Howtos, Tutorials & Guides.
Dea Mataj

The State of Open Source in Europe: From Passion, to Prioritization

1 month 2 weeks ago

When the first World of Open Source: Europe Spotlight 2022 report was published in Dublin at the time we launched Linux Foundation Europe, it painted a picture of a continent with an undeniable passion for open source — a “romantic” relationship, as our researchers called it. European contributors were motivated by learning and enjoyment more than career advancement. Policies across governments encouraged consumption of open source, and industry leaders recognized its value. However, beneath this enthusiasm, a structural imbalance was clear. Organizations were consuming more open source than they were contributing back, and many sectors, in particular the public sector, lagged in fully embracing open collaboration.

Hilary Carter

How DevOps Teams Are Redefining Reliability with NixOS and OSTree-Powered Linux

1 month 2 weeks ago
by George Whittaker

This article explores how modern DevOps teams are redefining stability and reproducibility in production environments by embracing truly unchangeable operating systems. It delves into how NixOS’s declarative configuration model and OSTree’s atomic update mechanisms open the door to systems that are both resilient and transparent. We'll explain the advantages, technologies, comparisons, and real-world use cases fueling this shift.

The Paradigm Shift: From Mutable Chaos to Immutable Assurance
  • Why the change happened: The traditional model, logging into servers, tweaking packages, and patching in place, has led to unpredictable environments, elusive bugs, “snowflake” systems, and configuration drift as environments diverged over time. Immutable infrastructure treats machines like fungible artifacts: if you need change, you don’t fix the running system, you replace it.

  • Key benefits:

    • Reliability at scale: Automated, reproducible deployments, no divergence across servers.

    • Simplified rolling back: If something breaks, spin up the previous, working version.

    • Security by design: Core systems are read-only, reducing the attack surface.

Immutable Foundations in Action NixOS: The Declarative, Version-Controlled Linux
  • How it works: System configuration, including packages, services, kernels, is expressed in the Nix language in a config file. Rebuilding produces a new system “generation,” which can be booted or rolled back.

  • Why DevOps teams love it:

    • Reproducibility: Exact environments can be rebuilt from config files, promoting parity across development, CI, and production.

    • Speed and consistency gains: In one fintech case, switching to NixOS reduced deployment times by over 50 percent, erased environment-related incidents, shrank container sizes by 70%, and cut onboarding time dramatically.

    • Edge readiness: Ideal for remote systems or stateless servers rebuilt nightly to ensure fleet consistency with easy rollback.

    • Personalization meets immutability: With tools like Home Manager, even user-specific configurations (like dotfiles or shell preferences) can be managed declaratively, and consistently reproduced across machines.

Go to Full Article
George Whittaker

[Testing Update] 2025-09-02 - Kernels, Wine, Haskell, Python

1 month 2 weeks ago

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

Current Promotions 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
  • Some Kernels got rebuilt
  • Wine 10.14
  • Haskell and Python 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.297
  • linux510 5.10.241
  • linux515 5.15.190
  • linux61 6.1.149
  • linux66 6.6.103
  • linux612 6.12.44
  • linux615 6.15.11 [EOL]
  • linux616 6.16.4
  • linux617 6.17.0-rc4
  • linux61-rt 6.1.146_rt53
  • linux66-rt 6.6.101_rt59
  • linux612-rt 6.12.43_rt12
  • linux615-rt 6.15.0_rt2
  • linux616-rt 6.16.0_rt3

Package Changes (Tue Sep 2 06:46:14 CEST 2025)

  • testing core x86_64: 1 new and 1 removed package(s)
  • testing extra x86_64: 1284 new and 1290 removed package(s)
  • testing multilib x86_64: 4 new and 4 removed package(s)

Overlay Changes

  • testing core x86_64: 30 new and 30 removed package(s)
  • testing extra x86_64: 54 new and 56 removed package(s)
  • testing multilib x86_64: 1 new and 1 removed package(s)

A list of all changes can be found here.

Click to view the poll.

Check if your mirror has already synced:

3 posts - 3 participants

Read full topic

philm