After much research, I've found a way to turn on the soft cursor in the TTY console.
From your home directory:
$this->bbcode_second_pass_code('', '
#infocmp >> ~/terminfo.txt
#sed -i.bak -e 's/?0c/?112c/g' -e 's/?8c/?48;0;64c/g' terminfo.txt
#tic terminfo.txt
#tput cnorm
')
related commands include
- tput cvvis (make cursor very visible)
- tput civis (make cursor invisible)
You'll need to issue #tput cnorm with every login, or create a way to issue the command at startup or login.
The commands above change the termcaps for the linux terminal to use a software cursor instead of a hardware cursor.
If you are interested, there are some clues to what the changes mean at this site:
http://linuxgazette.net/137/anonymous.html
Cursor colors can be changed, but I haven't found a way to change the cursor shape.