Team Leader - Nutanix Technology Champion - Nutanix NTC Storyteller

Julien DUMUR
Infrastructure in a Nutshell

This weekend I set out to move the IPMI of my lab Nutanix node onto my management segment. I changed the card’s address and the switch port’s VLAN profile within the same minute. The node had just been wiped, it had no operating system left, so there was no way to fix anything from the inside, and the card vanished from the network.

What gave me back the controls came down to an IPv6 link-local address and two commands, a quarter of an hour all told. Here is the method, on Windows 11 and on Rocky Linux.

The evening my IPMI vanished from the network

Two changes in the same minute left me no way of telling which one had broken what. I plugged a laptop straight into the dedicated IPMI port of this Supermicro SYS-5019D-4C-FN8TP to get back in.

On a running node, ipmitool locally settles that kind of blunder in a single command through the KCS interface, without going anywhere near the network, but a freshly wiped server closes that door. If you are in the opposite situation, with the card reachable and the password lost, I covered that case here: lost IPMI password on a Nutanix or Supermicro node.

Why link-local answers when IPv4 stays silent

Every active IPv6 interface carries an address starting with fe80::, which it builds on its own from its MAC and without DHCP. A machine whose IPv4 is wrong or missing therefore keeps a reachable identity on its segment. The ff02::1 address is the all-nodes multicast group: a ping to that group makes everything living at the end of the cable answer, and an IPMI powered in standby answers even with the server switched off. Multicast does not cross a router, so you do have to sit on the same segment as the card.

One detail settles the case for this method, which I only saw later while reading back my card’s configuration on firmware 01.74.13: the line “ARP Responses Enabled, Gratuitous ARP Disabled”. The IPMI never announces itself on the network, so listening passively on the segment gets you nowhere.

Finding the card on the cable

The principle is the same on both systems: identify the interface, send the multicast, read the neighbour cache.

On Windows 11

  • Spotting the adapter and its index:
Get-NetAdapter

The ifIndex column gives you the number to reuse afterwards, index 3 in my case.

On a direct link there is no DHCP server at all, and an interface left on automatic falls back to APIPA on 169.254.x.x, in which case nothing will ever ping, even against an IPMI in perfect health. Set a static address:

New-NetIPAddress -InterfaceAlias "Ethernet" -IPAddress 192.168.10.50 -PrefixLength 24
  • Sending the multicast, with the interface index as the zone suffix:
ping -6 ff02::1%3
  • Reading the discovered neighbours, with their MAC address:
Get-NetNeighbor -InterfaceIndex 3

On Rocky Linux

  • Identifying the interface:
ip link show
  • Sending the multicast:
ping6 -c4 ff02::1%ens0
  • Command output:
PING ff02::1%ens0(ff02::1%ens0) 56 data bytes
64 bytes from fe80:0:0:0:225:90ff:feb8:f313%ens0: icmp_seq=1 ttl=64 time=0.659 ms
64 bytes from fe80:0:0:0:225:90ff:feb8:f313%ens0: icmp_seq=2 ttl=64 time=0.288 ms
  • Matching the addresses to their MAC:
ip -6 neigh show dev ens0

One subtlety costs time when you move from one system to the other: the zone suffix takes an interface name on Linux and a numeric index on Windows, and an address copied from one console to the other fails without any explicit message.

Reading the vendor straight from the address

When a link-local address carries ff:fe in the middle, it derives from the MAC through the EUI-64 method, and the operation reverses in your head. Drop the two ff:fe bytes from the middle of fe80::225:90ff:feb8:f313, you are left with 02:25:90:b8:f3:13, then flip the second bit of the first byte: 02 becomes 00, which is a Super Micro Computer OUI.

Opening the web interface over link-local

The address you have recovered goes straight into a browser, in square brackets and followed by its zone suffix:

https://[fe80::225:90ff:feb8:f313%3]

The suffix is mandatory, a link-local address being unique only on a given segment. If your browser refuses that format, curl will at least confirm the service answers, with the % escaped as %25 and the -g option, without which the brackets are treated as globbing:

curl -k -g "https://[fe80::225:90ff:feb8:f313%25ens0]/"

What the IPMI told me

Once the interface was open, the answer came down to one line on its network page: the card was carrying 192.168.10.11, when I thought I had configured 192.168.10.1. The port’s VLAN profile had nothing to do with it, and the address I had typed belongs to the machine hosting my DNS. Reconfigured on the right address, and it was back.

My management cards now live in a reserved range at the bottom of the segment, with a matching DHCP exclusion, the lab node on .1 and the production node on .2. And I have stuck to a simple rule since: one change at a time, checked before the next one.

Read More

A little misadventure happened to me recently. After changing the IPMI password on my 1-node, I couldn’t log back into my node’s management interface. Forgot it instantly? Typo? Botched copy-paste? Whatever the reason, the access lockout was very real.

Losing your IPMI password (or BMC) is enough to make anyone break a sweat. But rest assured, experience has taught me a golden rule: as long as you still have access to the host operating system (whether it’s AHV, a standard Linux, or even ESXi), you can regain control without needing to perform a hardware reset.

However, the situation can be more critical than it seems. For the experts reading this, you know that in a Nutanix Single-Node environment, IPMI isn’t just an administrative convenience: it’s your one and only fail-safe. Without it, you can’t mount a Phoenix ISO via Remote Media during a major AOS crash or force a reboot. Losing BMC access on such a node quickly becomes a critical bottleneck for your production and remote console access.

In this guide, I’ll share the different methods to regain control of your node in a matter of minutes, from the gentlest approach to the last resort.

Method 1: In-band Reset via ipmitool

If you are running Nutanix AHV or a classic Linux distribution, you’re in luck: the ipmitool utility is usually available natively. The trick here relies on the KCS (Keyboard Controller Style) hardware channel. Simply put, this allows the host OS to communicate directly with the BMC chip via the motherboard bus (LPC/PCIe), entirely bypassing the management network.

Identify and Overwrite the Admin Account

Log in as root on your host. As a precaution, first ensure that the kernel modules managing IPMI are loaded:

modprobe ipmi_si
modprobe ipmi_devintf

Next, we’ll list the configured users (usually on channel 1) to spot the ID of our administrator account. In 99% of cases, the default account (ADMIN) corresponds to ID 2.

ipmitool user list 1

In my case, the ID is indeed 2:

Once the ID is confirmed, the command to force a new password is child’s play:

ipmitool user set password 2 'MyNewPwd123!'

When entering the previous command, the terminal might throw a nasty Invalid data field in request error.

Don’t panic; it’s simply the security policy parser of some firmwares rejecting your request. Not only does it require a minimum complexity (8 characters, uppercase, lowercase, number), but it can also be picky about the request format.

To bypass (or rather, satisfy) this mechanism, force the encoding length to 20 bytes by simply appending 20 to the end of your command:

ipmitool user set password 2 'MyNewPwd123!' 20

Your password has now been overwritten. You can test the connection to the web interface.

Method 2: The IPMICFG Utility (The Solution for VMware ESXi)

