Read the rest of the article for the how-to...
To do this, grab the files vt100-color.txt and termcap-vt100-color and download them to your home directory. Now, fire up a terminal, and run the following commands (all commands are given in csh syntax since, lamentably, it is the default shell). Make sure you aren't nuking any files you already have there before proceeding:
% mv ~/termcap-vt100-color ~/.termcap[Note: In order to run the 'tic' command, you'll need to have 'ncurses' installed and functional. The easiest way to do this is through fink, if you have it installed. Either 'sudo apt-get install ncurses' for the pre-compiled version or 'sudo fink install ncurses' to download and install from source. If you don't have fink installed, you're on your own!]
% mkdir ~/.terminfo
% setenv TERMINFO "$HOME/.terminfo"
% tic vt100-color.txt
If everything went right, the command
% ls .terminfo/vshould show a file called vt100-color. The only thing left to do is edit ~/.cshrc and add a line:
setenv TERM vt100-colorYou will most likely need to reproduce the above steps (all except for editing .cshrc) for any machine you wish to log into (via, e.g., ssh) and have color capabilities on.
Hope this helps some people! I'll watch the forums if people have feedback/questions.
[Editor's note: I installed this on my machine, and it worked as described.]

