quote:
start x-win
start tera term
connect to server
try to run nedit
"can't open display"
If you are not actually logged in to the UNIX machine's terminal, and are connecting remotely, then you need to set the DISPLAY environment variable first. Run nedit like this:
DISPLAY=your_ip_addres:0 nedit
e.g.
DISPLAY=192.168.1.1:0 nedit
(you'll need to do this for any X Window program you run remotely... And of course the UNIX box has to be able to reach your home machine via TCP/IP, so if you have a firewall you'll need to set up port forwarding)
Dan