If you are running VMware ESXi, the first method might leave you stranded. Why? Because ipmitool is not packaged natively, and resolving dependencies to compile it on a hypervisor is a waste of time that I wouldn’t recommend.

The workaround is called IPMICFG. This is the official tool provided by Supermicro (downloadable from their portal with a free account). Its massive advantage is that it comes as static binaries, ready to use for Linux, Windows, and crucially, ESXi.

Once the archive is transferred to your host and extracted, using it is very straightforward:

./IPMICFG-Linux.x86_64 -user list
./IPMICFG-Linux.x86_64 -user setpwd 2 MyNewPwd123!

Note: Adapt the binary name if you are using the Windows or ESXi version.

You can download the utility here: https://www.supermicro.com/wdl/utility/IPMICFG/

Extreme Case: The Node No Longer Has a Bootable OS

What if the OS won’t boot at all? This is usually where the sweating starts, thinking that without network access to the IPMI or a functional OS, the only remaining option is a factory reset.

Remember: the KCS interface is exposed at the hardware level as soon as the BIOS POST completes. It is completely independent of your storage’s state.

All you have to do is boot the server from a USB stick containing a Linux Live CD (Ubuntu, Rocky Linux). Once on the live desktop, open a terminal, install the utility if it isn’t already there (e.g., apt install ipmitool), and run the exact same commands from Method 1.

Last Resort Method: The BMC Factory Reset

If for some obscure reason the previous methods fail, there is one ultimate resort left: resetting to factory settings.

With the Supermicro tool, the command is direct:

./IPMICFG-Linux.x86_64 -fd

And if you prefer the pure ipmitool method, you need to send a RAW command:

ipmitool raw 0x3c 0x40

⚠️ Warning, the consequences are heavy: Your entire BMC configuration is wiped clean. You will lose the static IP (the port reverts to DHCP), VLAN configurations, and user accounts. The BMC will then reboot (expect a good 2 to 3 minutes). Pay close attention to recent generations of servers: the password may not revert back to ADMIN/ADMIN. It defaults to the unique password printed on the OCP label (often stuck on the chassis or motherboard). Keep this in mind if your server is physically located on the other side of the world!

My Recommendations

Once access is recovered via method 1 or 2, here is what I systematically do to cover my back:

  1. The Password Manager: It’s basic, but save your creds immediately instead of keeping them in your copy-paste clipboard.
  2. The Backup Account: Create a second administrator account.
  3. The Slot ID Trick: Do not put your backup account on Slot ID 3. Force its creation on a higher Slot (like 5 or 6). Why? Because some infrastructure automation scripts have the annoying tendency to forcefully overwrite or modify the early Slots (2 and 3) during provisioning. By placing it further down, you safeguard it.

What about you? Have you ever locked yourself out of one of your nodes? Share your worst nightmare in the comments below!

Read More

As many of you know, my raw development level oscillates somewhere between absolute zero and “it miraculously started working”.

But now, the game has changed. Artificial intelligence, and more specifically CLI (Command Line Interface) coding agents like Claude Code, have given me superpowers. Suddenly, coding is no longer an insurmountable mountain, but a conversation. However, there’s a catch: to converse with the machine, your environment needs to be rock solid. And developing on Windows, historically, was a bit like trying to fit a square peg into a round hole.

Fortunately, WSL (Windows Subsystem for Linux) is here. The idea behind this guide? To save you from the cold sweats I experienced. I’m going to show you how to set up a clean Ubuntu environment on Windows, pack it with the necessary dependencies (Cargo, npm), install Claude Code, and connect it all seamlessly to Visual Studio Code.

Why bother with WSL2, you might ask? Quite simply because it allows us to completely isolate our AI tools. Claude Code will run in its own Linux sandbox, with native I/O performance, all completely independent of our Windows system. We keep full control.

Ready to transform your Windows machine into an AI-boosted development station? Follow the guide, I’ve cleared the minefield for you.

1. Enable and install WSL (Windows Subsystem for Linux)

Let’s not lie to ourselves: there was a time when installing a Linux environment on Windows was a real obstacle course. You had to dig into obscure menus, check “Windows Features”, and pray very hard. Today, Microsoft has caught up, and it all comes down to a single command line.

Installing WSL

Start by opening PowerShell as an administrator (right-click on the Start menu > Windows PowerShell (Admin) or Terminal (Administrator)).

Simply type this command and press Enter:

wsl --install

Let the magic happen. Once it’s finished, the golden rule of IT applies: restart your PC. This isn’t optional; Windows needs this reboot to activate the virtualization components at the system level.

WSL: Choosing your distribution

Upon reboot, WSL is there, but we’re going to make sure we install the right distribution. Reopen PowerShell (no need for admin rights this time).

To see what’s available in the “catalog”, type:

wsl --list --online

In our case, we’re going with the absolute standard, Ubuntu. That’s where the community is largest, and where you’ll find the most solutions if you ever run into an error message.

Launch the installation with:

wsl --install Ubuntu

A terminal window will open, asking you to create a UNIX username and a password.

Why does WSL2 change everything? For the more curious, you should know that this command enables WSL2 by default. This detail is crucial. Gone is the first version (WSL1) where Windows clumsily tried to translate Linux commands on the fly. Today, WSL2 uses a genuine, ultra-lightweight virtual machine (based on Hyper-V) with a real Linux kernel optimized by Microsoft. The result? 100% compatibility with development tools and blazing-fast file access (I/O) performance, which will be vital for Claude Code to read our code quickly.

2. Prepare the Ubuntu environment

Alright, the Linux distribution is installed, but a brand-new Linux system is like an empty apartment: it’s very clean, but you can’t do much in it.

Before bringing in our AI super-agent, we need to bring in the furniture, or rather the dependencies. Many modern CLI tools rely on very specific ecosystems.

Install Cargo (and our first AI tool)

For my own experiments, I often use the Rust ecosystem. So we’re going to install its package manager, cargo.

Type this into your Ubuntu terminal:

sudo apt install cargo

Why Cargo? Because it will allow us to install tools directly from their source code. For example, I use rtk, a highly practical AI framework. To install it, it’s as simple as this:

cargo install --git https://github.com/rtk-ai/rtk

Let it compile. It’s beautiful to watch (even if, I admit, I often watch these dozens of compilation lines scroll by like a deer in the headlights, just praying there won’t be any flashing red text at the end).

What is RTK for, you might ask? Well, it saves Claude Code tokens through automations, allowing us to chat longer with Anthropic’s AI to preserve our quotas.

Install Node.js and npm

Next, Claude Code and many other agents use web technologies. Therefore, we need npm (Node Package Manager).

Run the command:

sudo apt install npm

If a bearded and/or bald senior developer is reading this tutorial, he’s going to choke: “Ju, you never install npm via apt, it installs an old version and creates permission errors!”. And he would probably be right. The “real” best practice is to use NVM (Node Version Manager). However, let’s be pragmatic: for our specific goal of running Claude Code CLI today, the stable version provided by the Ubuntu repositories does the job perfectly. If, later on, you start racking up EACCES type errors when installing other global packages, you’ll know it’s time to clean it all up and switch to NVM!

