Xref: utzoo comp.os.vms:30884 comp.sys.dec:4146 Path: utzoo!attcan!uunet!midway!ncar!husc6!bunny!krs0 From: krs0@GTE.COM (Rod Stephens) Newsgroups: comp.os.vms,comp.sys.dec Subject: Re: DECwindows: creating remote displays Message-ID: <9804@bunny.GTE.COM> Date: 28 Sep 90 11:57:21 GMT References: <4274@husc6.harvard.edu> Followup-To: comp.os.vms Organization: GTE Laboratories, Waltham MA Lines: 59 In article <4274@husc6.harvard.edu> joltes@husc9.harvard.edu (Richard Joltes) writes: > ... the standard method is to create a DECterm, set >host to the target node, and do > >$ set display/create/node=xxxxxx >$ > >which seems a pain. Has anyone worked up an easier way (i.e. local .exe or >comfile that will establish the session and start up the application)? > >Ultrix is trickier. I access this system using a Multinet TELNET session, and >the only method I've found in TFM uses UCX. Anyone done this successfully >using Multinet (or DECnet/Ultrix)? This may not be exactly what you need but maybe it will be useful to someone. To go from Ultrix to Ultrix (on TCP/IP) I have the following line in my .login: alias rterm "xhost +\!*;rsh \!* 'setenv DISPLAY `hostname`:0.0;dxterm & ' " If I'm logged on to radagast and I want to start a window on frodo I type: % rterm frodo which expands to: xhost +frodo;rsh frodo 'setenv DISPLAY radagast:0.0;dxterm & ' which does the trick. Of course my .rhosts file on frodo must have a line that says: radagast rod so the rsh command will work. Understanding what processes are started is a little tricky. The rsh command does not return even after the dxterm is started on the remote machine. I usually just control-C after I see the message indicating that the dxterm has started. You could also put the rterm command in the background (% rterm frodo &) and then this command will show up as stopped when you do a "jobs" command (thought the dxterm is just fine). Further experiments are left to the reader ;-) One last trick: you can give dxterm a command to execute when it starts as in: % dxterm -e my_application This should let you start lots of stuff automatically. +---------------------------------------------------------------+ | Rod Stephens | "Haven't I told you not to play | | GTE Laboratories, Inc | with my super-weapons? You might | | (617)466-4182 | devastate yourself!" | | krs0@gte.com | | +---------------------------------------------------------------+