home *** CD-ROM | disk | FTP | other *** search
/ NetNews Usenet Archive 1993 #3 / NN_1993_3.iso / spool / comp / lang / c / 20037 < prev    next >
Encoding:
Text File  |  1993-01-21  |  4.2 KB  |  168 lines

  1. Newsgroups: comp.lang.c
  2. Path: sparky!uunet!gatech!usenet.ins.cwru.edu!agate!dog.ee.lbl.gov!news!manta!herman
  3. From: herman@nosc.mil (John W. Herman)
  4. Subject: Re: Where is SUIT?
  5. Message-ID: <herman.727658539@phage>
  6. Sender: usenet@nosc.mil (Network News)
  7. Organization: Naval Ocean Systems Center, San Diego, CA
  8. References: <Jan21.170449.66425@yuma.ACNS.ColoState.EDU> <mavuduru.727643580@exa>
  9. Distribution: usa
  10. Date: Thu, 21 Jan 1993 23:22:19 GMT
  11. Lines: 155
  12.  
  13. In <Jan21.170449.66425@yuma.ACNS.ColoState.EDU> anderson@CS.ColoState.EDU (Chuck Anderson) writes:
  14.  
  15. >Please post the ftp procedure for retrieving the University of
  16. >Virginia's SUIT (simple user interface toolkit) package.  Thanks.
  17.  
  18. Here's the relevant information from the SUIT README file:
  19.  
  20. HOW TO GET THE SUIT DISTRIBUTION
  21. ========================================
  22. SUIT is available through anonymous ftp from
  23. uvacs.cs.virginia.edu (128.143.8.29). Each SUIT distribution 
  24. package comes with full source code and documentation, though
  25. as explained below, the source and docs are available separately 
  26. as well for those attempting to port SUIT to an architecture we do not
  27. yet support. To set a standard SUIT distribution package for your 
  28. machine: 
  29.  
  30.  
  31. 1.) On your system, make a directory that will hold the 
  32. distribution. For example, in your home directory type:
  33.  
  34.         mkdir suit
  35.  
  36. The process of installing the SUIT distribution causes SUIT to 
  37. create a new directory underneath the one you've created here.
  38.  
  39. 2. Change your current directory to this new location:
  40.  
  41.         cd suit
  42.  
  43. 3.) Type the following command:
  44.  
  45.         ftp 128.143.8.29
  46.  
  47.  You should see something that looks like:
  48.  
  49.         Connected to 128.143.8.29.
  50.         220 uvacs FTP server (SunOS 4.1) ready.
  51.         Name (128.143.8.29:CookieMonster):
  52.  
  53.     where "CookieMonster" is your login ID.
  54.  
  55.  
  56. 4.) At this prompt, type: 
  57.  
  58.         anonymous
  59.     
  60.     You should see something like this:
  61.     
  62.         331 Guest login ok, send ident as password.
  63.         Password:
  64.  
  65. 5.) Please type in your local login ID as a courtesy. This will not be
  66. echoed back to you, so don't panic.
  67.     You will see:
  68.  
  69.         230 Guest login ok, access restrictions apply.
  70.         ftp>
  71.  
  72. 6.) cd into the SUIT directory by typing:
  73.  
  74.         cd /pub/suit/distribution
  75.  
  76. 7.) cd into the directory named after the hardware platform
  77.     you intend to use:
  78.  
  79.     cd <machine_type>
  80.     where <machine_type> is one of:
  81.  
  82.         sparc         
  83.         sun3
  84.         sgi
  85.         rs6000
  86.     for example:
  87.         cd sparc
  88.             OR 
  89.         cd sun3 
  90.             ETC.
  91.  
  92. 8.) VERY IMPORTANT: set the ftp transfer to use binary mode
  93.     Type:
  94.         binary
  95.  
  96. 9.) transfer the archive
  97.     Type:
  98.         get <machine_type>.tar.Z
  99.  
  100.         for example:    
  101.             get sparc.tar.Z
  102.                 OR
  103.             get sun3.tar.Z
  104.                 ETC.
  105.  
  106.     This file is VERY large. Expect it to take
  107.     several minutes to come over.
  108.     
  109. 10.) leave ftp
  110.     Type:
  111.         quit
  112.  
  113. 11.) uncompress the archive
  114.     Type:
  115.     uncompress < <machine_type>.tar.Z | tar xfh -
  116.     
  117.     for example:
  118.         uncompress < sparc.tar.Z | tar xfh -
  119.  
  120. 12.) CONGRATULATIONS! You've got yourself the SUIT library and header
  121. files! You can now safely remove the <machine_name>.tar file if you so
  122. desire.
  123.  
  124. 13.) Follow the directions in the top level README file to prepare
  125. the SUIT distrbution for your site.
  126.  
  127.  
  128. GETTING SUIT SOURCE
  129. ===========================
  130.     Full source code comes with each distribution package of SUIT
  131.     (same source for all architectures). 
  132.  
  133.     IF YOU ONLY WANT THE SOURCE, you can ftp it from uvacs, as
  134.     described above
  135.  
  136.         ftp uvacs.cs.virginia.edu
  137.         (Be sure to use binary transfer)
  138.         
  139.     in the file called    
  140.  
  141.         /pub/suit/distribution/JustSource/src.tar.Z
  142.  
  143.  
  144.  
  145. GETTING THE SUIT REFERENCE MANUAL
  146. =========================================
  147.     Each standard distribution package of SUIT comes with a
  148.     complete reference manual which describes the SUIT library 
  149.     calls. In the standard distribution, the manual comes in
  150.     the form of a VERY long    postscript file that prints out 
  151.     from last page to first.
  152.     
  153.     If it is more convenient for you to print the manual out from
  154.     first page to last, or if you need just individual reference 
  155.     manual chapters, those are distributed as well in the file 
  156.  
  157.         /pub/suit/distribution/JustDocs/doc.tar.Z
  158.  
  159.     which can ftp from uvacs as explained above. These files are
  160.     called chap_01.ps, chap_02.ps, etc. The complete reference
  161.     manual is in the file chap_all.ps.
  162.  
  163.     Again, be sure to use binary mode when getting this file.
  164.     (type "binary" at the ftp prompt before typing "get")
  165.  
  166. ----
  167. Rama Mavuduru
  168.