home *** CD-ROM | disk | FTP | other *** search
/ NetNews Usenet Archive 1992 #30 / NN_1992_30.iso / spool / comp / unix / ultrix / 8952 < prev    next >
Encoding:
Internet Message Format  |  1992-12-21  |  1.1 KB

  1. Path: sparky!uunet!zaphod.mps.ohio-state.edu!saimiri.primate.wisc.edu!ames!agate!stanford.edu!rock!concert!borg!trantor!white
  2. From: white@trantor.cs.unc.edu (Brian T. White)
  3. Newsgroups: comp.unix.ultrix
  4. Subject: Re: Swap area on Dec5000
  5. Message-ID: <18452@borg.cs.unc.edu>
  6. Date: 18 Dec 92 14:22:06 GMT
  7. References: <16DEC199221211918@csa1.lbl.gov>
  8. Sender: news@cs.unc.edu
  9. Lines: 34
  10.  
  11. Shaheen R Tonse writes:
  12.  
  13. > A colleague tells me that it is useless to just make new b partitions and 
  14. > expect the system to know that they are available for swap area, unless one 
  15. > somehow re-compiles this information into the kernel. Is this true, and if 
  16. > so, is it "easy" to do?
  17.  
  18.  
  19. Yes, it is pretty easy.  Edit /usr/sys/conf/mips/kernelname, changing
  20. the line that looks like
  21.  
  22. config          vmunix  root on rz0a  swap on rz0b    dumps on rz0b 
  23.  
  24. to look like this:
  25.  
  26. config          vmunix  root on rz0a  swap on rz0b and rz1b    dumps on rz0b 
  27.  
  28.  
  29. Then execute
  30.  
  31.     config kernelname
  32.     cd ../../MIPS/kernelname
  33.     make depend
  34.     make
  35.     mv /vmunix /vmunix.old
  36.     mv vmunix /vmunix
  37.  
  38.  
  39. You will also have to add a line like this to /etc/fstab:
  40.  
  41. /dev/rz1b::sw:1:1:ufs::
  42.  
  43.  
  44.  
  45.