3. Install and configure Claude Code

The official installation script

To install Claude Code, Anthropic made things simple. Well, “simple” in a Linux way. We’re going to use a tool called curl which will download a script from their servers and execute it directly on our machine.

Type this into your Ubuntu terminal:

curl -fsSL https://claude.ai/install.sh | bash

Normally, tossing an unknown script found on the net directly into your machine’s bash is the digital equivalent of picking up a USB drive on the sidewalk and plugging it straight into your PC. But hey, this is Anthropic, we’ll assume they don’t want to mine bitcoin on our backs.

The script will do its thing for a bit. And then, full of hope, eyes shining, you type claude in your terminal. And bam… claude: command not found.

Frustration. Cold sweats. Don’t panic, it’s a classic trap.

The infamous PATH trap

Why doesn’t it work on the first try?

Because Anthropic does things properly by respecting the principle of least privilege. Instead of brutally installing Claude Code at the root of your system (which would require super-administrator root rights and could break everything), the script places the executable in a neat little hidden folder of your own: ~/.local/bin.

The problem is that your Ubuntu system doesn’t look in this specific folder by default when you run a command. You have to explicitly show it the path. This is what we call the $PATH environment variable.

To fix this once and for all, we’re going to add this famous folder to our PATH. Copy and paste this line (be careful, copy it exactly with its quotes):

echo 'export PATH="$HOME/.local/bin:$PATH"' >> ~/.bashrc && source ~/.bashrc

This double command does two things: it writes the correct path at the end of your personal configuration file (.bashrc), and it asks the terminal to re-read this file immediately to apply the change (source).

Now, type claude or claude --version again. If a menu or a version number appears: you’ve won!

4. Final integration with VS Code

It’s all well and good to have the Claude CLI running quietly in a terminal on WSL, but the idea is still to have it read and write code comfortably. And for that, we need our trusty Visual Studio Code.

The WSL extension for VS Code

Open VS Code normally, on Windows. Go to the extensions tab and search for WSL (formerly Remote – WSL, published directly by Microsoft). Install it.

Once installed, look at the very bottom left of the VS Code window. You will see a small blue (or green) icon with >< chevrons. Click on it, and choose the “Connect to WSL” option.

A new VS Code window will open. In the bottom left corner, it now says “WSL: Ubuntu”. Bingo.

This is where the power of the architecture I mentioned earlier hits hard. When you open a project this way, VS Code installs a mini-server directly inside your Linux machine. The graphical interface (the editor) runs on Windows, but all the development logic, the integrated terminal, and file access run natively on Ubuntu.

The Claude plugin for VS Code

Having the CLI to run global commands is great, but let’s be honest: having Claude integrated directly into the editor’s interface is the ultimate comfort.

Still in this new VS Code window (connected to WSL), go back to the extensions tab and search for the official Claude extension (or Claude Dev/Cline depending on your preference).

⚠️ Warning: VS Code now manages two distinct “zones” of extensions. Those installed on your local Windows, and those installed inside your WSL machine. Make sure to click on the small blue button “Install in WSL: Ubuntu” if VS Code prompts you.

If you mistakenly install it on the Windows side, the plugin will spin its wheels and will be completely unable to read your Linux project files or understand the commands you send it.

Once the plugin is activated on the Ubuntu side, a new icon will appear in your sidebar. There you are, with the powerful CLI in the terminal below, and the responsive visual assistant on the side. A real control tower!

Conclusion

And there you have it, full circle. In a few command lines, we’ve gone from a walled-off Windows environment to an ultra-high-performance hybrid setup. You now have a clean Ubuntu subsystem, ready to compile Rust, run Node, and above all, host your new AI assistant.

For my part, with my “weekend dev” level, this setup has changed my life. I discuss, I guide, I supervise, and Claude manages the code. How about you, what will be your first project with this new stack?

Read More
Nutanix Tech Connect 2026

Some emails are simply more exciting to receive than others. When I saw that famous “You’re in” pop up in my inbox, I got a little rush of adrenaline. I am thrilled to share with you my invitation to the highly exclusive Nutanix Tech Connect 2026, taking place this coming October 26 and 27 right at headquarters, at Nutanix HQ in San Jose in the Silicon Valley!

As you know, on a daily basis, I spend a good part of my days with my nose deep in the Nutanix ecosystem at Inetum. It’s my playground. But this trip is the opportunity to literally step through the looking glass. And for the 2nd time! (see my article recounting my 2 days at NTC Tech Connect 2024).

If massive tech gatherings like the .NEXT event are perfect for discovering public announcements surrounded by thousands of attendees, Tech Connect is its exact opposite. It’s behind the scenes. Only a select few, hand-picked from the most active members of the NTC (Nutanix Technology Champions) community, are invited. And we are not making the trip to listen to the usual marketing pitch, but to dive right into the thick of it, exchange under NDA (Non-Disclosure Agreement), and dissect the architecture with the people who build the platform.

What is the Nutanix Tech Connect?

A gathering of enthusiasts

Being part of the NTC program already means evolving every day within an incredible community of sharing and mutual aid. But this in-person event takes the concept even further. It was designed as an intimate gathering. Nutanix’s goal here is not to fill a convention center, but to bring together around a table a handful of enthusiasts whose voices and field experience truly matter.

Direct impact on the Nutanix roadmap

This is where we hit the ultimate goal for any systems engineer! During these two days of immersion in San Jose, we leave the sales presentations at the door. Our direct contacts? Product Management (PM) and the Research & Development (R&D) teams.

It’s a golden opportunity to transparently discuss the evolution of the AOS (Acropolis Operating System) foundation and the future capabilities of our AHV hypervisor. It is precisely during these “unfiltered” roundtables that we dissect the complex use cases we encounter on our production clusters. Knowing that our “pain points” and field feedback can directly influence the technical roadmap and shape the code for upcoming releases is simply exhilarating!

On the agenda: Two days of immersion in San Jose

The program for these two days promises to be dense. The invitation email is clear: the goal is to interact directly with engineering, product teams, and even Nutanix executives. In practical terms, this translates into interactive technical sessions where we will be able to “challenge” architectural choices. It’s the perfect time to ask those pointed questions that often go unanswered on traditional forums, and above all, to get an exclusive sneak peek (strictly under NDA!) at what is brewing in the vendor’s labs.

The other huge asset of Tech Connect is networking. Gathering physically with NTCs from all four corners of the globe is a guarantee of incredibly rich exchanges due to the diverse backgrounds of all attendees. We compare our infrastructures, share our feedback, and often find solutions to complex problems over a simple cup of coffee. This synergy among passionate experts is what makes the true strength of the Nutanix community.

Between now and the end of October, preparations will ramp up. In the coming weeks, we’ll be treated to an exclusive “Kickoff” webinar to discover the detailed agenda, planned sessions, and, hopefully, a few surprises. Then comes the time to secure flights and accommodations.

