VMware's new licensing is killing homelabs... Time to move to Proxmox !
Proxmox is definitely a fascinating solution, especially when it comes to homelabs. But why stop at a simple standalone setup? Let’s dive right in and build a 3-node high-availability cluster, complete with both compute and storage!
Multilingual Text-to-Speech (TTS) with Realistic AI Voices Using Elevenlabs API
After my recent article on mass translating text to different languages with ChatGPT and OpenAI, it’s time for the next exciting step—making it talk! Let’s bring my creation to life and make it talk! As usual, let's kick things off with a process flow diagram:
Effortless mass text translation with PowerShell and ChatGPT (OpenAI API)
Recently, I faced the monumental task of translating a mountain of text files from English into French, German, Spanish, and Italian. The endless copy/paste routine was driving me bonkers, so I had a lightbulb moment: why not let OpenAI's API handle it ? The best part ? With their
Effortless Setup: Instantly deploy your entire Linux toolkit in one click
I'm use with the same fundamental stack to build Linux servers : Docker, Docker compose, Portainer and homepage. But, being a bit lazy, I dread the manual installation every time. So, I had a lightbulb moment— why not script the whole thing? So, as an old magician once said
Linux Toolkit and Handy Cheat Sheets
My memory is getting old I guess, so I need to jot down notes on various configurations to refer to from time to time. I manage my own database for all this code snippets, yaml files, init or configuration process. Below, I’ve shared some of my notes with you.
Handle pop-up notifications to users when a reboot is required (and ask for approval)
As an MSP, Acronis Cyber Protect Cloud can apply patch management to all devices of all your customers? that's great feature, but for now, the reboot isn't managed with the end-user consent. That's a bit annoying... 😶 Fortunately, we’ve got another ace up our
I need to send a mail without any mail client (and I'm not a spammer !)
From time to time, some of my scripts need to fire off an email with specific metrics. Since the need is coming from scripts running on Windows servers, I need a PowerShell snippet that crafts the email body from an HTML file and sends it through an external SMTP server
Oh boy ! I have 500 Linux VM to protect !
Chill out and kick back. Grab your favorite geek mug, fill it with your top-notch black coffee, and let the code command ! The plan : 1. Use Ansible as the automation tool / Acronis as protection tool 2. Create inventory files for the VMs 3. Create playbook (YAML config file) to manage
Create big fake uncompressible files (and this is for a good reason)
Sometimes, for backup performance tests or disaster recovery drills, I need a server that can take a real beating. Not your usual 40GB VM—nope, I’m talking a heavyweight 500GB to 1TB beast. But here’s the kicker: my lab isn’t at home... So, to load a VM,
Discovered a Hidden Gem for LXC Containers
I recently spun up a Proxmox cluster just to mess around with it. While hunting for some LXC container examples, I stumbled upon this absolute gem below : https://helper-scripts.com/scripts Holy moly, what a find ! This is pure gold—a breeze to spin up a container with just a
Efficiently backup customer devices even with low Internet bandwidth
I have a rocking a beautiful 10GB FTTH fiber connection—lucky me! But not everyone’s so fortunate. Some folks are stuck with old-school ADSL and a snail-paced 1MB upload speed. Luckily, technology saves the day ! With deduplication, compression, and always incremental backup strategies, we only need to send a
Get time back, update all your Linux distribution in one command line
Easy peasy, let's use Ansible to make the work for us ! To install Ansible, take a peek at our earlier post right here. Create your inventory host file with the list of your Linux : [linux] 10.0.4.26 10.0.4.28 10.0.4.6 10.