2/14/12

Set stty erase for Korn Shell

Set your backspace key as the stty erase key for Korn Shell in Linux by adding the following to your $HOME/.profile:

if [ -t 0 ]
then
  stty erase ^h
fi

Or add it to /etc/profile if you want to set the backspace key for all logins.

Quick HTTP to HTTPS - Apache2

There are several methods for redirecting your Apache-based website visitors who might type your servers URL using the plain (non-secure) HT...