home *** CD-ROM | disk | FTP | other *** search
/ NetNews Usenet Archive 1992 #31 / NN_1992_31.iso / spool / comp / os / vms / 19795 < prev    next >
Encoding:
Text File  |  1992-12-23  |  2.2 KB  |  49 lines

  1. Newsgroups: comp.os.vms
  2. Path: sparky!uunet!usc!cs.utexas.edu!geraldo.cc.utexas.edu!slcs.slb.com!BRYDON@128.58.42.3
  3. From: brydon@asl.slb.com (Harvey Brydon (918)250-4312)
  4. Subject: Re: Writeback Cache and other trivia
  5. Message-ID: <1992Dec23.142910.8966@slcs.slb.com>
  6. Sender: news@slcs.slb.com (News Administrator)
  7. Nntp-Posting-Host: 129.87.186.2
  8. Reply-To: brydon@dsn.SINet.slb.com
  9. Organization: Schlumberger/Anadrill Sugar Land, TX
  10. References: <1992Dec22.220607.8221@news.acns.nwu.edu>,<1h9lpjINN1c9@gap.caltech.edu>
  11. Date: Wed, 23 Dec 92 14:29:10 GMT
  12. Lines: 35
  13.  
  14. In article <1h9lpjINN1c9@gap.caltech.edu>, in an incredibly polite manner,
  15. carl@SOL1.GPS.CALTECH.EDU (Carl J Lydick) writes:
  16. >In article <1992Dec22.220607.8221@news.acns.nwu.edu>,
  17. >jweiss@casbah.acns.nwu.edu (Jerry Weiss) writes:
  18. >=During a regular test of my backup procedures (ie: my system crashed and
  19. >=when it came back up a few things didn't work ;-( )
  20. >
  21. >[generally good stuff deleted...]
  22. >
  23. >=Any there other files in VMS (not counting 3rd party software) that
  24. >=require special attention?
  25. >
  26. >For vanilla VMS, at least through v5.4-2, JBCSYSQUE.DAT is the only special
  27. >file, if you're concerned mostly about rebooting and having everything work
  28. >right.  If your real security-conscious, there are a couple of other files
  29. >(OPERATOR.LOG, and at least one AUDIT file) that you've got to worry about.
  30.  
  31. You left out the ACCOUNTNG.DAT files.  These are never backed up to
  32. incremental backups because they are typically opened at boot time and never
  33. closed.  Since they are continuously open, you can't do the usual stuff with
  34. the file header (anything with "SET FILE", "SET PROT", etc.)  but you can mark
  35. them as modified by renaming them to themselves.  Give this a try.  It is
  36. directly from the incremental backup command procedure I use:
  37.  
  38. $ set proc /priv=(sysprv,bypass)
  39. $ rename /log sys$sysdevice:[sys*.sysmgr]accountng.dat; *.*;*
  40. $ if f$search("sys$system:jbcsysque.dat") .nes. "" then -
  41.   rename /log sys$system:jbcsysque.dat;* *.*;*
  42. $
  43. $ backup /ignore=interlock ...
  44.  
  45. _______________________________________________________________
  46. Harvey Brydon         | Internet:   brydon@dsn.SINet.slb.com
  47. Dowell Schlumberger   | P.O.T.S.:   (918)250-4312
  48.  Backup my system disk?  Okay, where's the reverse switch?
  49.