public inbox for gentoo-doc-cvs@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-doc-cvs] cvs commit: lvm2.xml
@ 2006-01-20 11:42 Xavier Neys
  0 siblings, 0 replies; 9+ messages in thread
From: Xavier Neys @ 2006-01-20 11:42 UTC (permalink / raw
  To: gentoo-doc-cvs

neysx       06/01/20 11:42:43

  Modified:    xml/htdocs/doc/en lvm2.xml
  Log:
  #116288 Do not activate swap until you're done with the partitioning, and a well needed refresh

Revision  Changes    Path
1.17      +43 -34    xml/htdocs/doc/en/lvm2.xml

file : http://www.gentoo.org/cgi-bin/viewcvs.cgi/xml/htdocs/doc/en/lvm2.xml?rev=1.17&content-type=text/x-cvsweb-markup&cvsroot=gentoo
plain: http://www.gentoo.org/cgi-bin/viewcvs.cgi/xml/htdocs/doc/en/lvm2.xml?rev=1.17&content-type=text/plain&cvsroot=gentoo
diff : http://www.gentoo.org/cgi-bin/viewcvs.cgi/xml/htdocs/doc/en/lvm2.xml.diff?r1=1.16&r2=1.17&cvsroot=gentoo

Index: lvm2.xml
===================================================================
RCS file: /var/cvsroot/gentoo/xml/htdocs/doc/en/lvm2.xml,v
retrieving revision 1.16
retrieving revision 1.17
diff -u -r1.16 -r1.17
--- lvm2.xml	3 Oct 2005 22:49:15 -0000	1.16
+++ lvm2.xml	20 Jan 2006 11:42:43 -0000	1.17
@@ -1,8 +1,8 @@
 <?xml version='1.0' encoding="UTF-8"?>
-<!-- $Header: /var/cvsroot/gentoo/xml/htdocs/doc/en/lvm2.xml,v 1.16 2005/10/03 22:49:15 rane Exp $ -->
+<!-- $Header: /var/cvsroot/gentoo/xml/htdocs/doc/en/lvm2.xml,v 1.17 2006/01/20 11:42:43 neysx Exp $ -->
 <!DOCTYPE guide SYSTEM "/dtd/guide.dtd">
 
-<guide link = "/doc/en/lvm2.xml">
+<guide link="/doc/en/lvm2.xml">
 <title>Gentoo LVM2 installation</title>
 
 <author title="Author">
@@ -24,8 +24,8 @@
 <!-- See http://creativecommons.org/licenses/by-sa/2.5 -->
 <license/>
 
-<version>2.0.11</version>
-<date>2005-08-17</date>
+<version>2.1</version>
+<date>2006-01-20</date>
 
 <chapter>
 <title>Introduction</title>
@@ -62,7 +62,7 @@
 LVM2 support such as a Gentoo Installation CD. You can find the Installation CDs for an x86
 architecture on our <uri
 link="/main/en/mirrors.xml">mirrors</uri> under
-<path>/releases/x86/2005.1/installcd</path>. Other architectures might
+<path>/releases/x86/2005.1-r1/installcd</path>. Other architectures might
 be supported as well.
 </p>
 
@@ -134,21 +134,16 @@
 </p>
 
 <p>
-Create a small physical /boot partition (hda1). In this example, /boot will be
-not managed by LVM2. This partition will contain your bootloader and your
-kernel(s).  A 64MB partition should be well enough for quite a few kernel
-generations.
+Create a small physical <path>/boot</path> partition (hda1). In this example,
+<path>/boot</path> will be not managed by LVM2. This partition will contain
+your bootloader and your kernel(s).  A 64MB partition should be well enough for
+quite a few kernel generations.
 </p>
 
 <p>
-Create a swap partition (hda2) and activate it.
+Create a swap partition (hda2).
 </p>
 
-<pre caption="Activating the swap partition">
-# <i>mkswap /dev/hda2</i>
-# <i>swapon /dev/hda2</i>
-</pre>
-
 <p>
 Create a / (root) partition (hda3). If you are interested in trying to put your
 root partition under LVM management (which we do not recommend), see the
@@ -167,10 +162,10 @@
 </note>
 
 <p>
-Assuming the /boot, swap and root partitions do not use the whole physical disk,
-create a fourth partition on this disk and set it to type 8e (Linux LVM).
-If you have more physical drives you would like to use with LVM, create 
-one partition on each and give them the same type (8e).
+Assuming the <path>/boot</path>, swap and root partitions do not use the whole
+physical disk, create a fourth partition on this disk and set it to type 8e
+(Linux LVM).  If you have more physical drives you would like to use with LVM,
+create one partition on each and give them the same type (8e).
 </p>
 
 <note>
@@ -184,6 +179,12 @@
 </note>
 
 <p>
+Create the filesystems on <path>/dev/hda1</path> and <path>/dev/hda3</path>,
+and create and activate the swap on <path>/dev/hda2</path> as described in the
+handbook.
+</p>
+
+<p>
 Load the LVM2 <path>dm-mod</path> module.
 </p>
 
@@ -192,13 +193,22 @@
 </pre>
 
 <p>
-Scan and activate LVM:
+Before scanning and activating LVM, you might want to edit
+<path>/etc/lvm/lvm.conf</path> to exclude some devices. By default, LVM2 will
+scan all devices, even your CDROM which can generate error messages. In the
+following exemple, the line that allows scanning of all devices is replaced by
+one that rejects every device but our two IDE disks.
 </p>
 
 <pre caption="Activating LVM">
-<comment>(Avoid scanning your cdrom)</comment>
-# <i>mkdir -p /etc/lvm</i>
-# <i>echo 'devices { filter=["r/cdrom/"] }' >/etc/lvm/lvm.conf</i>
+<comment>(Avoid scanning all devices but our disks)</comment>
+# <i>nano -w /etc/lvm/lvm.conf</i>
+<comment>(Look for the following line)</comment>
+    filter = [ "a/.*/" ]
+<comment>(Replace it with the following one to scan
+/dev/hda and /dev/hdb and reject anything else)</comment>
+    filter = [ "a|/dev/hd[ab]|", "r/.*/" ]
+<comment>(Save the file and quit nano)</comment>
 # <i>vgscan</i>
   Reading all physical volumes.  This may take a while...
   No volume groups found
@@ -389,16 +399,16 @@
 
 <pre caption="Emerging the LVM2 package">
 # <i>emerge lvm2</i>
-<comment>(At the time of writing, the stable version is 2.00.08.
-With version 2.00.08, prevent lvm2 from probing your cdrom by doing:</comment>
-# <i>echo 'devices { filter=["r/cdrom/"] }' >> /etc/lvm/lvm.conf</i>
-
-<comment>(Versions 2.00.15 and later come with a /etc/lvm/lvm.conf
-Edit your /etc/lvm/lvm.conf and follow the comments</comment>
-# <i>nano -w /etc/lvm/lvm.conf</i>
 </pre>
 
 <p>
+Edit <path>/etc/lvm/lvm.conf</path> as described <uri
+link="#doc_chap2_pre2">earlier</uri>. The file you previously edited is part of
+your installation environment and will disappear after the next reboot.  This
+time, you edit the real one inside your new Gentoo install.
+</p>
+
+<p>
 When editing your <path>/etc/fstab</path> file, follow the handbook and add
 your LVM2 logical volumes as needed.  Again, here are a few lines needed for
 our example:
@@ -481,10 +491,9 @@
     The <uri link="http://tldp.org/HOWTO/LVM-HOWTO">LVM Howto</uri>
   </li>
   <li>
-    Daniel Robbins's articles on LVM at IBM's DeveloperWorks:
-    <uri>http://www-106.ibm.com/developerworks/linux/library/l-lvm/?dwzone=linux</uri>
-    and 
-    <uri>http://www-106.ibm.com/developerworks/linux/library/l-lvm2.html?dwzone=linux</uri>
+    Daniel Robbins's articles on LVM for IBM's DeveloperWorks: <uri
+    link="/doc/en/articles/lvm-p1.xml">Part 1</uri> and <uri
+    link="/doc/en/articles/lvm-p2.xml">Part 2</uri>
   </li>
   <li>
     How to boot your root FS off of LVM1:



-- 
gentoo-doc-cvs@gentoo.org mailing list



^ permalink raw reply	[flat|nested] 9+ messages in thread
* [gentoo-doc-cvs] cvs commit: lvm2.xml
@ 2008-05-23 19:49 Sven Vermeulen
  0 siblings, 0 replies; 9+ messages in thread
From: Sven Vermeulen @ 2008-05-23 19:49 UTC (permalink / raw
  To: gentoo-doc-cvs

swift       08/05/23 19:49:18

  Modified:             lvm2.xml
  Log:
  Coding style

Revision  Changes    Path
1.24                 xml/htdocs/doc/en/lvm2.xml

file : http://sources.gentoo.org/viewcvs.py/gentoo/xml/htdocs/doc/en/lvm2.xml?rev=1.24&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo/xml/htdocs/doc/en/lvm2.xml?rev=1.24&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo/xml/htdocs/doc/en/lvm2.xml?r1=1.23&r2=1.24

Index: lvm2.xml
===================================================================
RCS file: /var/cvsroot/gentoo/xml/htdocs/doc/en/lvm2.xml,v
retrieving revision 1.23
retrieving revision 1.24
diff -u -r1.23 -r1.24
--- lvm2.xml	3 Nov 2007 21:14:55 -0000	1.23
+++ lvm2.xml	23 May 2008 19:49:18 -0000	1.24
@@ -1,5 +1,5 @@
 <?xml version='1.0' encoding="UTF-8"?>
-<!-- $Header: /var/cvsroot/gentoo/xml/htdocs/doc/en/lvm2.xml,v 1.23 2007/11/03 21:14:55 nightmorph Exp $ -->
+<!-- $Header: /var/cvsroot/gentoo/xml/htdocs/doc/en/lvm2.xml,v 1.24 2008/05/23 19:49:18 swift Exp $ -->
 <!DOCTYPE guide SYSTEM "/dtd/guide.dtd">
 
 <guide link="/doc/en/lvm2.xml">
@@ -114,7 +114,7 @@
 <body>
 
 <p>
-Follow the handbook, but with the following amendments to chapter <e>4. 
+Follow the handbook, but with the following amendments to chapter <e>4.
 Preparing the Disks</e>:
 </p>
 
@@ -145,11 +145,11 @@
 </p>
 
 <note>
-It is <b>not</b> recommended to put the following directories in an 
-LVM2 partition: <path>/etc</path>, <path>/lib</path>, <path>/mnt</path>, 
-<path>/proc</path>, <path>/sbin</path>, <path>/dev</path>, and <path>/root</path>.
-This way, you would still be able to log into your system (crippled, but 
-still somewhat usable, as root) if something goes terribly wrong.
+It is <b>not</b> recommended to put the following directories in an
+LVM2 partition: <path>/etc</path>, <path>/lib</path>, <path>/mnt</path>,
+<path>/proc</path>, <path>/sbin</path>, <path>/dev</path>, and
+<path>/root</path>. This way, you would still be able to log into your system
+(crippled, but still somewhat usable, as root) if something goes terribly wrong.
 </note>
 
 <p>



-- 
gentoo-doc-cvs@lists.gentoo.org mailing list



^ permalink raw reply	[flat|nested] 9+ messages in thread
* [gentoo-doc-cvs] cvs commit: lvm2.xml
@ 2007-11-03 21:14 Josh Saddler
  0 siblings, 0 replies; 9+ messages in thread
From: Josh Saddler @ 2007-11-03 21:14 UTC (permalink / raw
  To: gentoo-doc-cvs

nightmorph    07/11/03 21:14:55

  Modified:             lvm2.xml
  Log:
  removed old warning

Revision  Changes    Path
1.23                 xml/htdocs/doc/en/lvm2.xml

file : http://sources.gentoo.org/viewcvs.py/gentoo/xml/htdocs/doc/en/lvm2.xml?rev=1.23&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo/xml/htdocs/doc/en/lvm2.xml?rev=1.23&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo/xml/htdocs/doc/en/lvm2.xml?r1=1.22&r2=1.23

Index: lvm2.xml
===================================================================
RCS file: /var/cvsroot/gentoo/xml/htdocs/doc/en/lvm2.xml,v
retrieving revision 1.22
retrieving revision 1.23
diff -u -r1.22 -r1.23
--- lvm2.xml	26 Feb 2007 08:58:04 -0000	1.22
+++ lvm2.xml	3 Nov 2007 21:14:55 -0000	1.23
@@ -1,5 +1,5 @@
 <?xml version='1.0' encoding="UTF-8"?>
-<!-- $Header: /var/cvsroot/gentoo/xml/htdocs/doc/en/lvm2.xml,v 1.22 2007/02/26 08:58:04 nightmorph Exp $ -->
+<!-- $Header: /var/cvsroot/gentoo/xml/htdocs/doc/en/lvm2.xml,v 1.23 2007/11/03 21:14:55 nightmorph Exp $ -->
 <!DOCTYPE guide SYSTEM "/dtd/guide.dtd">
 
 <guide link="/doc/en/lvm2.xml">
@@ -24,8 +24,8 @@
 <!-- See http://creativecommons.org/licenses/by-sa/2.5 -->
 <license/>
 
-<version>2.5</version>
-<date>2007-02-26</date>
+<version>2.6</version>
+<date>2007-11-03</date>
 
 <chapter>
 <title>Introduction</title>
@@ -76,13 +76,6 @@
 Not all 2.4 kernels provided by Gentoo support LVM2!
 </p>
 
-<warn>
-The LVM2 available on the 2005.0 installation CDs is erroneously linked
-dynamically against a library (libgpm) which resides in /usr. This means you 
-cannot have your /usr in an LVM environment as well. Either install the latest
-version or version 2.0.33 (not -r1) which are built statically.
-</warn>
-
 </body>
 </section>
 <section>



-- 
gentoo-doc-cvs@gentoo.org mailing list



^ permalink raw reply	[flat|nested] 9+ messages in thread
* [gentoo-doc-cvs] cvs commit: lvm2.xml
@ 2006-04-19 21:39 Shyam Mani
  0 siblings, 0 replies; 9+ messages in thread
From: Shyam Mani @ 2006-04-19 21:39 UTC (permalink / raw
  To: gentoo-doc-cvs

fox2mike    06/04/19 21:39:22

  Modified:             lvm2.xml
  Log:
  GuideXML fixes. Replaced wrong usage of <c> with <e>. Thanks to Jan Hendrik Grahl [hope I got his name right ;)] <grahl@gentoo.org> for reporting

Revision  Changes    Path
1.20                 xml/htdocs/doc/en/lvm2.xml

file : http://www.gentoo.org/cgi-bin/viewcvs.cgi/xml/htdocs/doc/en/lvm2.xml?rev=1.20&content-type=text/x-cvsweb-markup&cvsroot=gentoo
plain: http://www.gentoo.org/cgi-bin/viewcvs.cgi/xml/htdocs/doc/en/lvm2.xml?rev=1.20&content-type=text/plain&cvsroot=gentoo
diff : http://www.gentoo.org/cgi-bin/viewcvs.cgi/xml/htdocs/doc/en/lvm2.xml.diff?r1=1.19&r2=1.20&cvsroot=gentoo

Index: lvm2.xml
===================================================================
RCS file: /var/cvsroot/gentoo/xml/htdocs/doc/en/lvm2.xml,v
retrieving revision 1.19
retrieving revision 1.20
diff -u -r1.19 -r1.20
--- lvm2.xml	17 Feb 2006 02:53:19 -0000	1.19
+++ lvm2.xml	19 Apr 2006 21:39:22 -0000	1.20
@@ -1,5 +1,5 @@
 <?xml version='1.0' encoding="UTF-8"?>
-<!-- $Header: /var/cvsroot/gentoo/xml/htdocs/doc/en/lvm2.xml,v 1.19 2006/02/17 02:53:19 rane Exp $ -->
+<!-- $Header: /var/cvsroot/gentoo/xml/htdocs/doc/en/lvm2.xml,v 1.20 2006/04/19 21:39:22 fox2mike Exp $ -->
 <!DOCTYPE guide SYSTEM "/dtd/guide.dtd">
 
 <guide link="/doc/en/lvm2.xml">
@@ -24,8 +24,8 @@
 <!-- See http://creativecommons.org/licenses/by-sa/2.5 -->
 <license/>
 
-<version>2.2</version>
-<date>2006-02-06</date>
+<version>2.3</version>
+<date>2006-04-20</date>
 
 <chapter>
 <title>Introduction</title>
@@ -42,7 +42,7 @@
 This document is not intended to be an LVM2 tutorial.  It serves as a
 supplement to the Gentoo installation procedure as described in the <uri
 link="/doc/en/handbook/handbook-x86.xml?part=1">Handbook, Part 1</uri>. Make
-sure you <c>read</c> the Gentoo Installation Manual <c>before</c> you start
+sure you <e>read</e> the Gentoo Installation Manual <e>before</e> you start
 your installation process.
 </warn>
 
@@ -123,8 +123,8 @@
 <body>
 
 <p>
-Follow the handbook, but with the following amendments to chapter <c>4. 
-Preparing the Disks</c>:
+Follow the handbook, but with the following amendments to chapter <e>4. 
+Preparing the Disks</e>:
 </p>
 
 <p>



-- 
gentoo-doc-cvs@gentoo.org mailing list



^ permalink raw reply	[flat|nested] 9+ messages in thread
* [gentoo-doc-cvs] cvs commit: lvm2.xml
@ 2006-02-17  2:53 Lukasz Damentko
  0 siblings, 0 replies; 9+ messages in thread
From: Lukasz Damentko @ 2006-02-17  2:53 UTC (permalink / raw
  To: gentoo-doc-cvs

rane        06/02/17 02:53:19

  Modified:    xml/htdocs/doc/en lvm2.xml
  Log:
  fixed typo, no content change

Revision  Changes    Path
1.19      +2 -2      xml/htdocs/doc/en/lvm2.xml

file : http://www.gentoo.org/cgi-bin/viewcvs.cgi/xml/htdocs/doc/en/lvm2.xml?rev=1.19&content-type=text/x-cvsweb-markup&cvsroot=gentoo
plain: http://www.gentoo.org/cgi-bin/viewcvs.cgi/xml/htdocs/doc/en/lvm2.xml?rev=1.19&content-type=text/plain&cvsroot=gentoo
diff : http://www.gentoo.org/cgi-bin/viewcvs.cgi/xml/htdocs/doc/en/lvm2.xml.diff?r1=1.18&r2=1.19&cvsroot=gentoo

Index: lvm2.xml
===================================================================
RCS file: /var/cvsroot/gentoo/xml/htdocs/doc/en/lvm2.xml,v
retrieving revision 1.18
retrieving revision 1.19
diff -u -r1.18 -r1.19
--- lvm2.xml	6 Feb 2006 17:12:08 -0000	1.18
+++ lvm2.xml	17 Feb 2006 02:53:19 -0000	1.19
@@ -1,5 +1,5 @@
 <?xml version='1.0' encoding="UTF-8"?>
-<!-- $Header: /var/cvsroot/gentoo/xml/htdocs/doc/en/lvm2.xml,v 1.18 2006/02/06 17:12:08 neysx Exp $ -->
+<!-- $Header: /var/cvsroot/gentoo/xml/htdocs/doc/en/lvm2.xml,v 1.19 2006/02/17 02:53:19 rane Exp $ -->
 <!DOCTYPE guide SYSTEM "/dtd/guide.dtd">
 
 <guide link="/doc/en/lvm2.xml">
@@ -196,7 +196,7 @@
 Before scanning and activating LVM, you might want to edit
 <path>/etc/lvm/lvm.conf</path> to exclude some devices. By default, LVM2 will
 scan all devices, even your CDROM which can generate error messages. In the
-following exemple, the line that allows scanning of all devices is replaced by
+following example, the line that allows scanning of all devices is replaced by
 one that rejects every device but our two IDE disks.
 </p>
 



-- 
gentoo-doc-cvs@gentoo.org mailing list



^ permalink raw reply	[flat|nested] 9+ messages in thread
* [gentoo-doc-cvs] cvs commit: lvm2.xml
@ 2006-02-06 17:12 Xavier Neys
  0 siblings, 0 replies; 9+ messages in thread
From: Xavier Neys @ 2006-02-06 17:12 UTC (permalink / raw
  To: gentoo-doc-cvs

neysx       06/02/06 17:12:08

  Modified:    xml/htdocs/doc/en lvm2.xml
  Log:
  #121615 Fixed lvm2 fstab example

Revision  Changes    Path
1.18      +10 -10    xml/htdocs/doc/en/lvm2.xml

file : http://www.gentoo.org/cgi-bin/viewcvs.cgi/xml/htdocs/doc/en/lvm2.xml?rev=1.18&content-type=text/x-cvsweb-markup&cvsroot=gentoo
plain: http://www.gentoo.org/cgi-bin/viewcvs.cgi/xml/htdocs/doc/en/lvm2.xml?rev=1.18&content-type=text/plain&cvsroot=gentoo
diff : http://www.gentoo.org/cgi-bin/viewcvs.cgi/xml/htdocs/doc/en/lvm2.xml.diff?r1=1.17&r2=1.18&cvsroot=gentoo

Index: lvm2.xml
===================================================================
RCS file: /var/cvsroot/gentoo/xml/htdocs/doc/en/lvm2.xml,v
retrieving revision 1.17
retrieving revision 1.18
diff -u -r1.17 -r1.18
--- lvm2.xml	20 Jan 2006 11:42:43 -0000	1.17
+++ lvm2.xml	6 Feb 2006 17:12:08 -0000	1.18
@@ -1,5 +1,5 @@
 <?xml version='1.0' encoding="UTF-8"?>
-<!-- $Header: /var/cvsroot/gentoo/xml/htdocs/doc/en/lvm2.xml,v 1.17 2006/01/20 11:42:43 neysx Exp $ -->
+<!-- $Header: /var/cvsroot/gentoo/xml/htdocs/doc/en/lvm2.xml,v 1.18 2006/02/06 17:12:08 neysx Exp $ -->
 <!DOCTYPE guide SYSTEM "/dtd/guide.dtd">
 
 <guide link="/doc/en/lvm2.xml">
@@ -24,8 +24,8 @@
 <!-- See http://creativecommons.org/licenses/by-sa/2.5 -->
 <license/>
 
-<version>2.1</version>
-<date>2006-01-20</date>
+<version>2.2</version>
+<date>2006-02-06</date>
 
 <chapter>
 <title>Introduction</title>
@@ -415,15 +415,15 @@
 </p>
 
 <pre caption="Extract of /etc/fstab">
-/dev/hda1     /boot   ext3    noauto,noatime 1 1
+/dev/hda1     /boot   ext3    noauto,noatime 1 2
 /dev/hda2     none    swap    sw             0 0
-/dev/hda3     /       ext3    noatime        0 0
+/dev/hda3     /       ext3    noatime        0 1
 # Logical volumes
-/dev/vg/usr   /usr    ext3    noatime        0 0
-/dev/vg/home  /home   ext3    noatime        0 0
-/dev/vg/opt   /opt    ext3    noatime        0 0
-/dev/vg/var   /var    ext3    noatime        0 0
-/dev/vg/tmp   /tmp    ext3    noatime        0 0
+/dev/vg/usr   /usr    ext3    noatime        0 2
+/dev/vg/home  /home   ext3    noatime        0 2
+/dev/vg/opt   /opt    ext3    noatime        0 2
+/dev/vg/var   /var    ext3    noatime        0 2
+/dev/vg/tmp   /tmp    ext3    noatime        0 2
 </pre>
 
 <p>



-- 
gentoo-doc-cvs@gentoo.org mailing list



^ permalink raw reply	[flat|nested] 9+ messages in thread
* [gentoo-doc-cvs] cvs commit: lvm2.xml
@ 2005-10-03 22:49 Lukasz Damentko
  0 siblings, 0 replies; 9+ messages in thread
From: Lukasz Damentko @ 2005-10-03 22:49 UTC (permalink / raw
  To: gentoo-doc-cvs

rane        05/10/03 22:49:15

  Modified:    xml/htdocs/doc/en lvm2.xml
  Log:
  LiveCD -> Installation CD, fixed link to install cds at mirrors and link to mirrors page

Revision  Changes    Path
1.16      +8 -5      xml/htdocs/doc/en/lvm2.xml

file : http://www.gentoo.org/cgi-bin/viewcvs.cgi/xml/htdocs/doc/en/lvm2.xml?rev=1.16&content-type=text/x-cvsweb-markup&cvsroot=gentoo
plain: http://www.gentoo.org/cgi-bin/viewcvs.cgi/xml/htdocs/doc/en/lvm2.xml?rev=1.16&content-type=text/plain&cvsroot=gentoo
diff : http://www.gentoo.org/cgi-bin/viewcvs.cgi/xml/htdocs/doc/en/lvm2.xml.diff?r1=1.15&r2=1.16&cvsroot=gentoo

Index: lvm2.xml
===================================================================
RCS file: /var/cvsroot/gentoo/xml/htdocs/doc/en/lvm2.xml,v
retrieving revision 1.15
retrieving revision 1.16
diff -u -r1.15 -r1.16
--- lvm2.xml	23 Sep 2005 13:57:32 -0000	1.15
+++ lvm2.xml	3 Oct 2005 22:49:15 -0000	1.16
@@ -1,9 +1,10 @@
 <?xml version='1.0' encoding="UTF-8"?>
-<!-- $Header: /var/cvsroot/gentoo/xml/htdocs/doc/en/lvm2.xml,v 1.15 2005/09/23 13:57:32 neysx Exp $ -->
+<!-- $Header: /var/cvsroot/gentoo/xml/htdocs/doc/en/lvm2.xml,v 1.16 2005/10/03 22:49:15 rane Exp $ -->
 <!DOCTYPE guide SYSTEM "/dtd/guide.dtd">
 
 <guide link = "/doc/en/lvm2.xml">
 <title>Gentoo LVM2 installation</title>
+
 <author title="Author">
   <mail link="avi@CFFtechnologies.com">Avi Schwartz</mail>
 </author>
@@ -19,9 +20,11 @@
 Manager version 2 (LVM2).
 </abstract>
 
+<!-- The content of this document is licensed under the CC-BY-SA license -->
+<!-- See http://creativecommons.org/licenses/by-sa/2.5 -->
 <license/>
 
-<version>2.0.10</version>
+<version>2.0.11</version>
 <date>2005-08-17</date>
 
 <chapter>
@@ -56,10 +59,10 @@
 
 <p>
 If you do a fresh install of Gentoo, you will need to use a bootable CD with
-LVM2 support such as a Gentoo LiveCD. You can find the LiveCD for an x86
+LVM2 support such as a Gentoo Installation CD. You can find the Installation CDs for an x86
 architecture on our <uri
-link="http://www.gentoo.org/main/en/mirrors.xml">mirrors</uri> under
-<path>/releases/x86/2004.3/livecd</path>. Other architectures might
+link="/main/en/mirrors.xml">mirrors</uri> under
+<path>/releases/x86/2005.1/installcd</path>. Other architectures might
 be supported as well.
 </p>
 



-- 
gentoo-doc-cvs@gentoo.org mailing list



^ permalink raw reply	[flat|nested] 9+ messages in thread
* [gentoo-doc-cvs] cvs commit: lvm2.xml
@ 2005-09-23 13:57 Xavier Neys
  0 siblings, 0 replies; 9+ messages in thread
From: Xavier Neys @ 2005-09-23 13:57 UTC (permalink / raw
  To: gentoo-doc-cvs

neysx       05/09/23 13:57:32

  Modified:    xml/htdocs/doc/en lvm2.xml
  Log:
  Getting rid of useless part=0 and/or chap=0 in links

Revision  Changes    Path
1.15      +4 -4      xml/htdocs/doc/en/lvm2.xml

file : http://www.gentoo.org/cgi-bin/viewcvs.cgi/xml/htdocs/doc/en/lvm2.xml?rev=1.15&content-type=text/x-cvsweb-markup&cvsroot=gentoo
plain: http://www.gentoo.org/cgi-bin/viewcvs.cgi/xml/htdocs/doc/en/lvm2.xml?rev=1.15&content-type=text/plain&cvsroot=gentoo
diff : http://www.gentoo.org/cgi-bin/viewcvs.cgi/xml/htdocs/doc/en/lvm2.xml.diff?r1=1.14&r2=1.15&cvsroot=gentoo

Index: lvm2.xml
===================================================================
RCS file: /var/cvsroot/gentoo/xml/htdocs/doc/en/lvm2.xml,v
retrieving revision 1.14
retrieving revision 1.15
diff -u -r1.14 -r1.15
--- lvm2.xml	16 Aug 2005 22:30:19 -0000	1.14
+++ lvm2.xml	23 Sep 2005 13:57:32 -0000	1.15
@@ -1,5 +1,5 @@
 <?xml version='1.0' encoding="UTF-8"?>
-<!-- $Header: /var/cvsroot/gentoo/xml/htdocs/doc/en/lvm2.xml,v 1.14 2005/08/16 22:30:19 neysx Exp $ -->
+<!-- $Header: /var/cvsroot/gentoo/xml/htdocs/doc/en/lvm2.xml,v 1.15 2005/09/23 13:57:32 neysx Exp $ -->
 <!DOCTYPE guide SYSTEM "/dtd/guide.dtd">
 
 <guide link = "/doc/en/lvm2.xml">
@@ -38,9 +38,9 @@
 <warn>
 This document is not intended to be an LVM2 tutorial.  It serves as a
 supplement to the Gentoo installation procedure as described in the <uri
-link="/doc/en/handbook/handbook-x86.xml?part=1&amp;chap=0">Handbook, Part 
-1</uri>. Make sure you <c>read</c> the Gentoo Installation Manual 
-<c>before</c> you start your installation process.
+link="/doc/en/handbook/handbook-x86.xml?part=1">Handbook, Part 1</uri>. Make
+sure you <c>read</c> the Gentoo Installation Manual <c>before</c> you start
+your installation process.
 </warn>
 
 <note>



-- 
gentoo-doc-cvs@gentoo.org mailing list



^ permalink raw reply	[flat|nested] 9+ messages in thread
* [gentoo-doc-cvs] cvs commit: lvm2.xml
@ 2005-08-16 22:30 Xavier Neys
  0 siblings, 0 replies; 9+ messages in thread
From: Xavier Neys @ 2005-08-16 22:30 UTC (permalink / raw
  To: gentoo-doc-cvs

neysx       05/08/16 22:30:19

  Modified:    xml/htdocs/doc/en lvm2.xml
  Log:
  #102294 Use 1GB for the root partition to leave some space for kernel modules under /lib

Revision  Changes    Path
1.14      +7 -7      xml/htdocs/doc/en/lvm2.xml

file : http://www.gentoo.org/cgi-bin/viewcvs.cgi/xml/htdocs/doc/en/lvm2.xml?rev=1.14&content-type=text/x-cvsweb-markup&cvsroot=gentoo
plain: http://www.gentoo.org/cgi-bin/viewcvs.cgi/xml/htdocs/doc/en/lvm2.xml?rev=1.14&content-type=text/plain&cvsroot=gentoo
diff : http://www.gentoo.org/cgi-bin/viewcvs.cgi/xml/htdocs/doc/en/lvm2.xml.diff?r1=1.13&r2=1.14&cvsroot=gentoo

Index: lvm2.xml
===================================================================
RCS file: /var/cvsroot/gentoo/xml/htdocs/doc/en/lvm2.xml,v
retrieving revision 1.13
retrieving revision 1.14
diff -u -r1.13 -r1.14
--- lvm2.xml	2 Jul 2005 10:54:44 -0000	1.13
+++ lvm2.xml	16 Aug 2005 22:30:19 -0000	1.14
@@ -1,5 +1,5 @@
 <?xml version='1.0' encoding="UTF-8"?>
-<!-- $Header: /var/cvsroot/gentoo/xml/htdocs/doc/en/lvm2.xml,v 1.13 2005/07/02 10:54:44 swift Exp $ -->
+<!-- $Header: /var/cvsroot/gentoo/xml/htdocs/doc/en/lvm2.xml,v 1.14 2005/08/16 22:30:19 neysx Exp $ -->
 <!DOCTYPE guide SYSTEM "/dtd/guide.dtd">
 
 <guide link = "/doc/en/lvm2.xml">
@@ -21,8 +21,8 @@
 
 <license/>
 
-<version>2.0.9</version>
-<date>2005-07-02</date>
+<version>2.0.10</version>
+<date>2005-08-17</date>
 
 <chapter>
 <title>Introduction</title>
@@ -147,12 +147,12 @@
 </pre>
 
 <p>
-Create a / (root) partition (hda3).  If you are interested in trying to put
-your root partition under LVM management (which we do not recommend), see the
+Create a / (root) partition (hda3). If you are interested in trying to put your
+root partition under LVM management (which we do not recommend), see the
 resources section at the end of this guide for a link to a mini-howto on how to
-do this. The size of the root partition need  not be large if you will keep
+do this. The size of the root partition need not be large if you will keep
 <path>/opt /usr /home /var</path> and <path>/tmp</path> in an LVM2 Volume Group
-(vg). In this case, 150M is sufficient.
+(vg). In this case, 1GB should be sufficient.
 </p>
 
 <note>



-- 
gentoo-doc-cvs@gentoo.org mailing list



^ permalink raw reply	[flat|nested] 9+ messages in thread

end of thread, other threads:[~2008-05-23 19:49 UTC | newest]

Thread overview: 9+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2006-01-20 11:42 [gentoo-doc-cvs] cvs commit: lvm2.xml Xavier Neys
  -- strict thread matches above, loose matches on Subject: below --
2008-05-23 19:49 Sven Vermeulen
2007-11-03 21:14 Josh Saddler
2006-04-19 21:39 Shyam Mani
2006-02-17  2:53 Lukasz Damentko
2006-02-06 17:12 Xavier Neys
2005-10-03 22:49 Lukasz Damentko
2005-09-23 13:57 Xavier Neys
2005-08-16 22:30 Xavier Neys

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox