Creating Secure GPG Keys

In this post I'll share the steps to generate keys for gpg in a secure way. The goal is to have an "air-gapped" primary key, complemented by a set of private keys for daily usage. This post is based on...

Read More

Clean up Vagrant SMB shares

Currently Vagrant does not remove SMB shares, when destroying a VM. But there is of course an elegant way to clean up left over shares with Powershell :

Get-SmbShare | Where-Object -Property Name -Match  '.*[^\$]$' | Remove-SmbShare

Creating a Vagrant Base Box for HyperV

After upgrading my laptop to Windows 8.1 I realized that one cannot easily run VirtualBox and HyperV in parallel. Unfortunately I was not able to find a working CentOs box for HyperV. This post shows how to create one from...

Read More