Author Archives: Gabriel

About Gabriel

I am the sole proprietor of this site. Caveat emptor!

Migration to Debian 10 complete

The servers that host this website have been successfully migrated from Debian 9 to a fresh installation of Debian 10. As part of this migration quay.net now resolves to 99.79.1.85 and is no longer available on the old server, hal9000.

This upgrade means that the website now supports TLSv1.3 and a number of other improvements. If you come across any missing content or bugs, please let me know.

Disable terminal bell in WSL

Windows Subsystem for Linux is pretty nifty, but Windows has a very rudimentary terminal interface compared to most modern Unix implementations; though I do have high hopes for the new Windows Terminal project. One particularly annoying issue is that there is no way to directly disable sound, this can be a particularly annoying issue when using tab completion or backspace.

The easiest solution to this lack of functionality is to disable the bell in the Linux shell by modifying the readline(3) configuration in /etc/inputrc or ~/.inputrc.

# do not bell on tab-completion
set bell-style none