Introducing DD-DNS

Service discovery is an age old problem, made ever so complicated by the copious layers of virtualisation and isolation that we use nowadays to run anything. Since humans are better at remembering names than numbers, DNS can be very effective at helping to solve this problem, and indeed a lot of projects already exist in this space. However, I have decided to create another one: DD-DNS or Docker-Dynamic DNS service, which can create and update A records at public DNS providers in real time based on docker labels. In this post I’ll explain the problem that I wanted it to solve and compare it to a few other solutions I have considered. The code, along with instructions on how to use the tool are available at https://github.com/wdullaer/dd-dns. »

Easily Extend a LAN to an Android Phone using Wireguard

VPNs are a tried and tested way to extend a private LAN to other devices, but they are hard to setup, harder to run and have a large impact on performance. Wireguard, a new VPN technology recently added to the Linux kernel, removes nearly all of these drawbacks. In this article we’ll go through how to setup a server and an Android client. »

Boot Live Disks from a Multiboot USB as an ISO

Normally when you want to boot from a USB stick you have to format it and ‘burn’ an image onto it. It is possible to make multiboot usb sticks that allow you to boot ISO image file directly. Not all live system images, like the Ubuntu desktop images, play nice with the method outlined in that post. Here is an alternative method that will allow you to boot images like Ubuntu desktop as an ISO from a multiboot stick. »

The New and Improved wdullaer.com

A bit over a year and a half ago I moved my blog to Github pages and Jekyll. The promise of no hassle/maintenance blogging that static website generators offer (combined with, let’s be honest, free hosting) was very luring. By and large this setup has delivered on its promise, but it was definitely not perfect. Recently the ever present desire to improve (and experiment) got the best of me and I started working on the backend of this blog again. This post tries to describe all the changes I’ve done, and why I’ve done them. »

Create a NAS with Redundancy Using Snapraid

Like a lot of techie people, I run a home server to centralize access to music, video’s, photos and other files. Because I have built my own server using a HP Proliant Microserver running Ubuntu, I need to do a bit more work myself in order to group my disks together in a redundant pool. This post will focus on how I’ve configured AUFS to expose my disks as a single volume and configured Snapraid to add redundancy and bitrot protection to the data. »

Pass Credentials to the awslogs Docker Logging Driver on Ubuntu

Last year docker added support for multiple logging drivers. This makes it very easy to integrate your docker containers with a centralized log management system in a transparent way. If you want to use the AWS Cloudwatch driver you will need to supply the docker daemon with access keys, which proved to be trickier than expected. Here’s how I managed to get it running. »

Multitouch Trackpad Gestures with Touchegg

Support for multitouch gestures on Linux has been steadily increasing in the past years. I recently bought a Logitech T650 touchpad and all the basics worked right of the box: moving the cursor, two finger click for right click, two finger swipes for scrolling through documents. Unfortunately it wasn’t immediately obvious how I could configure anything more (like pinching gestures, or 3 finger gestures). Here’s how you can unlock its full power. »

Firefox Desktop Reader Mode

The reader mode in the Android version of Firefox was released a few years ago with a lot of fanfare. In a recent update, the desktop version received the same functionality, but it doesn’t seem to be enabled by default on all installations. »

Author image Wouter Dullaert

BubbleUPnP Server with Systemd on Ubuntu Vivid

Starting with Ubuntu 15.04, Canonical replaced their own init system Upstart with the new Linux standard Systemd. Even though this is a big change on a technical level, it was entirely transparent for all packages in the official repositories. BubbleUPnP Server, a closed source third party application, was the only application I had any issues with. I’ll show you how you can make it work with systemd. »