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. 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
  3. C++

    These posts will be various lessons and lessons learned as I start learning how to program in C++. My first experiences programming started in Windows batch files and then in high school I was introduced to Perl. While it could be argued that neither batch or Perl are "real programming …

    read more