home *** CD-ROM | disk | FTP | other *** search
/ NetNews Usenet Archive 1993 #3 / NN_1993_3.iso / spool / comp / unix / cray / 348 < prev    next >
Encoding:
Text File  |  1993-01-21  |  1.5 KB  |  46 lines

  1. Newsgroups: comp.unix.cray
  2. Path: sparky!uunet!cs.utexas.edu!sdd.hp.com!srvr1.engin.umich.edu!uvaarpa!maxwell!skg2v
  3. From: skg2v@Virginia.EDU ("Sharad Gandhi")
  4. Subject: Re: Where do you put the home directories!
  5. Message-ID: <1993Jan21.191239.14872@Virginia.EDU>
  6. Organization: University of Virginia
  7. References: <1993Jan21.172943.19698@chpc.utexas.edu>
  8. Date: Thu, 21 Jan 1993 19:12:39 GMT
  9. Lines: 35
  10.  
  11. When I was working on PSC Cray Y/MP. I was able to come up with
  12. a different jobfile to run jobs on CRAY without telnet'ing and
  13. ftp'ing from your local machine. The primary requirement is
  14. that your local machine should support remote command such as
  15. rsh, rcp etc. If it does then do following:
  16.  
  17. 1. open a .rhosts file on your local machine and add the
  18. following line:
  19.  
  20. pscymp.psc.edu <your-user-id-on-cray>
  21.  
  22. 2. open a .rhosts file in your cray account with the following
  23. line:
  24.  
  25. <address of your local machine> <your user id on local machine>
  26.  
  27. 3. Tha main body of your job file will look like this (note:
  28. prepare your job file on your local machine, say it is a.nqs):
  29.  
  30. rcp <local-id>@<local-host>:<data-files> .
  31. rcp <local-id>@<local-host>:<program files> .
  32. f77 -o program.out <program.f>
  33. program.out<input>output
  34. rcp program.l <local-id>@<local-host>:<directory>
  35. rcp output <local-id>@<local-host>:<directory>
  36. /bin/rm *.*
  37.  
  38. 4. to run submit job on cray:
  39.  
  40. rcp a.nqs <cra-id>@pscymp.psc.edu:<directory> 
  41. rsh pscymp.psc.edu -l <cray-id> <job-submit-command> a.nqs
  42.  
  43. See if it works and help you in saving your time.
  44.  
  45. sharad
  46.