home *** CD-ROM | disk | FTP | other *** search
/ Source Code 1992 March / Source_Code_CD-ROM_Walnut_Creek_March_1992.iso / unix_c / usenet / uquestns.txt < prev    next >
Text File  |  1990-10-30  |  24KB  |  497 lines

  1. From sparkyfs!hercules!apple!julius.cs.uiuc.edu!wuarchive!zaphod.mps.ohio-state.edu!samsung!xylogics!bu.edu!purdue!spaf Fri Oct  5 08:41:56 PDT 1990
  2.  
  3. Original-from: jerry@eagle.UUCP (Jerry Schwarz)
  4. [Most recent change: 4  Oct 1990 by spaf@cs.purdue.edu (Gene Spafford)]
  5.  
  6.         Frequently Submitted Items
  7.  
  8. This document discusses some items that occur repeatedly on USENET.
  9. They frequently are submitted by new users, and result in many
  10. followups, sometimes swamping groups for weeks. The purpose of this
  11. note is to head off these annoying events by answering some questions
  12. and warning about the inevitable consequence of asking others.  If you
  13. don't like these answers let spaf@purdue.edu know.
  14.  
  15. Note that some newsgroups have their own special "Frequent Questions &
  16. Answers" posting.  You should read a group for a while before posting
  17. any questions, because the answers may already be present.
  18. Comp.unix.questions and comp.unix.internals are examples -- Steve Hayman
  19. regularly posts an article that answers common questions, including
  20. some of the ones asked here.
  21.  
  22.  
  23.  1.  What does UNIX stand for?
  24.  
  25.      It is not an acronym, but is a pun on "Multics".  Multics is a
  26.      large operating system that was being developed shortly before
  27.      UNIX was created.
  28.  
  29.  2.  What is the derivation of "foo" as a filler word?
  30.  
  31.      The favorite story is that it comes from "fubar" which is an
  32.      acronym for "fouled up beyond all recognition", which is supposed
  33.      to be a military term.  (Various forms of this exist, "fouled"
  34.      usually being replaced by a stronger word.) "Foo" and "Bar" have
  35.      the same derivation.
  36.  
  37.  3.  Is a machine at "foo" on the net?
  38.  
  39.      These questions belong in news.config (if anywhere), but in fact
  40.      your best bet is usually to phone somebody at "foo" to find out.
  41.      If you don't know anybody at "foo" you can always try calling and
  42.      asking for the "comp center."  Also, see the newsgroup
  43.      comp.mail.maps where maps of USENET and the uucp network are posted
  44.      regularly.
  45.  
  46.  4.  What does "rc" at the end of files like .newsrc mean?
  47.  
  48.      It is related to the phrase "run commands." It is used for any
  49.      file that contains startup information for a command.  The use of
  50.      "rc" in startup files derives from the /etc/rc command file used
  51.      to start multi-user UNIX.
  52.  
  53.  5.  What does :-) mean?
  54.  
  55.       This is the net convention for a "smiley face".  It means that
  56.       something is being said in jest.  If it doesn't look like a smiley
  57.       face to you, flop your head over to the left and look again.
  58.  
  59.  6.  How do I decrypt jokes in rec.humor?
  60.  
  61.      The standard cypher used in rec.humor is called "rot13."  Each
  62.      letter is replaced by the letter 13 farther along in the alphabet
  63.      (cycling around at the end).  Most systems have a built-in
  64.      command to decrypt such articles; readnews and nn have the "D"
  65.      command, rn has the "X" or "^X" commands, notes has "%" or "R",
  66.      and VMS news has the read/rot13 command.  If your system doesn't
  67.      have a program to encrypt and decrypt these, you can quickly
  68.      create a shell script using "tr":
  69.     tr A-Za-z N-ZA-Mn-za-m
  70.      On some versions of UNIX, the "tr" command should be written as:
  71.     tr "[a-m][n-z][A-M][N-Z]" "[n-z][a-m][N-Z][A-M]"
  72.  
  73.  7.  misc.misc or misc.wanted: Is John Doe out there anywhere?
  74.  
  75.      I suspect that these items are people looking for Freshman room-
  76.      mates that they haven't seen in ten years.  If you have some idea
  77.      where the person is you are usually better off calling the
  78.      organization.  For example, if you call any Bell Labs location and
  79.      request John Doe's number they can give it to you even if he works
  80.      at a different location.  If you must try the net, use newsgroup
  81.      soc.net-people *NOT* misc.misc or misc.wanted.
  82.  
  83.  8.  sci.math: Proofs that 1=0.
  84.  
  85.      Almost everyone has seen one or more of these in high school.
  86.      They are almost always based on either division by 0 or taking the
  87.      square root of a negative number.
  88.  
  89.  9.  rec.games.*: Where can I get the source for empire or rogue?
  90.  
  91.      You can't get the source of rogue.  The authors of the game, as is
  92.      their right, have chosen not to make the sources available.
  93.      However, several rogue-like games have been posted to the
  94.      comp.sources.games group and they are available in the archives.
  95.  
  96.      You can obtain the source to a version of empire if you provide
  97.      a tape and SASE *plus* a photocopy of your UNIX source license.
  98.      To obtain further info, contact mcnc!rti-sel!polyof!john.
  99.      You can also call John at +1 516 454-5191 (9am-9pm EST only).
  100.  
  101.      Sites with Internet access can ftp several versions of empire
  102.      from site g.ms.uky.edu
  103.  
  104.      Also, please note that the wizards' passwords in games like these
  105.      are usually system-dependent and it does no good to ask the
  106.      net-at-large what they are.
  107.  
  108. 10.  comp.unix.questions: How do I remove files with non-ascii
  109.      characters in their names?
  110.  
  111.      You can try to find a pattern that uniquely identifies the file.
  112.      This sometimes fails because a peculiarity of some shells is that
  113.      they strip off the highorder bit of characters in command lines.
  114.      Next, you can try an rm -i, or rm -r. Finally, you can mess around
  115.      with i-node numbers and "find".
  116.  
  117.      Some Emacs editors allow you to directly edit a directory, and
  118.      this provides yet another way to remove a file with a funny name
  119.      (assuming you have Emacs and figure out how to use it!).
  120.  
  121.      To remove a file named "-" from your directory, simply do:
  122.     rm ./-
  123.  
  124. 11.  comp.unix.internals: There is a bug in the way UNIX handles
  125.      protection for programs that run suid, or any other report of
  126.      bugs with standard software.
  127.  
  128.      There are indeed problems with the treatment of protection in
  129.      setuid programs.  When this is brought up, suggestions for changes
  130.      range from implementing a full capability list arrangement to new
  131.      kernel calls for allowing more control over when the effective id
  132.      is used and when the real id is used to control accesses.  Sooner
  133.      or later you can expect this to be improved.  For now you just
  134.      have to live with it.
  135.  
  136.      Always discuss suspected bugs or problems with your site software
  137.      experts before you post to the net.  It is likely that the bugs
  138.      have already been reported.  They might also be local changes and
  139.      not something you need to describe to the whole Usenet.
  140.  
  141. 12.  Volatile topics, e.g., soc.women: What do you think about abortion?
  142.  
  143.      Although abortion might appear to be an appropriate topic for
  144.      soc.women, more heat than light is generated when it is brought
  145.      up.  All abortion-related discussion should take place in the
  146.      newsgroup talk.abortion.  If your site administrators have chosen
  147.      not to receive this group, you should respect this and not post
  148.      articles about abortion at all.
  149.  
  150.      This principle applies to other topics: religious upbringing of
  151.      children should be restricted to talk.religion.misc and kept out
  152.      of misc.kids.  Similarly, rape discussions should be kept to
  153.      talk.rape and not in soc.singles, alt.sex and/or soc.women, and
  154.      Zionism discussions should be kept to talk.politics.mideast and
  155.      not in soc.culture.jewish.  USENET newsgroups are named for
  156.      mostly historical reasons, and are not intended to be fully
  157.      general discussion groups for everything about the named topic.
  158.      Please accept this and post articles in their appropriate forums.
  159.  
  160. 13.  soc.singles: What do MOTOS, MOTSS, and MOTAS  stand for?
  161.      What does LJBF mean?
  162.  
  163.      Member of the opposite sex, member of the same sex, and member of
  164.      the appropriate sex, respectively.  SO stands for "significant other".
  165.  
  166.      LJBF means "Let's just be friends."  This phrase is often heard
  167.      when you least want it.
  168.  
  169. 14.  soc.singles and elsewhere:  What does HASA stand for?
  170.  
  171.      The acronym HASA originated with the Heathen and Atheistic SCUM
  172.      Alliance; the Hedonistic Asti-Spumante Alliance, Heroes Against
  173.      Spaghetti Altering, the Society for Creative Atheism (SCATHE),
  174.      SASA, SALSA, PASTA, and many others too numerous to mention all
  175.      followed.  HASA started in (what is now) talk.religion.misc and
  176.      also turns up in soc.singles, talk.bizarre, et al. because members
  177.      post there too.
  178.  
  179. 15.  sci.space.shuttle: Shouldn't this group be merged with sci.space?
  180.  
  181.      No.  sci.space.shuttle is for timely news bulletins.  sci.space is for
  182.      discussions.
  183.  
  184. 16.  How do I use the "Distribution" feature?
  185.  
  186.      When postnews prompts you for a distribution, it's asking how
  187.      widely distributed you want your article.  The set of possible
  188.      replies is different, depending on where you are, but at Bell Labs
  189.      in Murray Hill, New Jersey, possibilities include (for example):
  190.     local    local to this machine
  191.     mh    Bell Labs, Murray Hill Branch
  192.     nj    all sites in New Jersey
  193.     btl    All Bell Labs machines
  194.     att    All AT&T machines
  195.     usa    Everywhere in the USA
  196.     na    Everywhere in North America
  197.     world    Everywhere on USENET in the world 
  198.  
  199.      If you hit return, you'll get the default, which is usually
  200.      "world.".  This default is often not appropriate --
  201.      PLEASE take a moment to think about how far away people are likely
  202.      to be interested in what you have to say.  Used car ads, housing
  203.      wanted ads, and things for sale other than specialized equipment
  204.      like computers certainly shouldn't be distributed to Europe and
  205.      Korea, or even to the next state.
  206.  
  207.      It is generally not possible to post an article to a distribution
  208.      that your own machine does not receive.  For instance, if you
  209.      live in Indiana, you can't post an article for distribution only
  210.      in New Jersey or Germany unless your site happens to exchange
  211.      those particular distributions with another site.  Try mailing
  212.      the article to someone in the appropriate area and asking them to
  213.      post it for you.
  214.  
  215. 17.  Why do some people put funny lines ("bug killers") at the beginning
  216.      of their articles?
  217.  
  218.      Some earlier versions of news had a bug which would drop the first
  219.      512 or 1024 bytes of text of certain articles.  The bug was
  220.      triggered whenever the article started with whitespace (a blank or
  221.      a tab).  A fix many people adopted was to begin their articles
  222.      with a line containing a character other than white space.  This
  223.      gradually evolved into the habit of including amusing first
  224.      lines.
  225.  
  226.      The original bug has since been fixed in newer version of news,
  227.      and sites running older versions of news have applied a patch to
  228.      prevent articles from losing text.  The "bug-killer" lines are
  229.      therefore probably no longer needed, but they linger on.
  230.  
  231. 18.  What is the address or phone number of the "foo" company?
  232.  
  233.      Try the white and yellow pages of your phone directory, first; a
  234.      sales representative will surely know, and if you're a potential
  235.      customer they will be who you're looking for.  Phone books for
  236.      other cities are usually available in libraries of any size.
  237.      Whoever buys or recommends things for your company will probably
  238.      have some buyer's guides or national company directories. Call or
  239.      visit the reference desk of your library; they have several
  240.      company and organization directories and many will answer
  241.      questions like this over the phone.  Remember if you only know
  242.      the city where the company is, you can telephone to find out
  243.      their full address or a dealer.  Calls to 1-800-555-1212 will
  244.      reveal if the company has an "800" number you can call for
  245.      information.  The network is NOT a free resource, although it may
  246.      look like that to some people.  It is far better to spend a few
  247.      minutes of your own time researching an answer rather than
  248.      broadcast your laziness and/or ineptitude to the net.
  249.  
  250. 19.  What is the origin of the name "grep"?
  251.  
  252.      The exact origin of the name is shrouded in the mists of
  253.      prehistory, but one explanation is often given:  The command
  254.      g/re/p in the original UNIX text editor "ed" was used so often it
  255.      was packaged up into a command that was obviously named "grep."
  256.  
  257.      According to Kernighan/Plauger _Software Tools in Pascal_, it
  258.      stands for "Globally look for Regular Expressions and Print."
  259.      The phrase "Generalized Regular Expression Parser" has also been
  260.      offered as an origin of the acronym.
  261.  
  262. 20.  How do I get from BITNET to UUCP, Internet to BITNET, JANET etc etc.?
  263.  
  264.      See the article "Notable Computer Networks" in Volume 29, #10
  265.      (October 1986) of the "Communications of the ACM" (CACM).  The
  266.      table on page 940 should provide the syntax needed.  The
  267.      appropriate gateways should be derivable from the postings in
  268.      comp.mail.maps.
  269.  
  270. 21.  Didn't some state once pass a law setting pi equal to 3 ?
  271.  
  272.      Indiana House Bill #246 was introduced on 18 January 1897, and
  273.      referred to the Committee on Canals "midst general cheerfulness."
  274.      The text states, "the ratio of the diameter and circumference is
  275.      as five-fourths to four", which makes pi 3.2 (not 3), but there
  276.      are internal contradictions in the bill as well as contradictions
  277.      with reality.  The author was a mathematical crank.  The bill was
  278.      passed by the state House on 5 February, but indefinitely tabled
  279.      by the state Senate, in part thanks to the fortuitous presence
  280.      on other business of a Purdue professor of mathematics.
  281.  
  282.      For details, including an annotated text of the bill, read the
  283.      article by D. Singmaster in "The Mathematical Intelligencer" v7
  284.      #2, pp 69-72.
  285.  
  286. 22.  Where can I get the necessary software to get a "smart"
  287.      mail system running on my machine that will take advantage
  288.      of the postings in comp.mail.maps?  (E.g., pathalias, smail, etc.)
  289.  
  290.      There are a couple of packages available through the supporters of
  291.      the comp.sources.unix archives.  If sites next to you don't have
  292.      what you want, contact your nearest comp.sources.unix archive, or
  293.      the moderator.  Information on archive sites, and indices of
  294.      comp.sources.unix back issues are posted regularly in
  295.      comp.sources.unix and comp.sources.d.
  296.  
  297. 23.  What is "food for the NSA line-eater"?
  298.  
  299.      This refers to the alleged scanning of all USENET traffic by the
  300.      National Security Agency (and possibly other intelligence
  301.      organizations) for interesting keywords.  The "food" is believed
  302.      to contain some of those keywords in the fond hope of overloading
  303.      NSA's poor computers.  A little thought should convince anyone
  304.      that this is unlikely to occur.  Other posters have taken up this
  305.      practice, either as an ambiguous form of political statement, or
  306.      as an attempt at humor.  The bottom line is that excessive
  307.      signatures in any form are discouraged, the joke has worn stale
  308.      amongst long-time net readers, and there are specific newsgroups
  309.      for the discussion of politics.
  310.  
  311. 24.  Does anyone know the {pinouts, schematics, switch settings,
  312.      what does jumper J3 do} for widget X?
  313.  
  314.      These postings are almost always inappropriate unless the
  315.      manufacturer has gone out of business or no longer supports the
  316.      device.  If neither of these is the case, you're likely to get a
  317.      better and faster response by simply telephoning the
  318.      manufacturer.
  319.  
  320. 25.  What is "anonymous ftp"?
  321.  
  322.      "FTP" stands for File Transfer Protocol; on many systems, it's
  323.      also the name of a user-level program that implements that
  324.      protocol.  This program allows a user to transfer files to and
  325.      from a remote network site, provided that network site is
  326.      reachable via the Internet or a similar facility.  (Ftp is
  327.      also usable on many local-area networks.)
  328.  
  329.      "Anonymous FTP" indicates that a user may log into the remote
  330.      system as user "anonymous" with an arbitrary password.  A common
  331.      convention is that some sort of identification is supplied as the
  332.      password, e.g. "mumble@foo".  This is sometimes useful to those
  333.      sites that track ftp usage.  Also note that most sites restrict
  334.      when transfers can be made, or at least suggest that large
  335.      transfers be made only during non-peak hours.
  336.  
  337. 26.  What is UUNET?
  338.  
  339.      UUNET is a non-profit communications service designed to provide
  340.      access to USENET news, mail, and various source archives at low
  341.      cost by obtaining volume discounts.  Charges are calculated to
  342.      recover costs.
  343.  
  344.      For more information send your US mail address to
  345.      info@uunet.uu.net (uunet!info).
  346.  
  347. 27.  Isn't the posting mechanism broken?  When I post an article to both
  348.      a moderated group and unmoderated groups, it gets mailed to the
  349.      moderator and not posted to the unmoderated groups.
  350.  
  351.      This is a question that is debated every few months.  The answer
  352.      is "No, it was designed to work that way."  The software is
  353.      designed so that the moderator can crosspost the article so it
  354.      appears in the regular groups as well as the moderated group, if
  355.      appropriate.  If the article were to be posted immediately to the
  356.      unmoderated groups, the moderated group name would have to be
  357.      deleted from the header and you would lose the crossposting.
  358.  
  359.      Whether or not this is correct behavior is a matter of opinion.
  360.      If you want your article to go out immediately to the unmoderated
  361.      groups, post it twice -- once to the unmoderated groups and once
  362.      to the moderated groups.
  363.  
  364. 28.  comp.arch and elsewhere:  What do FYI and IMHO mean?
  365.  
  366.      Those are abbreviations for common phrases.  FYI is "For Your
  367.      Information" and IMHO is "In My Humble Opinion" or "In My
  368.      Honest Opinion."
  369.  
  370. 29.  Would someone repost {large software distribution}?
  371.  
  372.      This question should never be posted unless you are reporting a
  373.      widespread problem in article propagation. Lamentably, there ARE
  374.      occasional glitches in article transport. Large source or binary
  375.      postings, by their sheer size, are an inviting target.
  376.  
  377.      If the problem is isolated, it is much better to take it upon
  378.      yourself to obtain the bad portions of the program than to ask
  379.      thousands of sites to spend thousands of dollars to needlessly
  380.      move several hundred kilobytes of code. There are archive sites
  381.      around the net that make most source/binary newsgroups available
  382.      via anonymous FTP and UUCP. If you get desperate, you can always
  383.      mail the author a blank disk or magnetic tape with provisions for
  384.      return postage.
  385.  
  386. 30.  How do I contact the moderator of an Internet mailing list rather than
  387.      post to the entire list?
  388.  
  389.      To do this you should know that there are, by convention, two
  390.      mailing addresses for every mailing list (except where noted by
  391.      the List of Lists):
  392.  
  393.          list@host        (e.g. xpert@athena.mit.edu)
  394.          list-request@host    (e.g. xpert-request@athena.mit.edu)
  395.  
  396.      When you have something for everyone on the mailing list to read,
  397.      mail to the list@host address. HOWEVER, if you have an
  398.      administrative request to make (e.g. "please add me to this list",
  399.      "please remove me from this list", "where are the archives?",
  400.      "what is this mailer error I got from sending to this list?"), it
  401.      should be directed to the list-request@host address, which goes
  402.      only to the mailing list administrator.
  403.  
  404.      It is considered to be in bad taste to send administrative
  405.      requests to the entire mailing list in question, and if (as is
  406.      often the case) the administrator does not read the mailing list
  407.      (i.e. he just takes care of the admin tasks for the list), he will
  408.      not see your request if you don't send it to the right address.
  409.  
  410. 31.  I see BTW (or "btw"), wrt and RTFM in postings.  What do they mean?
  411.  
  412.      BTW is shorthand for "by the way."  WRT is "With respect to".
  413.  
  414.      RTFM is generally used as an admonition and means "read the f*ing
  415.      manual" (choice of f-words varies according to reader).  The
  416.      implication is that the answer to a query or complaint is easy to
  417.      find if one looks in the appropriate location FIRST.
  418.  
  419. 32.  Are there any restrictions on posting e-mail someone sends to me?
  420.  
  421.      At a minimum, it is only polite for you to contact the author of
  422.      the letter and secure her or his permission to post it to the net.
  423.  
  424.      On a more serious note, it can be argued that posting someone's
  425.      e-mail to the net without their permission is a violation of
  426.      copyright law.  Under that law, even though a letter was addressed
  427.      to you, it does not grant you the right to publish the contents,
  428.      since those are the work of the author and the author retains
  429.      copyright (even if no explicit copyright mark appears). 
  430.  
  431.      Basically, your letters are your intellectual property.  If
  432.      someone publishes your letters they are violating your copyright.
  433.      This principle is well-founded in "paper media," and while
  434.      untested in electronic forums such as Usenet, the same would
  435.      probably apply if tested in court.
  436.  
  437. 33.  What's an FQDN?
  438.  
  439.      A fully-qualified domain name.  That is, a hostname containing
  440.      full, dotted qualification of its name up to the root of the
  441.      Internet domain naming system tree.  Example: uiucuxc is the
  442.      single-word hostname (suitable for, e.g., UUCP transport
  443.      purposes) of the machine whose FQDN is uxc.cso.uiuc.edu.
  444.  
  445. 34.  How do you pronounce "char" in C, "ioctl" in UNIX, the character
  446.      "#", etc., etc.?
  447.  
  448.      Opinions differ.  Pick pronunciations close to what your
  449.      colleagues use.  After all, they're the ones you need to
  450.      communicate with.
  451.  
  452. 35.  How do you pronounce "TeX"?
  453.  
  454.      To quote Donald Knuth, the creator of TeX: "Insiders pronounce
  455.      the X of TeX as a Greek chi, not as an 'x', so that TeX rhymes
  456.      with the word blecchhh.  It's the 'ch' sound in Scottish words
  457.      like loch or German words like ach; it's a Spanish 'j' and a
  458.      Russian 'kh'.  When you say it correctly to your computer, the
  459.      terminal may become slightly moist."  [The TeXbook, 1986, Addison
  460.      Wesley, page 1]
  461.  
  462. 36.  What is the last year of the 20th century A.D.?
  463.  
  464.     The A.D. system was devised before "origin 0 counting" was
  465.     invented.  The year after the time when Jesus was (incorrectly)
  466.     assumed to have been born was numbered 1.  (The preceding year was
  467.     1 B.C.)  So the 1st century was 1 to 100, the 2nd was 101 to 200,
  468.     the 20th is 1901 to 2000.  This is standard terminology no matter
  469.     how much some of you may dislike it.  However, "a" century is any
  470.     span of 100 years; so if you want to celebrate the end of "the
  471.     century", meaning the 1900's, on December 31, 1999, nobody will
  472.     stop you.  It just isn't the end of the "20th century A.D.".
  473.  
  474. 37. I heard these stories about a dying child wanting postcards to get
  475.     in the Guiness Book of Records.  Where can I post the address for
  476.     people to help?
  477.  
  478.     Post it to "junk," or better yet, don't post it at all.  The
  479.     story of the little boy keeps popping up, even though his mother
  480.     has been reported as appealing for people to stop.  So
  481.     many postcards were sent that the agencies involved in the effort
  482.     don't know what to do with them, and the Guiness people
  483.     claim they will retire the category from the record books. If you
  484.     want to do something noble, donate the cost of a stamp and
  485.     postcard (or more) to a worthwhile charity like UNICEF or the
  486.     International Red Cross/Red Crescent.  There are tens of
  487.     thousands of children dying around the world daily, and they could
  488.     use more than a postcard.
  489.  
  490. -- 
  491. Gene Spafford
  492. NSF/Purdue/U of Florida  Software Engineering Research Center,
  493. Dept. of Computer Sciences, Purdue University, W. Lafayette IN 47907-2004
  494. Internet:  spaf@cs.purdue.edu    uucp:    ...!{decwrl,gatech,ucbvax}!purdue!spaf
  495.  
  496.  
  497.