home *** CD-ROM | disk | FTP | other *** search
- Newsgroups: comp.unix.cray
- Path: sparky!uunet!cs.utexas.edu!sdd.hp.com!srvr1.engin.umich.edu!uvaarpa!maxwell!skg2v
- From: skg2v@Virginia.EDU ("Sharad Gandhi")
- Subject: Re: Where do you put the home directories!
- Message-ID: <1993Jan21.191239.14872@Virginia.EDU>
- Organization: University of Virginia
- References: <1993Jan21.172943.19698@chpc.utexas.edu>
- Date: Thu, 21 Jan 1993 19:12:39 GMT
- Lines: 35
-
- When I was working on PSC Cray Y/MP. I was able to come up with
- a different jobfile to run jobs on CRAY without telnet'ing and
- ftp'ing from your local machine. The primary requirement is
- that your local machine should support remote command such as
- rsh, rcp etc. If it does then do following:
-
- 1. open a .rhosts file on your local machine and add the
- following line:
-
- pscymp.psc.edu <your-user-id-on-cray>
-
- 2. open a .rhosts file in your cray account with the following
- line:
-
- <address of your local machine> <your user id on local machine>
-
- 3. Tha main body of your job file will look like this (note:
- prepare your job file on your local machine, say it is a.nqs):
-
- rcp <local-id>@<local-host>:<data-files> .
- rcp <local-id>@<local-host>:<program files> .
- f77 -o program.out <program.f>
- program.out<input>output
- rcp program.l <local-id>@<local-host>:<directory>
- rcp output <local-id>@<local-host>:<directory>
- /bin/rm *.*
-
- 4. to run submit job on cray:
-
- rcp a.nqs <cra-id>@pscymp.psc.edu:<directory>
- rsh pscymp.psc.edu -l <cray-id> <job-submit-command> a.nqs
-
- See if it works and help you in saving your time.
-
- sharad
-