home *** CD-ROM | disk | FTP | other *** search
/ NetNews Usenet Archive 1992 #31 / NN_1992_31.iso / spool / comp / os / vms / 19873 < prev    next >
Encoding:
Internet Message Format  |  1992-12-25  |  3.0 KB

  1. Path: sparky!uunet!news.claremont.edu!nntp-server.caltech.edu!SOL1.GPS.CALTECH.EDU!CARL
  2. From: carl@SOL1.GPS.CALTECH.EDU (Carl J Lydick)
  3. Newsgroups: comp.os.vms
  4. Subject: Re: Writeback Cache and other trivia
  5. Date: 25 Dec 1992 06:32:01 GMT
  6. Organization: HST Wide Field/Planetary Camera
  7. Lines: 50
  8. Distribution: world
  9. Message-ID: <1he9t1INN1o3@gap.caltech.edu>
  10. References: <1992Dec22.220607.8221@news.acns.nwu.edu>,<1h9lpjINN1c9@gap.caltech.edu>,<1992Dec23.142910.8966@slcs.slb.com>
  11. Reply-To: carl@SOL1.GPS.CALTECH.EDU
  12. NNTP-Posting-Host: sol1.gps.caltech.edu
  13.  
  14. In article <1992Dec23.142910.8966@slcs.slb.com>, brydon@asl.slb.com (Harvey Brydon (918)250-4312) writes:
  15. =In article <1h9lpjINN1c9@gap.caltech.edu>, in an incredibly polite manner,
  16. =carl@SOL1.GPS.CALTECH.EDU (Carl J Lydick) writes:
  17. =>In article <1992Dec22.220607.8221@news.acns.nwu.edu>,
  18. =>jweiss@casbah.acns.nwu.edu (Jerry Weiss) writes:
  19. =>=During a regular test of my backup procedures (ie: my system crashed and
  20. =>=when it came back up a few things didn't work ;-( )
  21. =>
  22. =>[generally good stuff deleted...]
  23. =>
  24. =>=Any there other files in VMS (not counting 3rd party software) that
  25. =>=require special attention?
  26. =>
  27. =>For vanilla VMS, at least through v5.4-2, JBCSYSQUE.DAT is the only special
  28. =>file, if you're concerned mostly about rebooting and having everything work
  29. =>right.  If your real security-conscious, there are a couple of other files
  30. =>(OPERATOR.LOG, and at least one AUDIT file) that you've got to worry about.
  31. =
  32. =You left out the ACCOUNTNG.DAT files.  These are never backed up to
  33. =incremental backups because they are typically opened at boot time and never
  34. =closed.  Since they are continuously open, you can't do the usual stuff with
  35. =the file header (anything with "SET FILE", "SET PROT", etc.)  but you can mark
  36. =them as modified by renaming them to themselves.  Give this a try.  It is
  37. =directly from the incremental backup command procedure I use:
  38. =
  39. =$ set proc /priv=(sysprv,bypass)
  40. =$ rename /log sys$sysdevice:[sys*.sysmgr]accountng.dat; *.*;*
  41. =$ if f$search("sys$system:jbcsysque.dat") .nes. "" then -
  42. =  rename /log sys$system:jbcsysque.dat;* *.*;*
  43. =$
  44. =$ backup /ignore=interlock ...
  45.  
  46. Mea culpa.  I'd forgotten about OPERATOR.LOG.  But if you REALLY want to
  47. include that file, and don't want to use /IGNORE=INTERLOCK, then:
  48.     $ SET PROC/PRIV=OPER
  49.     $ DEF SYS$COMMAND _OPA0:
  50.     $ REP/ENA
  51.     $ REP/LOG
  52.     $ DEAS SYS$COMMAND
  53.     $ BACKUP ....
  54. is a better idea.  If you don't want OPCOM messages to appear on the console,
  55. then do a REPLY/DISABLE after the REP/LOG.
  56. --------------------------------------------------------------------------------
  57. Carl J Lydick | INTERnet: CARL@SOL1.GPS.CALTECH.EDU | NSI/HEPnet: SOL1::CARL
  58.  
  59. Disclaimer:  Hey, I understand VAXen and VMS.  That's what I get paid for.  My
  60. understanding of astronomy is purely at the amateur level (or below).  So
  61. unless what I'm saying is directly related to VAX/VMS, don't hold me or my
  62. organization responsible for it.  If it IS related to VAX/VMS, you can try to
  63. hold me responsible for it, but my organization had nothing to do with it.
  64.