home *** CD-ROM | disk | FTP | other *** search
/ A Beginner's Guide to the Internet / INTERNET.ISO / text / guides / help / archftp.hlb next >
Encoding:
Text File  |  1994-07-15  |  4.8 KB  |  92 lines

  1. Archie - The Internet File Locator
  2.  
  3.     Archie is a tool used to locate files on the Internet.  Unlike
  4. Exec-PC, where all the files are located in one place, files on the
  5. Internet are located on numerous machines scattered around the world.
  6. This makes it difficult to locate the file you are looking for.
  7. Fortunately, the operators of many of the systems that archive files
  8. have agreed to help maintain lists of what they have on their systems.
  9. There are a little over a dozen archie servers that collect the lists
  10. of files from all the sites.  On this system, we have a program that
  11. automatically makes the connection to an archie server and performs
  12. the query for you.
  13.     There are several different type of searches that can be
  14. performed on archie.  Two of the most common types of searches are
  15. already set up on the menu.  All you need to do is type in what you
  16. want to search for.  For the other types of searches, select the first
  17. option to run archie, and specify which type of search you want as
  18. described below.  Keep in mind that the file lists on archie do NOT
  19. have file descriptions attached to them.  What you are entering is a
  20. string to search for within file names themselves.  If you want a
  21. software package that performs a particular function, but you don't
  22. know the actual name of a package, your best bet is to ask someone who
  23. is more familiar with software of that type, or check out a newsgroup
  24. that deals with that subject.
  25.     The four main types of searches are selected by placing a
  26. letter with a dash in front of it at the beginning of the command you
  27. enter after the menu disappears.  The "s" search, which is probably
  28. used more than any other, performs a case insensitive search for the
  29. string you specify anywhere within a file name.  Thus, if the string
  30. you entered was "jog", archie would match "jogging.txt" and
  31. "letsjog.zip", as an example.  The "e" search will match files only if
  32. their name matches exactly (case sensitive) what you entered.  This
  33. would be a good option to choose if you know the file you are looking
  34. for, but just don't know where to find it.  The "c" search is exactly
  35. the same as the "s" search, except that the search is case sensitive.
  36. And, lastly, the "r" search allows you to give a "regular expression"
  37. as a search string.  Regular expressions are strings made up of
  38. pattern matching constructs.  To find out more about regular
  39. expressions, and how to set up searches with them, check out the
  40. manual page for the "grep" commands by typing "man grep" at the
  41. command line.
  42.     If you have any trouble with archie that you cannot figure out
  43. by reading the help files, please feel free to send a mail message to
  44. help on this system.
  45.  
  46. Retreiving files with the File Transfer Protocol
  47.  
  48.     More than half of the bytes that traverse the internet do so
  49. through FTP.  FTP is roughly analogous to the files section on a BBS.
  50. In FTP, however, all the files are not in one place.  They're on
  51. thousands of computers world-wide.  Perhaps you've heard about a
  52. particular FTP site in a newsgroup, or from a friend, or perhaps you
  53. used the archie tool to look for a specific file, and were given a
  54. list of ftp sites where you could find it.
  55.  
  56.     When you select ftp, enter the site name (example:
  57. "wuarchive.wustl.edu", which is one of the biggest sites in the world).
  58. You'll then be on the remote system as an FTP user.  FTP sites work
  59. on the principle of a directory structure, much like a DOS drive.
  60. Files are typically kept in the "pub" directory, and subdirectories
  61. thereof.  
  62.  
  63. Common ftp commands:
  64.  
  65. ls    - List files in the current directory
  66. cd    - Change directory (eg: cd pub)
  67. mget  - get multiple files (eg: mget foo1.zip foo2.zip foo3.zip)
  68. page  - look at a file, one screen at a time (eg: page README).
  69. bye   - close the ftp connection.
  70.  
  71.     Files that you transfer are placed in your home directory here
  72. on the Exec-PC Internet Gateway.  You can then download them with the
  73. File Transfers option on the main menu.  Don't forget to remove them
  74. from your directory afterwards, as you have only 2 megabytes of space.
  75.  
  76.     Other things to remember are that filenames are case sensitive
  77. (this applies to just about everything on the Internet and in Unix).
  78. Also, if you restrict your ftp access to off hours, you're much more
  79. likely to connect to otherwise busy sites, and transfers will be an
  80. order of magnitude faster.
  81.  
  82.     The FTP software here normally logs you into the remote system
  83. as an anonymous user automatically.  However, you may need to do this
  84. yourself at some point.  Note: if you run FTP from the command line,
  85. you can use "ncftp", which logs you in automatically.  The normal
  86. "ftp" program doesn't log you in automatically.  To log in
  87. anonymously, at the login prompt enter either "ftp" or "anonymous",
  88. then at the password, you can enter your login name with a '@'
  89. appended to the end, which will send your full Internet address to the
  90. remote system (which most ftp sites require).
  91.  
  92.