For my part, the technical preparation has already begun! I am actively compiling my notes, my observations on the latest versions of AOS, and most importantly, feedback from colleagues. Because yes, I fully intend to be the spokesperson for our French-speaking community at this event!

Thank you and see you in California!

While waiting for October, I am going to quietly start putting together my compilation of notes and observations and work on some stickers to swap with my fellow NTCs. You can count on me to give you a detailed report when I return (at least, on everything that won’t be protected by the NDA!).

To conclude, I wanted to extend a huge and sincere thank you to Angelo, as well as to all the Nutanix teams, for this exceptional opportunity and for organizing this event. The recognition from this community is a powerful driving force on a daily basis.

See you in San Jose!

Read More

In a previous article, we saw how to deploy OpenClaw on Nutanix AHV. However, before you can fully enjoy this autonomous AI agent, it is crucial to prepare the ground. OpenClaw is not just a simple script: it’s an ecosystem that relies on several technological building blocks to “think” (local LLM), “execute” (Node.js) and “search” (SearXNG).

In this article, we are going to detail the step-by-step installation of all the necessary prerequisites on your virtual machine (running Ubuntu), explaining for each one why it is essential for OpenClaw to work properly.

1. NVIDIA Drivers: Unleashing GPU Power

OpenClaw can rely on large language models (LLMs) running locally. While it is technically possible to run these models on a processor (CPU), performance would be extremely slow. Installing NVIDIA drivers allows the system to leverage the graphics card (GPU) allocated to your VM via Nutanix AHV (vGPU or Passthrough), thereby ensuring fast and smooth AI inference.

Here is how to update your system and install the appropriate drivers:

# System update
sudo apt update && sudo apt upgrade -y

# NVIDIA server driver installation
sudo apt install nvidia-driver-535-server -y

# Reboot required to take effect
sudo reboot

After the reboot, check that your GPU is correctly recognized with the following command:

nvidia-smi

2. Node.js (v24): OpenClaw’s Execution Engine

The core logic of OpenClaw is developed in JavaScript/TypeScript. Node.js is the execution environment that allows running the agent’s code, managing its dependencies, and orchestrating calls between the interface, the AI model, and the various tools. We are targeting version 24.x here to ensure optimal compatibility.

