Other articles


  1. Install RDP on Debian 10 (Buster)

    Start off with a freshly updated system and install the requirements:

    apt update
    apt upgrade
    apt install -y xrdp xfce4 xfce4-terminal gnome-icon-theme-full tango-icon-theme
    

    Make xfce4 our default xsession:

    echo xfce4-session >~/.xsession
    

    Make xfce4 the default for by editting the following file: :::bash nano /etc/xrdp/startwm.sh

    Replace what is …

    read more
  2. GPG random-entropy

    This is was the workaround that I had to do to get gpg keys to be generated on a kvm debian machine. After doing it several times and having to hunt to figure out how I got it working the first time I decided I should write it down.....

    sudo …
    read more
  3. Road Warrior VPN

    This is a dead simple way to get an OpenVPN server up and going with individual client certificates.

    wget https://git.io/vpn -O openvpn-install.sh && bash openvpn-install.sh
    
    #!/bin/bash
    #
    # https://github.com/Nyr/openvpn-install
    #
    # Copyright (c) 2013 Nyr. Released under the MIT License.
    
    
    # Detect Debian users running the …
    read more