10/15 When I ssh into soda from my FreeBSD box and try to edit a file with
pico, I can't use my backspace key in a normal way (deletes
characters to the left), but rather it deletes characters to the
right (like the "delete" key on PC's). How can I fix this? thanks.
\_ try one of the following, which sometimes fixes everything:
set term=vt100
set term=vt220
set term=cons25
\_ thanks. vt100 fixes is. is there a way for it to do
this automatically everytime I log in, so I don't have
to type it each time?
\_ Put that command in the file called .login in your
home directory -- it's a list of commands that get
run every time you log in.
\_ interesting that someone running FreeBSD at home
wouldn't know such a trivial thing
\_ Gotta start somewhere. It's a better place than
Linux where the only consistency is the general
inconsistency.
\_ Bourne/Korn/Bash/Zsh equiv is
TERM=vt100 ; export TERM
Replace vt100 with your terminal type, most likely cons25
or xterm.
\_ don't use pico
\_ At the shell prompt, type ^v <backspace>. What do you see?
\_ I did that and it gives back ^H |