August 24, 2026
I have a rack of servers in my garage, so I would rather not pay a host for CPU and disk I already own. A WireGuard tunnel and one small VPS put a site on those machines at a public hostname.
Read More...
June 1, 2020
Install irssi and oidentd: # apt install oidentd irssi irssi-scripts build-essential See that oidentd is now running: # ps aux | grep oidentd
Read More...
May 31, 2020
This is how I install xfce4 on a new Debian.
Read More...
January 1, 2017
Here's a how-to for building a recent Linux kernel on your Debian GNU/Linux box: You will need to do all this as root. It's serious business building new Linux kernels :) su - The dash after the su...
Read More...
January 26, 2010
If you're using a flavor of *nix that has an rc.local file, and then you start using Debian GNU/Linux, you might be wondering where your rc.local file is. Quite simply, it's not there. Here's how to...
Read More...
January 14, 2006
Here's a command to install lots of games on your Debian box: yes | \ for x in `apt-cache search game \ | sort \ | awk 'BEGIN { FS = " - " } { print $1 }'`; do \ apt-get install $x; \ done
Read More...