Link to home
Start Free TrialLog in
Avatar of atwork2003
atwork2003

asked on

Terminal Emulator to access unix in windows.

Does any one has a list of terminal emulators that I can use in winxp. Thank you
Avatar of Kent Olsen
Kent Olsen
Flag of United States of America image

Hi atwork2003,

Are you going to use X, ssh, or telnet to access the box?

Windows has telnet, putty is a pretty good freeware SSH client, and I don't know of any free X terminals for WinXP.


Good Luck!
Kent
Avatar of atwork2003
atwork2003

ASKER

putty is nice but the problem is, if I have more then one sessions open, I can not change the session layout to differentiate between each. I remember there was a progam that allowed me to do that but I dont have the name of the program. Do you know of any web sites where I can find the list. Thank you So much for your helo
Not quite the answer you were looking for, but if you execute this;

printf "\033]2;`hostname`\007"

The hostname of the machine will be displayed in the title bar of the emulator.  Works fine with putty.

The only concern is that it is not automatic so if you telnet or ssh to another host while in the putty window, it won't change to the new host unless you run the command again.

I put it in my .cshrc on most of the hosts that I use so that I can easily keep track of where I am.



ASKER CERTIFIED SOLUTION
Avatar of Tintin
Tintin

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
atwork2003, I prefer to use hostname in a shell prompt to diffirentiate between sessions from any terminal client.
Just setup your profile in Unix something like:

PS1="[\u@\h \W]\$ "
Thank you for all the help. I am actually looking for some other option. But I appreciate all the responses. Thank you:-)
Could you please explain what "other option" you are looking for?