home *** CD-ROM | disk | FTP | other *** search
/ NetNews Usenet Archive 1992 #16 / NN_1992_16.iso / spool / comp / unix / sysv386 / 12370 < prev    next >
Encoding:
Internet Message Format  |  1992-07-23  |  1.5 KB

  1. Path: sparky!uunet!mcsun!Germany.EU.net!unido!kommu!norisb!georg
  2. From: georg@norisb (Georg Biehler)
  3. Newsgroups: comp.unix.sysv386
  4. Subject: Re: system dump
  5. Message-ID: <511@kommu.UUCP>
  6. Date: 24 Jul 92 05:49:48 GMT
  7. References: <1992Jul22.075012.27943@jabaru.cec.edu.au>
  8. Sender: news@kommu.UUCP
  9. Lines: 25
  10. X-Newsreader: Tin 1.1 PL4
  11.  
  12. d10590@tanus.oz.au (Robert Chalmers) writes:
  13. : Could someone tell me how to stop the message 'dump image in swaop area, do
  14. : you wish to save it?' from appearing each time I start up. I say yes and save
  15. : it, still there next time. I say no, and continue, still there next time. Any
  16. : idesas anyne.
  17. : Bob
  18. : _________________________________________________________________________
  19. : |Robert Chalmers. d10590@tanus.cec.edu.au. Mackay, Queensland. Australia|
  20. : |APCUG nanguo!root   (AUS)               UUCP mwcbbs!nanguo!earth  (USA)|
  21. : |---------------------* ao zhong youyi wan sui *------------------------|
  22. : |  UUCP nanguo!root  +61  79-521070 AEST:24 Hours. in:nuucp rd:uupublic |
  23. : |  MYNAME=bbsuser   ~/INFO   Australian-Pacific Coherent User Group     |
  24. : |-----------------------------------------------------------------------|
  25.  
  26. The problem is,  that the first block on your swap device is identical with
  27. memory at physical address 0;  that will lead the system to the assumption,
  28. that some system dump is on the swap device.  To get rid of it:
  29.   Edit the /sbin/bcheckrc script.   Put after the line "/sbin/dumpcheck"
  30. the line 
  31.   
  32.   echo MARK | dd of=/dev/rswap bs=512 conv=sync > /dev/null 2>&1
  33.  
  34. This will clear the system dump.
  35.  
  36. -Georg
  37.