svn commit: r41990 - head/en_US.ISO8859-1/books/handbook/disks

Warren Block wblock at FreeBSD.org
Thu Jun 20 20:34:03 UTC 2013


Author: wblock
Date: Thu Jun 20 20:34:02 2013
New Revision: 41990
URL: http://svnweb.freebsd.org/changeset/doc/41990

Log:
  Fix newfs and fstab entries to use the partition, not the whole disk.
  
  PR:		docs/179788
  Submitted by:	Zach Crum <crum.zach at gmail.com>

Modified:
  head/en_US.ISO8859-1/books/handbook/disks/chapter.xml

Modified: head/en_US.ISO8859-1/books/handbook/disks/chapter.xml
==============================================================================
--- head/en_US.ISO8859-1/books/handbook/disks/chapter.xml	Thu Jun 20 19:39:45 2013	(r41989)
+++ head/en_US.ISO8859-1/books/handbook/disks/chapter.xml	Thu Jun 20 20:34:02 2013	(r41990)
@@ -222,7 +222,7 @@
 
     <para>A file system is created on the new blank disk:</para>
 
-    <screen>&prompt.root; <userinput>newfs -U /dev/ada1</userinput></screen>
+    <screen>&prompt.root; <userinput>newfs -U /dev/ada1p1</userinput></screen>
 
     <para>An empty directory is created as a
       <emphasis>mountpoint</emphasis>, a location for mounting the new
@@ -234,7 +234,7 @@
       <filename>/etc/fstab</filename> so the new disk will be mounted
       automatically at startup:</para>
 
-    <programlisting>/dev/ada1	/newdisk	ufs	rw	2	2</programlisting>
+    <programlisting>/dev/ada1p1	/newdisk	ufs	rw	2	2</programlisting>
 
     <para>The new disk can be mounted manually, without restarting the
       system:</para>


More information about the svn-doc-head mailing list