home *** CD-ROM | disk | FTP | other *** search
/ NetNews Usenet Archive 1992 #31 / NN_1992_31.iso / spool / vmsnet / misc / 1096 < prev    next >
Encoding:
Internet Message Format  |  1993-01-01  |  22.4 KB

  1. Xref: sparky vmsnet.misc:1096 comp.os.vms:20184 news.answers:4850
  2. Path: sparky!uunet!thehulk!munroe
  3. Newsgroups: vmsnet.misc,comp.os.vms,news.answers
  4. Subject: Info-VAX: "Advanced" Common Questions
  5. Message-ID: <info-vax-3.19930101.040251@dmc.com>
  6. From: munroe@dmc.com
  7. Date: 1 Jan 93 04:04:44 EST
  8. Followup-To: vmsnet.misc
  9. Expires: 12 Feb 93 00:00:00 GMT
  10. References: <info-vax-1.19930101.040251@dmc.com>
  11. Organization: Doyle, Munroe Consultants, Inc., Hudson, Ma. 01749, USA
  12. Approved: munroe@dmc.com
  13. Supersedes: <info-vax-3.19921201.040052@dmc.com>
  14. Lines: 476
  15.  
  16. Archive-name:   info-vax/part03
  17. Last-modified:  1992/09/05
  18.  
  19. [Changes since last posting: Added a description of how to usefully debug
  20. with ANALYZE/PROCESS/IMAGE.]
  21.  
  22.            The Info-VAX Monthly Posting
  23.            ----------------------------
  24.            PART 3 -- Advanced "Common Questions".
  25.            (Coordinated by Dick Munroe, written by many others)
  26.  
  27. (Part 1 is an introduction to Info-VAX.  Part 2 is Beginner Common Questions.
  28. Part 4 is about how to find software.)
  29.  
  30. Save this message for future reference!
  31.  
  32. Table of Contents:
  33.  
  34. ,BAC   -- Advice on how NOT to backup your VAX            updated 1989-08-03
  35.           LEICHTER@VENUS.YCC.YALE.EDU (Jerry Leichter)
  36. ,BOOT  -- Booting a system whose disk is full.                  1992-08-12
  37.       rankin@eql.caltech.edu (Pat Rankin)
  38. ,DIR   -- Why is my directory so slow                  1992-08-09
  39.       Various people from vmsnet.internals
  40. ,SIG   -- How to set up automatic signatures, etc.          added 1989-09-29
  41.           CADS_COLE@GALLUA.BITNET (Kevin Cole)
  42. ,FLA   -- No question is stupid...                          added 1989-10-02
  43.           [A reminder to "us gurus" -TAL]
  44.           FASTEDDY@DFTNIC.GSFC.NASA.GOV (John McMahon)
  45. ,IMAGE-DUMP-ANALYSIS
  46.        -- Debugging using ANALYZE/PROCESS/IMAGE.        added 1992-09-05
  47.       Martin Jensen <mjensen@BBN.COM>
  48.       George Carrette <gjc@mitech.com>
  49. ,MCR   -- About MCR (Bruce Wright)                          added 1989-10-02
  50.           rti!bcw@MCNC.ORG
  51.  
  52. (the ",BAC", ",SIG", etc are keywords.  If you search for that text
  53. (including the ",") you will be brought to the beginning of that article.)
  54.  
  55. ---------------------------------------------------------------------
  56. ,BAC
  57. Subject: VMS Backup tips
  58. >From LEICHTER@VENUS.YCC.YALE.EDU ("Jerry Leichter") Tue Aug  1 10:01:00 1989
  59. Lines: 74
  60.  
  61. >[Various messages concerning long BACKUP times on a MicroVAX II, along with a
  62. >recommendation of the command line:
  63. >   $ back/log/ver *.*/ignore=inter mua0:backup.bck/sav/buf=5/blo=17408-
  64. >        /nocrc/group=0
  65. >]
  66. >
  67. > I think that Bob's response addresses part of the major problem with
  68. > BACKUPs on uVAX-IIs:  that of CRC.  On uVAX-IIs, the CRC instruction is
  69. > emulated in software as opposed to being in hardware as it is in its
  70. > bigger brothers.  As you might imagine, doing CRCs takes forever on a II.
  71. > /NOCRC is a MUST in your BACKUP command line.
  72.  
  73. In general, both of these pieces of advice - ESPECIALLY the first one!  -
  74. are EXTREMELY BAD.  They are the equivalent of "Locksmiths are SO expensive,
  75. I won't bother to install locks on my front door".  Such advice might make
  76. sense in some parts of the country, but try it in New York City....
  77.  
  78. Before considering this advice, decide for yourself just WHY you are doing
  79. backups.  Is it because you've heard that it's a good idea, or because it
  80. appears on your job description, but you don't REALLY expect ever to USE all
  81. those tapes you are writing?  Or is it because you want a safe copy of your
  82. data in case something goes wrong with your disk, or in case you just
  83. acciden- tally delete something important?
  84.  
  85. If it's the former, I'll suggest that you can actually make BACKUP run even
  86. faster; just add /CREATED/SINCE:TOMORROW.  Try it - you should see amazing
  87. results.  In fact, the results will be so good that you should be able to
  88. save all the typing for those other tacky qualifiers.
  89.  
  90. It it's the latter, consider what chances you are taking:
  91.  
  92.  - If you use /NOCRC, you are relying on the error detection capabilitites
  93. of the tape hardware.  This varies in ability to detect problems, depending
  94. on the kind of tape and the density.  Even at its best, it provides no
  95. protection against problems with the tape interface, with the bus, with
  96. memory, and so on.  ALL of these are known potential failure points.
  97.  
  98. - If you add /GROUP=0, you are disabling BACKUP's ability to recover from
  99. errors that develop on the tape while it is in storage, among other things.
  100. What you are getting in return is about 10% more data on the tape.  Sounds
  101. like a very poor tradeoff to me.
  102.  
  103.  - I don't know how the block size of 17408 was selected.  The default value
  104. (2048) was chosen by people with some data about tape failure statistics.
  105. It's a tradeoff:  The larger the block size, the more data you can fit on
  106. the tape - but the larger the probability of two blocks in a redundancy
  107. group suffering simultaneous errors, so that the data is irretrievably lost.
  108.  
  109. Of course, since redundancy groups have been disabled (by /GROUP=0) this
  110. makes little difference anyway.
  111.  
  112.  - Also about /BLOCK:  The combination of a large blocksize with a large
  113. buffer count can cause a reel-to-reel tape to run off the end of the reel.
  114. (Tapes have reflective "end of tape" markers well in from the end of the
  115. tape, but if enough data is already "in the pipe" it can be impossible to
  116. stop the drive in time.  Ever try threading a tape backwards?)
  117.  
  118. I can think of almost no reason to play with the redundancy group size,
  119. except for things like BACKUP savesets used to transfer stuff across a
  120. network where errors are unlikely and you can get another copy of the
  121. damaged stuff if you need it.
  122.  
  123. I can think of few reasons to play around with the block size.
  124.  
  125. I personally can't imagine a serious backup policy based on use of /NOCRC,
  126. at least as a universal policy.  (I suppose you MIGHT do weekly backups
  127. /CRC, and nightly incrementals /NOCRC, figuring that the cost of having to
  128. go back, at the very worst, to the weekly backup is small enough to justify
  129. the additional risk.)
  130.  
  131. There are significant tradeoffs to be made here.  "Speed of backup" is only
  132. one factor.  You have to decide for your own site how to balance this factor
  133. against the others.  But do it in an informed way!  Also, be ready to
  134. re-examine your conclusions as the data change:  BACKUP in VMS V5.2 should
  135. be much faster.  In particular, the CRC algorithms have been SIGNIFICANTLY
  136. sped up.
  137.  
  138.        -- Jerry
  139.  
  140. ---------------------------------------------------------------------
  141. ,BOOT
  142.  
  143. >Subject: Re: How to boot VMS from a failed AUDIT writing
  144. >From: rankin@eql.caltech.edu (Pat Rankin)
  145. >
  146. >In newsgroup vmsnet.misc, article <1992Aug10.142728.4397@mic.ucla.edu>,\
  147. > shinn@agsm.ucla.edu (Shinn-Tzong Wu) writes...
  148. >> Hi, we just encounteded one of our worst nightmare, the VAXStation 3100
  149. >> (running VMS 5.3) died probably because it ran out of disk space for  
  150. >> the AUDIT process.  Since the AUDIT process tried to write into the
  151. >> full disk in the process of rebooting, there seemed to be no way that we
  152. >> can bring the system up.  We tried to boot it from a stand alone tape but
  153. >> it won't access to any of the disks.  Can anyone suggest any help?  Thanks...
  154. >
  155. >     Use a conversational boot to bring up a minimum system.  For a 3100,
  156. >use B/1 at the `>>>' console prompt.  (If you have a console password
  157. >enabled, you'll have to enter it in order to use any variant of the boot
  158. >command other than just "B".)  From B/1, you'll get a `SYSBOOT>' prompt
  159. >where you can modify SYSGEN parameters; do the following
  160. >SYSBOOT> SET STARTUP_P1 "MIN"
  161. >SYSBOOT> CONTINUE
  162. >from there the system will boot normally, except that under a minimum
  163. >system many things are suppressed, including the audit server.  (Also
  164. >systartup_v5, the site-specific startup procedure, is suppressed, as are
  165. >sylogin and login.com once the system is up.)
  166. >
  167. >     Log in immediately as SYSTEM, use SET LOGIN/INTERACTIVE=1 to keep
  168. >ordinary users out, and then purge, delete, or move files to recover
  169. >sufficient disk space for normal operation.  Lastly, reset the system
  170. >parameters
  171. >$ run sys$system:sysgen
  172. >SYSGEN> USE CURRENT
  173. >SYSGEN> SET STARTUP_P1 ""
  174. >SYSGEN> WRITE CURRENT
  175. >SYSGEN> EXIT
  176. >and then reboot.
  177. >
  178. >     This kind of stuff should be covered in the "emergency procedures"
  179. >section of the system manager's manual(s).  Followups redirected to
  180. >vmsnet.sysmgt.
  181. >
  182. >        Pat Rankin, rankin@eql.caltech.edu
  183. >
  184. [Ed. note: The instructions to perform a minimum boot vary from
  185. processor to processor.  The instructions here are specific to a VAX
  186. 3100 (although most of the 3xxx product line seems to follow this
  187. "standard") NOT to all VAXen.  Check the Installation Supplement manual
  188. for your specific processor for the conversational boot procedure.]
  189. ---------------------------------------------------------------------
  190. ,DIR
  191.  
  192. >Subject: Why does emptying a dir take so long?
  193. >From: qb7g6@fel.tno.nl (Maarten Landzaat)
  194. >
  195. >I'm sorry if this is a FAQ. I don't often read VMS newsgroups.
  196. >A friend of mine using VAXstations 3100 and 4000(?) running
  197. >5.4 and 5.5 told me this striking story:
  198. >
  199. >He has a few directories containing a few hundred files. Sometimes, these
  200. >dirs need to be emptied. He then issues a simple delete *.*;* or whatever.
  201. >then VMS takes an INCREDIBLE time of 2 hours (5.4) or 45 minutes (5.5)
  202. >to delete the files.
  203. >
  204. >Now I've been working with VMS and unix, and didn't find that many
  205. >performance differences. But this is a VERY big difference. I've seen
  206. >lots of unix directories with hundreds of files, and delete time
  207. >seems linear. Deleting a few files on VMS does not take a long time,
  208. >at least IMO. Is VMS file deletion then not linear?
  209. >
  210. >Does anybody know why VMS takes such a long time?
  211. >Is it fundamental to the VMS filesystem structure?
  212.  
  213. #From: ewilts@galaxy.gov.bc.ca (Ed Wilts)
  214. #
  215. #I would hazard a guess that the size of the directory file exceeds 127 blocks.
  216. #The size of this file is proportional to the number of files in the directory
  217. #and the length of each file name.  I am surprised that you're seeing it with
  218. #only a few hundred files.
  219. #
  220. #Once you hit this magical limit [127 blocks], all hell breaks loose and you
  221. #wait forever to get any work done.  Spread your files over multiple
  222. #sub-directories if possible.
  223.  
  224. #From: granoff@ranger.enet.dec.com (Mark H. Granoff)
  225. #
  226. #Try deleting the files in reverse alphabetical order.  It'll take a little more
  227. #code (DCL, for example) than a simple DELE *.*.* command, but it'll improve the
  228. #performance of that logical operation.
  229. #
  230. #Directory files are maintained in alphabetical order.  If you delete the first
  231. #file in a directory, the directory file must be compressed and/or shuffled to
  232. #remove that first entry.  In a directory containing many files, this will take
  233. #some time.
  234.  
  235. #From: dfilip@colornet.UUCP
  236. #
  237. #If all access to the directory becomes VERY SLOW (including DIR's) then
  238. #I would suggest looking at the SYSGEN parameter ACP_DIRCACHE. This is the
  239. #number of blocks of a directory file that are kept in cache. Although a few
  240. #hundred files should NOT create an extremely large directory, if there were
  241. #ever a lot more (i.e., thousands) then this could be your problem since
  242. #directory files are not automatically compressed when files are deleted.
  243. #
  244. #ACP_DIRCACHE should be slightly larger than your largest directory file.
  245. #The parameter is dynamic, so you can change it without rebooting and see
  246. #if it fixes your problem.
  247. ---------------------------------------------------------------------
  248. ,SIG
  249. >From: "Kevin Cole at Gallaudet U. Washington DC" <CADS_COLE@GALLUA.BITNET>
  250. Subject: Automatic Signatures, Emblems and ">" a la EDT
  251.  
  252. Several people have asked me about automatic emblems.  I'm not saying this is
  253. the best way to do things...  I'm just saying it's the way I do things.  Seems
  254. to work OK for me.  Well, here's how I do it:
  255.      
  256.         1) Create a file with your particular emblem or signature in it.
  257.            (I called mine SIGNATURE.TXT.)
  258.      
  259.         2) Add the following lines in your LOGIN.COM:
  260.             $ DEFINE/NOLOG MAIL$EDIT    SYS$LOGIN:MAILEDIT.COM
  261.             $ MAIL      :== MAIL/EDIT=(SEND,REPLY=EXTRACT,FORWARD)
  262.      
  263.         3) Cut out the following two files (MAILEDIT.COM and MAILEDT.INI)
  264.      
  265. <Cut here>-------------------- MAILEDIT.COM -------------------------<Cut here>
  266. $ SET TERM/NOBROADCAST
  267. $ DEFINE /USER SYS$INPUT 'F$TRNLNM("SYS$OUTPUT")'
  268. $ IF P1 .EQS. "" THEN GOTO NOINPUT
  269. $ EDIT /COMMAND=SYS$LOGIN:MAILEDT.INI/OUTPUT='P2' 'P1'
  270. $ SET TERM/BROADCAST
  271. $ EXIT
  272. $NOINPUT:
  273. $ EDIT /COMMAND=SYS$LOGIN:MAILEDT.INI 'P2'
  274. $ SET TERM/BROADCAST
  275. $ EXIT
  276. <Cut here>-----------------------------------------------------------<Cut here>
  277.      
  278.      
  279. <Cut here>-------------------- MAILEDT.INI --------------------------<Cut here>
  280. SET CURSOR 0:20
  281. SET SCREEN 80
  282. SET WRAP 79
  283. SET SEARCH BEGIN
  284. SET ENTITY WORD '^H^I^J^K^L^M !"#$%&''()*+,-./:;<=>?@[\]^_`{|}~'
  285. SET WORD NODELIMITER
  286. DEFINE KEY GOLD 14 AS "5SHL."
  287. DEFINE KEY GOLD 15 AS "5SHR."
  288. DEFINE KEY GOLD D AS "DATE."
  289. C; ER -L 32000(62ASC -2L) ER EX
  290. INC SYS$LOGIN:SIGNATURE.TXT
  291. F BEG
  292. C; IDate sent: ^Z DATE ^M EX
  293. SET MODE CHANGE
  294. <Cut here>-----------------------------------------------------------<Cut here>
  295.      
  296.      
  297. NOTE: Change the ^H^I^J^K^L^M to control characters in the SET ENTITY command.
  298.       Change the ^Z to control-Z (but NOT the ^M) in the second last line.
  299.      
  300. Explaination:
  301.      
  302. The above does a bit more than what is asked for...  The reason I spawn instead
  303. of using callable EDT or TPU is because I prefer to turn off broadcasts while
  304. I'm editing, and because the COM file runs a non-standard INI file.  The
  305. special INI file is what adds the emblem/signature.  It also does a few other
  306. handy things like adding the time the message was sent, and adding the ">"
  307. character to the beginning of every old line in a reply.  (That's a trick I
  308. learned from someone on this list ages ago.)  The guts are in the last five
  309. lines.
  310.      
  311. First we move to the end of the buffer (ER).  Backup one line (-L).  Insert a
  312. ">" (62ASC) and go to previous line (-2L) 32000 times.  When we've finally
  313. added as many ">" as we can, go back to the end of the buffer (ER).  Add the
  314. signature file. (INC SYS$LOGIN:SIGNATURE.TXT).  Go back to the top of the file
  315. (F BEG) and add the current time and date (IDate sent: ^Z DATE ^M EX).  Lastly
  316. give control back to the sender (SET MODE CHANGE).
  317.  
  318. ---------------------------------------------------------------------
  319. ,FLA
  320. Subject:  No question is stupid...
  321. >From:     John McMahon - NASA GSFC ADFTO - 301-286-2045
  322.           <FASTEDDY@DFTNIC.GSFC.NASA.GOV>
  323. Date:     Thu, 3 Aug 89 12:18:10 EDT
  324.  
  325. (Commentary having very little to do with Vaxen follows...)
  326.  
  327. Sample antagonistic response to novice question:
  328. ***> RTFM! Page 7-7 in binder 8B, the version 4 doc set. Just set
  329. ***> bit 28 and you're done! And stop asking such silly questions,
  330. ***> which are so easily answered, will you!
  331.  
  332. It seems to me that usefulness of Info-Vax/Comp.Os.Vms is decreased when
  333. someone out on the net asks a question and is greeted with comments like those
  334. above.  To you the question may seem trivial...  However, it wasn't to the
  335. person posting.
  336.  
  337. First thing to keep in mind:  Even if it's in the manuals, the person may not
  338. be able to find it.  If you posted a question about "How do I increase the
  339. maximum record size for DECnet I/O", I could easily answer RTFM.  But that's
  340. only because I found it once...  It took a couple of hours, several manuals,
  341. and a little luck.  Some people aren't that lucky, and some don't have access
  342. to full documentation sets.  Also, when was the last time you actually read an
  343. index that pointed to exactly what you wanted the first time ?  Most indexes
  344. imply that the user knows approximately what he/she is looking for first...
  345. What is a user to do when he/she doesn't know where to look ?  How about ask
  346. the Info-Vax gurus...
  347.  
  348. Second thing to keep in mind:  Not everyone here is at the same level of
  349. experience.  Just because you are talented/knowledgeable you don't have to hold
  350. that over a novice who is lost in VMS.  Remember that at one point, all of the
  351. gurus (including you) were novices.  How far would you have advanced if people
  352. you asked for help from said "Read the manuals...  You ask silly questions..."
  353. Probably not as far as you have gotten.
  354.      
  355. Third thing:  Behind each posting is a person.  The network creates an
  356. 'artificial buffer' which keeps us separate enough that we forget.  Just
  357. because it's e-mail doesn't meen you shouldn't be polite.  We are humans after
  358. all...  We are supposed to be civilized...
  359.      
  360. Boiled down to a point:  Info-Vax is a technical discussion involving everyone
  361. from the Novice to Guru level.  Let's keep it polite and technical...  Don't
  362. post personal editorial comments...
  363.      
  364. (I know, I probably just violated that...)
  365.      
  366. Please direct comments to me (not the list)...
  367. /-------------------------------------+---------------------------------------\
  368. | John "Fast Eddie" McMahon           |    Span: SDCDCL::FASTEDDY (Node 6.9)  |
  369. | Advanced Data Flow Technology Office|    Arpa: FASTEDDY@DFTNIC.GSFC.NASA.GOV|
  370. | Code 630.4 - Building 28/W255       |  Bitnet: FASTEDDY@DFTBIT              |
  371. | NASA Goddard Space Flight Center    |GSFCmail: JMCMAHON                     |
  372. | Greenbelt, Maryland 20771           |   Phone: x6-2045                      |
  373.  
  374. --------------------------------------------------------------------------------
  375. ,IMAGE-DUMP-ANALYSIS
  376. >Subject: Analyzing a process dump
  377. >From: mjensen@BBN.COM (Martin Jensen)
  378. >
  379. >    I've got an executable that runs with the /dump qualifier.  I expect
  380. >    that, on occasion, the process will crash.  (as a matter of fact, we
  381. >    intentionally crash it if software detects an unrecoverable condition
  382. >    in the code).
  383. >
  384. >    The problem is that the dump files are pretty useless.  'show  calls'
  385. >    reports  only the module names - no routine names - and I've only got
  386. >    access to universal symbols.  The program is compiled with the /debug
  387. >    switch and linked with /trace.
  388. >
  389. >    Ideally, I would like to be able use anal/proc/image=xxx against the
  390. >    dump from the normally linked executable - where xxx would be an
  391. >    image containing the full DST and GST.  The couple of options I have
  392. >    tried allow me to analyze the dump, but the symbol locations don't
  393. >    match properly between the images.
  394. >
  395. >    Any ideas???
  396.  
  397. >Subject: Re: Analyzing a process dump
  398. >From: gjc@mitech.com (George J. Carrette)
  399. >
  400. >The trick people use is to LINK/DEBUG and then use a command
  401. >procedure that calls VMS PATCH to change the image back to thinking
  402. >it was LINK/NODEBUG.
  403. >
  404. >That way you get all the symbols in the image without having it start
  405. >up in the debugger.
  406. >
  407. >You can get a SETDEBUG.C or NSETDEBUG.COM, or other various of that
  408. >from various places. Probably VMSNET.SOURCES archives.
  409. >
  410. >-gjc
  411.  
  412. --------------------------------------------------------------------------------
  413. ,MCR
  414. Subject: Response to Question about "MCR"
  415. >From: Bruce Wright <rti!bcw@MCNC.ORG>
  416. Date: Thu, 28 Sep 89 15:31:08 GMT
  417.  
  418. In article <22331@cup.portal.com>, Wiley_M_Sanders@cup.portal.com writes:
  419. >    MCR stands for "Monitor Console/Control Routine", and is a vestigial
  420. > element left over when PDP-11 programs could be run under VMS. MCR is/was
  421. > the RSX-11 equivalent of the RUN command, although it really RUNS the
  422. > image as a foreign command, as opposed to RUN, which launches the
  423. > installed image. In that way it's not exactly a synonym for
  424. > RUN SYS$SYSTEM.
  425.      
  426. Sorry if this is too pedantic for the net.censors, if you don't like it
  427. just hit the "n" key.
  428.      
  429. The MCR command on VMS is more-or-less like RUN on VMS, though with some
  430. of the slight differences that have been mentioned here and elsewhere - but
  431. MCR on RSX was NOT the RSX equivalent of RUN.  VMS doesn't have an exact
  432. equivalent of MCR - the closest thing is DCL;  MCR was the user command
  433. line interface module under RSX.  As noted, MCR stands for "Monitor
  434. Console Routine" and was the prompt that the user saw:
  435.      
  436.     MCR>your-RSX-command
  437.      
  438. RUN was a very respectable RSX command - it ran a user image as a task.
  439. RSX commands were one-to-three letter commands which were derived from the
  440. names of installed tasks (sort of like an installed image on VMS, but when
  441. it was invoked it would start a new task [=process on VMS]).
  442.      
  443. RSX commands were one-to-three letter commands which were derived from the
  444. names of installed tasks.  These were run as separate tasks (=process on
  445. VMS) when the corresponding command was entered (everything on RSX was a
  446. task, image activation corresponded to task activation).  Since there were
  447. a number of different versions of RSX (RSX-11A, RSX-11B, RSX-11C, RSX-11D,
  448. RSX-11M, RSX-11M+, RSX-11S, IAS, POS, and maybe others), some of which
  449. shared only a few architectural and historical things in common, the
  450. precise details of the implementation differed somewhat between members
  451. of the family.
  452.      
  453. Later versions of RSX (and some of its derivatives such as IAS) did include
  454. a DCL interpreter which had numerous similarities (and differences) with
  455. respect to VMS DCL.  Because of the architecture of the systems, many of
  456. the DCL commands in the RSX family would start a new task (=process) rather
  457. than run an image in the same process as on VMS - but the effect from the
  458. user point of view was very similar.
  459.      
  460. >    Alas, the MCR command interpreter seems to be absent from VMS 5.2. At
  461. > least when I type SPAWN/CLI=MCR, it can't be found.
  462.      
  463. The MCR command is left over from when the RSX compatibility mode software
  464. was bundled in with VMS.  Those of you that have been around since VMS V1.0
  465. probably remember that, for example, DIRECTORY was implemented as PIP /LI
  466. and that many commands (including DIRECTORY) would spit out RSX-like error
  467. messages like "PIP -- No such file(s)".  It started out as much as an aid
  468. for DEC to get all that utility software running on the VAX as it did as an
  469. aid for helping customer conversions.
  470.      
  471. Since at least V4.0 this has been separate product (VAX-11 RSX) which sites
  472. with an earlier license automatically had a license to use.  When it was
  473. made a separate product, all the RSX code (MCR, PIP, TKB, FLX, and all the
  474. other friends from the RSX world, and BACKTRANS.EXE and other things from
  475. the VMS world which made the whole mess work) were removed and made part
  476. of the VAX-11 RSX product.
  477.      
  478. When this was done, the MCR command was probably left in the DCL tables
  479. because removing it would break too many command files and annoy too many
  480. people who had gotten used to typing "MCR mumble" instead of the wordier
  481. "RUN SYS$SYTEM:mumble".
  482.      
  483.      
  484.                         Bruce C. Wright
  485. --
  486. Dick Munroe                Internet: munroe@dmc.com
  487. Doyle Munroe Consultants, Inc.        UUCP: ...uunet!thehulk!munroe
  488. 267 Cox St.                Office: (508) 568-1618
  489. Hudson, Ma. USA                FAX: (508) 562-1133
  490.  
  491. GET CONNECTED!!! Send mail to info@dmc.com to find out about DMConnection.
  492.