# Adding the NodeSource repository and installing
curl -fsSL [https://deb.nodesource.com/setup_24.x](https://deb.nodesource.com/setup_24.x) | sudo -E bash -
sudo apt install -y nodejs

# Verifying the installed version
node --version  # should display v24.x

3. Ollama & Qwen 2.5: The Local Brain of the Operation

Ollama is the tool that will allow us to easily download and run our AI model locally. For OpenClaw, we are going to use the Qwen2.5 (7B) model. Why this choice? It’s a lightweight model (suitable for GPUs with about 8 GB of VRAM) and, above all, it is excellent at “Tool Calling”. It is this capability that allows OpenClaw to understand that it needs to execute a web search or run a script rather than simply generating text.

# Installing Ollama
curl -fsSL [https://ollama.ai/install.sh](https://ollama.ai/install.sh) | sh

# Start the Ollama service (in the background)
ollama serve &

# In another terminal, verify that Ollama detects the GPU:
nvidia-smi  # You should see ollama in the list of GPU processes

# Pull (download) the recommended model
ollama pull qwen2.5:7b

# Test the model and verify its execution on the GPU
ollama run qwen2.5:7b "say hello"

# While the model is generating a response, check VRAM usage
nvidia-smi

4. Docker: The Containerization Infrastructure

In order to extend OpenClaw’s capabilities (especially for web search which we will see next), we need third-party services. Docker allows these services to be deployed in an isolated, standardized, and fast manner, without polluting our host system with multiple complex dependencies.

# Installing initial dependencies
sudo apt update
sudo apt install -y ca-certificates curl gnupg

# Adding Docker's official GPG key
sudo install -m 0755 -d /etc/apt/keyrings
curl -fsSL [https://download.docker.com/linux/ubuntu/gpg](https://download.docker.com/linux/ubuntu/gpg) | sudo gpg --dearmor -o /etc/apt/keyrings/docker.gpg
sudo chmod a+r /etc/apt/keyrings/docker.gpg

# Configuring the Docker repository
echo \
  "deb [arch=$(dpkg --print-architecture) signed-by=/etc/apt/keyrings/docker.gpg] \
  [https://download.docker.com/linux/ubuntu](https://download.docker.com/linux/ubuntu) \
  $(. /etc/os-release && echo "$VERSION_CODENAME") stable" | \
  sudo tee /etc/apt/sources.list.d/docker.list > /dev/null

# Installing Docker packages
sudo apt update
sudo apt install -y docker-ce docker-ce-cli containerd.io docker-buildx-plugin docker-compose-plugin

# Adding your user to the docker group to avoid using 'sudo' every time
sudo usermod -aG docker $USER
newgrp docker

# Verifying the installation
docker --version

5. SearXNG: Giving AI Access to the Web

For OpenClaw to be a truly performant search agent, it cannot rely solely on the data contained in the Qwen model (which stops at its training date). SearXNG is a privacy-respecting metasearch engine. By installing it via Docker, we provide OpenClaw with an API (on port 8080) that it can use to retrieve real-time information from the web and source its answers.

# Create a dedicated directory for configuration
mkdir -p ~/searxng && cd ~/searxng

# Run the SearXNG container
docker run -d \
  --name searxng \
  --restart unless-stopped \
  -p 8080:8080 \
  searxng/searxng

# Verify that the container is running correctly
docker ps

# Test that the SearXNG API is responding
curl http://localhost:8080

6. Homebrew & GCC: The Compilation Tools

The OpenClaw Node.js ecosystem sometimes relies on low-level libraries or native packages that need to be compiled directly on your machine during installation. Homebrew (the well-known package manager on macOS, also very handy on Linux) and the GCC compiler are essential to avoid errors during the final dependency installation phase (the famous npm install).

# Install the base Ubuntu compilation package
sudo apt-get install build-essential

# Install Homebrew
/bin/bash -c "$(curl -fsSL [https://raw.githubusercontent.com/Homebrew/install/HEAD/install.sh](https://raw.githubusercontent.com/Homebrew/install/HEAD/install.sh))"

# The end-of-installation instructions for Homebrew will ask you
# to add Homebrew to your PATH. Generally, it looks like this:
# (Make sure to adapt the path if necessary)
echo 'eval "$(/home/linuxbrew/.linuxbrew/bin/brew shellenv)"' >> /home/$USER/.bashrc
eval "$(/home/linuxbrew/.linuxbrew/bin/brew shellenv)"

# Install GCC via Homebrew
brew install gcc

Conclusion

Your virtual machine on Nutanix AHV is now a rich and complete environment, equipped with high-performance GPU drivers, an execution engine (Node.js), an LLM ready to answer (Ollama), web access (SearXNG), and the right compilation tools.

The groundwork is perfectly laid. All that’s left is for you to finalize the installation of the application itself by following the rest of our guide on OpenClaw.

Read More

We’ve all experienced that moment of loneliness in our professional careers. The one where you’ve planned the perfect hardware upgrade for your infrastructure, but a trivial detail disrupts the whole operation. Recently, we had to replace the 3.5-inch mechanical drives in one of our 4-node clusters with 2.5-inch SSD drives. A classic maintenance operation to move from hybrid storage to full-flash and gain some IOPS.

The only problem, and a big one: the original server caddies weren’t compatible with this smaller form factor.

First approach: “official” adapters

The obvious solution when managing a pro infra? Order official adapters or replacement caddies. We needed 24 pieces in total (6 drives for each of the 4 nodes). And then, reality hit hard.

Over 500 euros (including taxes and shipping).

But the worst part wasn’t actually the price: it was the lead time. Waiting several weeks when the project had to move forward? Unthinkable. Since I refused to pay this tax and wait, my 3D printer was going to take care of it.

Plan B: the DIY solution

The advantage of having standard hardware like Supermicro is that you’re never the first to encounter a problem. No need to spend hours on Fusion 360 modeling the part to the nearest millimeter: the open-source community has probably already done it.

In a few clicks on 3D model sharing platforms (like Printables or Thingiverse), I found the perfect .stl file : https://www.thingiverse.com/thing:4353094

To ensure compatibility, I quickly printed one to validate the dimensions and make sure it did the job…

The next step: industrialization. I positioned my models so I could print 6 adapters at once. This meant leaving the printer running for about 7.5 hours for each build plate.

On my Creality CR-10S Pro v2 running Klipper, I was able to monitor the print job to ensure everything went as planned out of the corner of my eye while continuing to work on my projects.

Despite a slight hiccup during the first batch that forced me to do a bit of mechanical tweaking, the prints went perfectly well.

Maker Spirit for the Win!

The final verdict is clear:

  • Vendor Option: ~€543 and a 3-week wait.
  • Maker Option: €20 of filament, a few kWh, and two solid days of printing.

Beyond the obvious financial savings (for the price of the official adapters, we could have bought the printer + the filament), the real lesson of this adventure is that the maker mindset allows you to transform a budgetary and temporal problem into a DIY solution that is 20 times cheaper and gets the job done in ultra-short timeframes.

So, the next time a problem rears its head, think “out-of-the-box” and, if need be, whip out your finest spool of filament.

Read More
openclaw on nutanix ahv

If you read my previous article detailing the architecture and the technical stack I chose to deploy OpenClaw, you already know why I decided to run this solution on my Nutanix AHV cluster. Today, we’re getting practical! I will show you, step by step, how to deploy your own instance on a freshly installed Ubuntu virtual machine.

Before kicking off the hostilities, here is a quick reminder of my setup. I provisioned a VM on Nutanix AHV with:

  • 8 vCPUs
  • 32 GB of RAM
  • 250 GB of storage
  • an NVIDIA Tesla P4 graphics card in PCI Passthrough

💡 Why favor full Passthrough over vGPU (virtual GPU)? Quite simply to guarantee near “bare-metal” inference performance. By giving our VM direct and exclusive access to the physical hardware, we completely eliminate the overhead (latency) associated with the virtualization layer.

Let’s start the deployment.

Preparing the Ubuntu VM: System and NVIDIA Drivers

The very first step is to prepare the ground to deploy our AI.

Ubuntu 24.04: Operating System Update

This is a rule I apply every single time I deploy a new operating system. As soon as I connect via SSH, I make sure all packages are up to date to avoid future security flaws or dependency conflicts.

sudo apt update && sudo apt upgrade -y

GPU: Installing NVIDIA Drivers

For OpenClaw to harness the computing power of my Tesla P4, the operating system must be able to communicate with it properly. Here are the commands to run to install the drivers (you can access a more detailed guide on the blog):

sudo apt install nvidia-driver-535-server -y
sudo reboot

Once the machine has rebooted, we log back in and type the command to verify that our GPU is properly detected and ready to work:

nvidia-smi

Node.js and OpenClaw

Installing Node.js 22

OpenClaw is built on Node.js. To ensure we have a recent and efficient runtime environment (here version 22), we add the official NodeSource repository before launching the installation:

curl -fsSL [https://deb.nodesource.com/setup_22.x](https://deb.nodesource.com/setup_22.x) | sudo -E bash -
sudo apt install -y nodejs

Basic OpenClaw Deployment

Now that NodeJS is in place, we move on to installing OpenClaw. A simple curl script provided by the developers does the heavy lifting:

curl -fsSL [https://openclaw.ai/install.sh](https://openclaw.ai/install.sh) | bash

Once the installation is complete, the system automatically launches the configuration wizard for your instance. I will detail this step as well as the creation of API keys (Discord, Telegram, etc.) in a future blog post.

A small manipulation is required right after the OpenClaw installation if we want to be able to use “openclaw” commands without constraints. We need to add the local installation directory to our PATH environment variable (remember to adapt the username if you are not using administrateur):

export PATH="/home/administrateur/.npm-global/bin:$PATH"

💡 Why this manipulation? It’s an excellent security practice that I highly recommend. By exporting the PATH to ~/.npm-global/bin, we avoid installing global NPM packages with root (sudo) privileges. This significantly reduces attack surfaces and saves you from the eternal Linux permission conflicts!

Cleanly Exposing OpenClaw with Caddy

By default, the OpenClaw web interface listens on port 18789. Instead of attacking this port directly, I always prefer to place a reverse proxy in front of my applications. For this lab, my choice fell on Caddy.

sudo apt install -y caddy

💡 Why Caddy rather than Apache or Nginx? Because Caddy is formidably efficient. Where Nginx sometimes requires long configuration blocks for simple proxying, Caddy does the same job in literally three lines of code, all while being ultra-lightweight.

We edit its configuration file:

sudo vi /etc/caddy/Caddyfile

And we replace the entire content with the following instructions (replace the IP with the one of your VM, in my case 192.168.84.134):

192.168.84.134 {
    reverse_proxy 127.0.0.1:18789
}

Now, all that’s left is to restart the service so the proxy takes over:

sudo systemctl restart caddy

Network Security: Locking Down the OpenClaw Instance

Having a functional instance is good, securing it is essential. Even if you are on your local network (LAN), you should never leave open access to your control interface. We are going to apply a strict configuration via the OpenClaw CLI commands.

We start by restricting the Gateway listening to the local loopback to prevent any direct access:

openclaw config set gateway.bind loopback

We then force the operating mode to local, and activate token authentication (the bare minimum):

openclaw config set gateway.mode local
openclaw config set gateway.auth.mode token

Finally, since we are going through Caddy, we must authorize Cross-Origin requests (CORS) coming from our IP address, otherwise the browser will block the page (don’t forget to adapt the IP):

openclaw config set gateway.controlUi.allowedOrigins '["[https://192.168.84.134](https://192.168.84.134)"]'

We restart the service to apply our lockdown:

openclaw gateway restart

💡 The security pattern applied here is akin to local “Zero Trust”. By forcing OpenClaw on the loopback (127.0.0.1), we ensure that absolutely all traffic is forced to go through our Caddy proxy. Coupled with CORS filtering and authentication, we provide a baseline protection for our instance against potential scans or malicious scripts on the network.

First Contact and Configuration Validation

Retrieving the Access Token

Now that the doors are locked, we need the key. The authentication token was automatically generated during installation. We’re going to go fish it directly out of the JSON configuration file:

grep -i token ~/.openclaw/openclaw.json

Carefully copy this string of characters. Then open your browser and access your Web interface (e.g., https://192.168.84.134).

Enter the token in the “Gateway Token” box.

Device Approval

Once connected, you will notice that something is missing: the system is waiting for us to approve the “device” (the PC or tablet from which we wish to use OpenClaw) to grant it the right to process requests.

Return to your terminal to list the pending devices:

openclaw devices list

Locate your device ID in the list (a UUID-type string) and approve it:

openclaw devices approve b7beb7fa-fa4e-46e9-aec1-282bcce881f6

💡 Device approval (devices approve) is much more than a simple interface formality. It’s a sort of cryptographic handshake. This mechanism guarantees that no unsolicited machine can attach itself to your OpenClaw cluster instance without your knowledge!

Interaction Tests

The OpenClaw instance is now 100% operational! To validate our entire stack, there’s nothing like a full-scale test. You can send a first prompt on the web interface’s integrated chat, or configure a bridge to send a message on the Discord side.

Conclusion

We went from a simple Ubuntu VM to a true secured inference server, powered by Node.js and accelerated by a dedicated NVIDIA Tesla P4 GPU via Nutanix AHV. The architecture is clean, secured behind a Caddy proxy, and ready to handle our requests.

But this is only the beginning. In upcoming articles, we will go even further: I will show you how to configure OpenClaw via the startup wizard, deploy local models via Ollama, create an interactive Discord bot, and even inject Google API keys to equip our AI with search capabilities. Stay tuned!

Read More

If you follow my ramblings on the blog, you know I love tinkering with my clusters and testing somewhat out-of-the-box stuff (cf. my Steamdeck articles for example). Recently, I had a thought: Gemini or Claude in the public cloud is great for coding a Python script or writing emails. But when it comes to asking it to interact with our local infrastructure, that’s where it gets stuck.

So I wondered how I could connect artificial intelligence closer to my VMs. With this in mind, I got my hands on OpenClaw. Honestly, it was a bit of an obstacle course at the start. No more simple conversational gadgets, here we are talking about deploying a true Private AI on a Nutanix AHV cluster capable of acting on our infrastructure. Let me present the tech stack I chose for this experiment.

What is OpenClaw?

For those who have been living in a cave these past few months, OpenClaw is a GitHub project that exceeded 300k stars in just a few months. Imagine an ultra-intelligent thought translator coupled with a butler. Instead of clicking through dozens of menus in a complex interface, you simply ask your infrastructure to work for you in natural language (via a universal web interface or even messaging apps like WhatsApp and Telegram). It is even capable of working on its own while you sleep!

But where it gets exciting for us engineers is under the hood. OpenClaw is not just another “stateless” Large Language Model (LLM) that forgets everything with each new request. It is a true Agentic Gateway. Concretely, this means it orchestrates autonomous agents equipped with tools. These agents can be configured to tap directly into our cluster’s private APIs (like the REST APIs of Prism Element or Prism Central), code, browse the web, and synthesize certain information. In short, we don’t just ask the AI questions anymore, we delegate tasks to it.

Why Self-hosted?

In the field, the question of data governance arises the second the word “AI” is pronounced. Out of the question to send sensitive information to servers over which I have no control!

Choosing the Self-hosted route with OpenClaw means taking back absolute control. Data flows, execution logs, and API credentials stay locked down warm and safe on my network, isolated from the internet if desired.

Architecture and Tech Stack

For this project, a simple “Next, Next, Finish” on the corner of a table was out of the question. Here is the robust technical architecture I ended up validating for my deployment.

The Foundation: Nutanix AHV & Ubuntu 24.04 LTS

To run this beast, you need solid foundations. I provisioned a virtual machine running Ubuntu 24.04 LTS hosted directly on my Nutanix AHV cluster.

On the sizing side, I went with 8 vCPUs, 32 GB of RAM, and 250 GB of dedicated storage. You might tell me: “32 GB for a gateway, isn’t that a bit too much?” The gateway will have to ingest substantial data streams, maintain the cache of the various active agents, and potentially handle heavy parallel API querying. And besides, I can allocate these resources in my lab, so why deprive myself?

The Application Engine: NodeJS 22

At the heart of OpenClaw, the magic happens thanks to NodeJS 22. It is the execution engine that runs the gateway and its AI agent integrations.

Why is Node 22 an excellent architectural choice here? For its asynchronous management (Event Loop). When you ask OpenClaw to do a status report on 50 VMs, the gateway will initiate multiple API calls to Prism Central while keeping your WebSocket stream open to reply in real-time in the chat interface. NodeJS excels in this non-blocking concurrency management.

Network Routing: Caddy

The usual operating mode for OpenClaw is to deploy it locally on the machine from which you will connect to it, or to set up a tunnel to access the remote instance. Let’s not lie to ourselves, I wanted to type the IP in my browser and be able to access my instance, whether I’m on my PC or my tablet.

To make this possible, I use a Caddy Reverse Proxy. Caddy manages traffic routing and HTTPS encryption fully automatically.

I can already hear you saying: “Yes, but if a guy connects to your local network, he will have access to your instance!”. Well no! Because OpenClaw natively integrates a Device Whitelisting system. If your PC has never been connected to the instance, you will have to provide the “Gateway Token”. Then, you will have to accept this new connection on the OpenClaw instance side. As you can see, only previously authorized devices can enjoy your local instance.

The Entry Point: Discord

The choice of entry point, which will allow you to interact with OpenClaw, is often a matter of taste and colors.

OpenClaw directly integrates a chat system so you can talk to it. It’s good, it’s native, but inaccessible if I’m not at home. The system also offers to configure external entry points like Telegram, WhatsApp, Discord, or even Teams and Slack. And that is clearly a big plus because it gives almost unlimited possibilities!

What’s Next?

The goal of this article was to present the architecture envisioned for my OpenClaw assistant, to understand what we are deploying and why. We therefore have a coherent technical stack, performant thanks to Nutanix AHV, and hosted locally.

In a future article, I will explain how to install OpenClaw step by step until you have a functional instance.

Read More
Lovable vs Gemini

AI-assisted coding, for a complete novice in development like me, is a revolution. It allows me to turn ideas into reality in a few hours where it would have been impossible before. But this speed comes at a price we too often overlook: technical debt.

The Development Context

Recently, as I mentioned here, I developed a small web application named HYCU Upgrade Path. The concept is simple: a clean interface to generate and visualize the upgrade path from version A to version B of backup software.

To do this, I used Lovable, a “no-code/low-code” solution that allowed me to get the application online in a few days.

A few weeks later, I decided to rebuild the application using Gemini, Google’s multimodal IA, to see what it was capable of.

I gave similar instructions to both AIs. I expected a functional and similar result from both sides. What I didn’t foresee was the abysmal gap in the code structure… And the time spent.

We’re talking about a difference of 628kb versus 115kb. We’re talking about going from 79 files to 21 files. We’re talking about one week versus half a day. A chasm.

The Lovable Experience

On paper, Lovable sells a dream: you describe, it displays. And it’s true, the user experience is stunningly fluid. I described my need for HYCU Upgrade Path, and in a few iterations, the application was running before my eyes. Visually, it was clean with a few adjustments needed. Functionally, it was a bit more shaky.

I’m not a developer, but my first reflex was to check the generated repository. And there… it was a rude awakening.

For an application as simple as an upgrade path generator, Lovable spawned a veritable Rube Goldberg machine:

  • 79 files created.
  • 8 nested folders.
  • A total weight of 628kb.

Lovable fragmented the application into a myriad of tiny atomic components, generated duplicate configuration files, and imported libraries “just in case”. Looking at the components/ui folder, I found 38 files! Accordions, badges, carousels, “toasters”… when my app uses only a fraction of all that.

This is the “Black Box” approach: as long as it works on the surface, no one cares about the elegance of the engine. The result is a heavy application that is difficult to maintain over time. And for me, that’s a first red flag.

Regarding code modification through iteration, I didn’t find it very precise. I was forced to move forward in very small steps, which lengthened the development time… An iteration a bit too bold? It broke my interface half the time or gave a result that wasn’t what I expected. In short, not hyper-satisfied with the experience, although I managed to reach my goal in a short week of discussions.

The Gemini Experience: The Software Architect

After this week of struggle and a few weeks in production, I tried the same experiment with Gemini. Same prompt, same need, just “to see” what Google’s AI was capable of.

The result? At first, I thought pieces were missing.

  • 21 files in total.
  • 5 folders.
  • 115kb on the scale.
  • Development time: half a day.

Gemini adopted a radically different, much more mature approach. Instead of importing a massive graphic library, it structured the code and kept only what was truly necessary.

Opening the src/components folder, the difference is glaring: 7 files, all essential. No noise, no useless components.

Even more impressive, Gemini provided me with a “Production Ready” architecture. Where Lovable gave me a messy frontend, Gemini cleanly separated the frontend from the backend, and even generated a docker-compose.yml and a deployment script (deploy.sh) for my VPS. It didn’t just code the interface; it thought about how I would run it, complete with a nice README.md.

The Technical Match: Obesity vs Efficiency

Let’s compare apples to apples. Here is the scorecard for the same functionality:

MetricLovable (The Factory)Gemini (The Architect)Gain
Project Weight628 kb115 kb-82%
File Count7921-73%
PhilosophyFull UI Kit (“just in case”)Clean, readable codeEasier Maintenance
ArchitectureMonolithic FrontendDockerized (Front + Back)Ready to Deploy
Dev Time1 week1/2 dayProductivity x10

Why “cleanliness” matters (even for non-devs like me)

You might tell me: “We don’t care about the code or the number of files as long as the app works!”. That is a mistake.

Maintenance: Manually modifying the project created under Lovable is like looking for a needle in a haystack of 79 files. With Gemini, every file has a name that describes actually what it does.

Consumption: 628kb of code to load for a mobile user is heavy. 115kb is almost instant.

Cognitive Load: When AI generates “messy” code, it has a harder time reading itself for subsequent iterations. That’s why Lovable “broke” the interface: it got lost in its own complexity.

Conclusion: The Choice of Tool Makes the Difference

My verdict is clear.

If you want to prototype an idea in 10 minutes to show your boss that “it moves”, Lovable creates a good illusion. It’s spectacular, it’s visual, it’s a beautiful tech demo.

But if you want to build a lasting application that you can evolve without breaking everything, Gemini is far more efficient in my eyes.

The ecosystem is evolving fast. I haven’t tested it yet, but a tool like Claude Code is probably capable of doing even better.

Read More

October 2023. The situation is tense: the price per kWh is skyrocketing, and my newsfeed is flooded with ads for solar panels promising “total autonomy” or “free energy.” Being naturally suspicious (and a bit of a geek), I took out my Excel spreadsheets before taking out my checkbook. I invested €13,900 for 6kWp of power. Two years later, with 17.4 MWh produced, was it worth it? Spoiler: real-life figures beat my simulations, but the devil is in the details.

1. The Genesis: Why Turn My Roof into a Power Plant?

You don’t wake up one morning deciding to drop nearly 14,000 euros (before subsidies) just to please the planet. It is a calculation. My goal was twofold: to secure part of my energy costs for the next 20 years and, let’s admit it, the technical pleasure of managing my own production.

The Context: Buying Electricity in Advance

For the neophyte, seeing this as an expense is a mistake. It is a pre-purchase. By installing panels, I decided to buy a stock of electricity at a fixed price (the cost of installation divided by future production) rather than renting this energy from a supplier whose rates are indexed to geopolitical crises I cannot control.

But be careful, for this calculation to work, you shouldn’t size the installation based on guesswork.

Consumption Analysis: The Essential Prerequisite

Before even contacting an installer, I audited my own home. Many make the mistake of looking at their annual global bill. That’s insufficient.

You need to understand when you consume.

Solar only produces during the day (no kidding). If 80% of your consumption happens at night (electric heating without inertia, nightlife), solar without batteries will be a financial failure.

I extracted my hourly data via the Enedis website (thanks to the Linky smart meter) to isolate my energy “background noise,” what we call the baseload.

This is the house’s incompressible consumption when “nothing” is on: fridge, internet box, VMC, standby devices. For me, this baseload justified a production base, but to reach profitability on 6kWp, I had to be able to shift my heavy consumers (Washing machine, Dishwasher, Water heater) to the daytime. It was this “load shifting” potential that validated the project.

2. The Technical Study: Choosing Without Getting Scammed

Once the need was validated, I had to choose the hardware. The solar market is a jungle where passionate artisans rub shoulders with eco-scammers. Here are my technical choices and, above all, why I made them.

Self-Consumption with Surplus Sale: The Logical Choice

I opted for the standard model: I consume what I produce first, and what I don’t consume is automatically injected into the grid and sold to EDF OA (Purchase Obligation).

In October 2023, this contract guaranteed a fixed feed-in tariff (around 13 cts/kWh) for 20 years. This is a major financial security that allows amortizing the installation even if I am not home to consume.

The Hardware: DualSun and Enphase, the French-American Couple

For my 6 kWp installation, I selected:

  • 16 DualSun FLASH 375 Half-Cut Panels (Total: 6000 Wp)
  • 16 Enphase IQ8M Micro-inverters
  • One Enphase Envoy S-Metered communication gateway

Why this choice?

  1. DualSun Panels (375 Wp): It’s a French brand (manufactured in Asia, let’s be honest, but French engineering). The “Half-Cut” technology (half-cells) allows better management of partial shading and reduces resistive losses. They are robust and aesthetically sober (black frame).
  2. Micro-inverters vs Central Inverter: This was the big debate. I chose Enphase IQ8M micro-inverters.

Why the IQ8M?

Unlike a central inverter (like SMA or Fronius) which manages the entire string in series (if one panel fails or is shaded, the whole string drops), the micro-inverter manages each panel independently.

But why the IQ8M model? It is Enphase’s latest generation capable of creating a micro-grid (although I don’t use the “Sunlight Backup” mode without battery yet). The “M” suffix indicates an output power adapted to my 375Wp panels. With a peak output power of 330VA, the DC/AC ratio is 1.13, which is excellent for avoiding clipping while maximizing production in low light.

The “Plug & Play Kits” Parenthesis and the Efficiency Trap

Before signing my quote, I obviously looked at the “Plug & Play” kits found in DIY stores. On paper, it’s seductive: no craftsman, plug it into a socket, and you’re good to go. But for 6kWp, this solution was not viable, and one must warn against a frequent marketing mirage.

A 400W panel will never produce 400W if it is poorly oriented. Balcony kits, often placed vertically (90°) or with approximate tilt, lose a huge amount of efficiency compared to an optimized roof installation (generally 30-35°).

The trap is confusing Peak Power (what the panel can output in a lab) and Real Production (useful energy).

On many kits, the inverter is deliberately undersized (to respect the injection limit on a simple socket). You buy a 420Wp panel, but the micro-inverter caps at 350VA. This is called clipping. It’s not serious in itself, but it’s a net loss in the middle of summer. For my 6kWp project, I wanted total coherence between the capacity of the DualSun panels and that of the IQ8Ms to milk every available photon.

3. Installation and Commissioning (October 2023)

Once the hardware was validated, time for action. The installation took place in late October 2023.

Installing 16 panels is not trivial. You have to manage the layout on the roof, the routing of DC cables under the tiles, and the run down to the electrical panel. The advantage of Enphase micro-inverters here is safety: you don’t bring high-voltage DC current (dangerous in case of electric arc) down into the house, but directly 230V AC current.

On the administrative side, do not underestimate the delays. Between the prior declaration at the town hall (DP), the grid connection request to Enedis, and the Consuel inspection (mandatory to validate electrical safety before injecting), it is a journey that requires patience. In my case, everything was wrapped up for effective commissioning at the end of 2023.

4. Production and Monitoring: The Truth of Numbers (2024-2025)

This is where the geek takes over. After more than two years of perspective, I can look up from theoretical estimates to give you the reality of the field.

Monitoring Tools: Enphase Enlighten

To manage it all, I use the Envoy S-Metered gateway. Note the “Metered.” Unlike the standard version which only measures production, this one uses measurement toroids (current clamps) placed on the house’s main supply.

Result: I see what I produce, but more importantly what I consume and what I import/export in real-time.

Without this visibility, self-consumption is done blindly.

Gross Production: 17.4 MWh in Two Years!

Here is the data extracted from my tracking for an installed power of 6 kWp:

YearTotal ProductionPerformance Ratio (kWh/kWp)
20248.9 MWh~1,483 kWh/kWp
20258.5 MWh~1,416 kWh/kWp

Data Analysis:

  1. Weather Variability: There is a production drop of about 4.5% between 2024 and 2025. This is normal. The sun is not an absolute constant from one year to another.
  2. Redoubtable Efficiency: With a ratio approaching 1,500 kWh produced per kWp installed in 2024, my installation performs extremely well (the national average is often between 1100 and 1300 depending on the region). The DualSun + Enphase combination works wonders, aided by near-perfect orientation/tilt (33% tilt for a near due south orientation) and correct panel ventilation (which lose efficiency when they heat up too much).

Self-Consumption: The Sinews of War

Producing is good. Consuming is better (financially).

  • Self-consumption rate 2024: 46%
  • Self-consumption rate 2025: 44%

Concretely, this means that I directly consume about 45% of my production. The rest (55%) comes from the grid.

Despite my efforts (delayed start of machines, water heater during the day), I stagnate below the 50% mark. Why? Because in summer, days are long and production explodes (sometimes 40 kWh/day), far beyond the house’s needs. Without a physical battery or an electric vehicle to charge on the weekend, it is difficult to go higher on a 6kWp installation. This is where selling the surplus becomes vital for profitability.

5. The Time for Assessment: Profitability and Real ROI

Let’s talk cash. We hear everything and anything about solar profitability. Here are my real figures, bill in hand, unfiltered.

The Final Cost of the Operation

For a turnkey 6 kWp installation (hardware + labor + procedures), the bill amounted to:

  • Initial Investment: €13,900 incl. VAT
  • Self-consumption Bonus (State): – €2,000
  • FINAL REAL COST: €11,900

Scenario 1: My Reality (2023 Contract)

With a self-consumption rate of about 45% (the remaining 55% coming from the grid) and a surplus feed-in tariff fixed at €0.13/kWh (the rate in force at the time of my request), here is my average annual yield (based on an average of 8.7 MWh/year):

  1. Bill Savings (Self-consumption):~3,915 kWh that I did not buy from EDF (base €0.25/kWh) = €978 in savings.
  2. Surplus Sale (Injection):~4,785 kWh sold to EDF OA (€0.13/kWh) = €622 in income.

Total Annual Gain: ~€1,600

Return on Investment (ROI): €11,900 / €1,600 = 7.4 years.

Verdict: Amortization in less than 7 and a half years for hardware guaranteed for 20 or 25 years is an unbeatable financial investment, far superior to any savings account.

Scenario 2: If I Had to Do It Again Today (The 4-Cent Trap)

This is where my article should serve as a warning. The rules of the game have changed. Recently, the surplus feed-in tariff dropped drastically to around €0.04/kWh (depending on the quarter). Let’s redo the calculation with this new parameter, keeping the same installation:

  1. Bill Savings: €978 (Unchanged).
  2. Surplus Sale (New Tariff):~4,785 kWh * €0.04 = €191 (instead of €622!).

Total Annual Gain: ~€1,169

New ROI: €11,900 / €1,169 = 10.2 years.

This drop in the feed-in tariff upsets the strategy.

  • In 2023 (my case): Selling surplus was a pillar of profitability. I could afford to inject almost 60% of my production without too much pain.
  • Today: Selling at 4 cents covers almost nothing. The absolute priority is no longer to produce a lot, but to consume everything. This highlights the interest in virtual or physical batteries, which were economically unviable two years ago but, with such a low buyback rate, are becoming an option to seriously study to avoid “wasting” 60% of one’s production.

6. Conclusion

After more than two years, do I regret my €11,900? Absolutely not.

Producing 17.4 MWh of green energy from my roof is a daily satisfaction. Seeing my Linky meter display “0 VA” of consumption while the oven and washing machine are running is a pleasure one never tires of.

Technically, the DualSun / Enphase couple is of exemplary stability: no breakdowns, precise monitoring, production on target.

However, if you start today, do not blindly copy my economic model. Do your calculations with the current feed-in tariff. If you cannot shift your consumption to the daytime, the ROI risks drifting away. Solar remains profitable, but it now requires being even smarter about its management.

Read More