xterm-color: Unknown terminal type
I don't know what kind of terminal you are on - all I have is 'xterm-color'.
Depending on which shell your using, set the following...
csh shell
Code Snippet
- setenv TERM xterm
End of Code Snippet
bash
Code Snippet
- export TERM='xterm'
End of Code Snippet
xterm is an example of a terminal emulator. You can use whichever you would like, it's simply a program that emulates a video terminal within some display architecture. Programs gather information from the terminal your currently using (Set in TERM) to aide the display of the content/program.
Here is a good list of various terminals you can try: List of Terminals
2 comments:
I have tcsh so neither suggestion works for me.
Awesome, it worked for me.
I asked lot of people but again this blog helped me
Post a Comment