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

  1. Path: sparky!uunet!wupost!crcnis1.unl.edu!moe.ksu.ksu.edu!matt.ksu.ksu.edu!news
  2. From: probreak@matt.ksu.ksu.edu (James Michael Chacon)
  3. Newsgroups: comp.os.linux
  4. Subject: Re: how to mount a permanent partition to root??
  5. Date: 23 Dec 1992 12:06:26 -0600
  6. Organization: Kansas State University
  7. Lines: 25
  8. Message-ID: <1ha9r2INNgac@matt.ksu.ksu.edu>
  9. References: <1ha02gINNr3j@usenet.INS.CWRU.Edu>
  10. NNTP-Posting-Host: matt.ksu.ksu.edu
  11.  
  12. cl820@cleveland.Freenet.Edu (Wei Jin Mai) writes:
  13.  
  14.  
  15. >   I read all the guides and SFAQ last night . None of them tell how to
  16. >mount another Linux partition permanently. There are 2 Linux partitions in
  17. >my harddisk. hda3 houses the root. hda4 sis 60 megabytes and is free.
  18. >Now I want to install X-windows and set up a swap file which nneed more
  19. >disk space than hda3 has. How do I mount hda4 PERMANENTLY to the root 
  20. >directory in hda3?
  21. >-- 
  22. >Weijin Mai
  23.  
  24. What do you mean by PERMANENTLY?? You can put a fs on hda4 by issuing the
  25. mkfs command on it. After that mounting at boot would consist of adding
  26. the following line to fstab:
  27.  
  28. /dev/hda4    /mnt    minix    defaults
  29.  
  30. You would have to change minix to ext, if you made an extfs on hda4, but 
  31. otherwise it would look the same. Also, you would have to change /mnt to the
  32. actual directory you wanted to mount onto.
  33.  
  34. What most people do is have another partition for /usr/ and mount it on there.
  35.  
  36. James
  37.