Operating System - HP-UX
1832993 Members
3614 Online
110048 Solutions
New Discussion

Problem in set TERM=vt100

 

Problem in set TERM=vt100

Hi,

I am spacing one problem in hp-ux B.11.11 U 9000/800 server version. I couldn't able set a console at vt100 format. I had tried set TERMS=vt100. Please help me out.
7 REPLIES 7
James R. Ferguson
Acclaimed Contributor

Re: Problem in set TERM=vt100

Hi:

# export TERM=vt100

...you wrote TERMS with an "S". It is as I have shown.

Regards!

...JRF...
SKR_1
Trusted Contributor

Re: Problem in set TERM=vt100

export TERM=vt100

Thanks
SKR
Bill Hassell
Honored Contributor

Re: Problem in set TERM=vt100

Are you referring to the real comsole or just a telnet or ssh login? If this is for the console, we need to know what model computer you have. Newer servers have the terminal hardcoded into the GSP or MP code and changing depends on the model and also what terminal you are using. For telnet or ssh logins, setting the TERM variable manually will cause a number of problems.


Bill Hassell, sysadmin
Gokul Chandola
Trusted Contributor

Re: Problem in set TERM=vt100

Hi,
Shell Command
csh or tcsh setenv TERM vt100
sh TERM=vt100; export TERM
ksh, bash, or zsh export TERM=vt100

Regards,
Gokul Chandola
There is always some scope for improvment.
Gokul Chandola
Trusted Contributor

Re: Problem in set TERM=vt100

Hi,
Shell Command
************************************
csh or tcsh setenv TERM vt100
sh TERM=vt100; export TERM
ksh, bash, or zsh export TERM=vt100

Regards,
Gokul Chandola
There is always some scope for improvment.
Sandeep_Chaudhary
Trusted Contributor

Re: Problem in set TERM=vt100

export TERM=vt100

add this to ur .profile
Suraj K Sankari
Honored Contributor

Re: Problem in set TERM=vt100

Hi,

After setting the term export it like this
TERM=vt100
export $TERM

or

export TERM=vt100

Suraj