svn commit: r49983 - head/en_US.ISO8859-1/books/handbook/virtualization

Benedict Reuschling bcr at FreeBSD.org
Mon Feb 13 18:46:56 UTC 2017


Author: bcr
Date: Mon Feb 13 18:46:54 2017
New Revision: 49983
URL: https://svnweb.freebsd.org/changeset/doc/49983

Log:
  Make the tap device name the same across all the examples to
  not confuse people.  Of course, when doing these examples from
  top to bottom, the FreeBSD bhyve VM will use tap0, the next
  tap1, etc., but people might not want to stick to that.
  Besides, the tap device definition is enclosed in replaceable
  tags, so that people know that they need to put their local
  device names there and not just copy-and-paste examples without
  thinking about them.
  
  Submitted by:		rodrigo
  Differential Revision:	https://reviews.freebsd.org/D9560

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

Modified: head/en_US.ISO8859-1/books/handbook/virtualization/chapter.xml
==============================================================================
--- head/en_US.ISO8859-1/books/handbook/virtualization/chapter.xml	Mon Feb 13 07:45:45 2017	(r49982)
+++ head/en_US.ISO8859-1/books/handbook/virtualization/chapter.xml	Mon Feb 13 18:46:54 2017	(r49983)
@@ -1135,7 +1135,7 @@ grub> <userinput>boot</userinput></scree
       <para>Now that the &linux; kernel is loaded, the guest can be
 	started:</para>
 
-      <screen>&prompt.root; <userinput>bhyve -A -H -P -s 0:0,hostbridge -s 1:0,lpc -s 2:0,virtio-net,<replaceable>tap1</replaceable> -s 3:0,virtio-blk,<replaceable>./linux.img</replaceable> \
+      <screen>&prompt.root; <userinput>bhyve -A -H -P -s 0:0,hostbridge -s 1:0,lpc -s 2:0,virtio-net,<replaceable>tap0</replaceable> -s 3:0,virtio-blk,<replaceable>./linux.img</replaceable> \
     -s 4:0,ahci-cd,<replaceable>./somelinux.iso</replaceable> -l com1,stdio -c <replaceable>4</replaceable> -m <replaceable>1024M</replaceable> <replaceable>linuxguest</replaceable></userinput></screen>
 
       <para>The system will boot and start the installer.  After
@@ -1163,7 +1163,7 @@ grub> <userinput>boot</userinput></scree
 
       <para>Boot the virtual machine:</para>
 
-      <screen>&prompt.root; <userinput>bhyve -A -H -P -s 0:0,hostbridge -s 1:0,lpc -s 2:0,virtio-net,<replaceable>tap1</replaceable> \
+      <screen>&prompt.root; <userinput>bhyve -A -H -P -s 0:0,hostbridge -s 1:0,lpc -s 2:0,virtio-net,<replaceable>tap0</replaceable> \
     -s 3:0,virtio-blk,<replaceable>./linux.img</replaceable> -l com1,stdio -c <replaceable>4</replaceable> -m <replaceable>1024M</replaceable> <replaceable>linuxguest</replaceable></userinput></screen>
 
       <para>&linux; will now boot in the virtual machine and
@@ -1190,7 +1190,7 @@ grub> <userinput>boot</userinput></scree
       <para>When starting the <acronym>VM</acronym>, specify the
 	<acronym>ZFS</acronym> volume as the disk drive:</para>
 
-      <screen>&prompt.root; <userinput>bhyve -A -H -P -s 0:0,hostbridge -s 1:0,lpc -s 2:0,virtio-net,<replaceable>tap1</replaceable> -s3:0,virtio-blk,<replaceable>/dev/zvol/zroot/linuxdisk0</replaceable> \
+      <screen>&prompt.root; <userinput>bhyve -A -H -P -s 0:0,hostbridge -s 1:0,lpc -s 2:0,virtio-net,<replaceable>tap0</replaceable> -s3:0,virtio-blk,<replaceable>/dev/zvol/zroot/linuxdisk0</replaceable> \
     -l com1,<replaceable>stdio</replaceable> -c <replaceable>4</replaceable> -m <replaceable>1024M</replaceable> <replaceable>linuxguest</replaceable></userinput></screen>
     </sect2>
 
@@ -1215,7 +1215,7 @@ grub> <userinput>boot</userinput></scree
 	information.</para>
 
       <screen>&prompt.root; <userinput>kldload nmdm</userinput>
-&prompt.root; <userinput>bhyve -A -H -P -s 0:0,hostbridge -s 1:0,lpc -s 2:0,virtio-net,<replaceable>tap1</replaceable> -s 3:0,virtio-blk,<replaceable>./linux.img</replaceable> \
+&prompt.root; <userinput>bhyve -A -H -P -s 0:0,hostbridge -s 1:0,lpc -s 2:0,virtio-net,<replaceable>tap0</replaceable> -s 3:0,virtio-blk,<replaceable>./linux.img</replaceable> \
     -l com1,<replaceable>/dev/nmdm0A</replaceable> -c <replaceable>4</replaceable> -m <replaceable>1024M</replaceable> <replaceable>linuxguest</replaceable></userinput>
 &prompt.root; <userinput>cu -l <replaceable>/dev/nmdm0B</replaceable></userinput>
 Connected


More information about the svn-doc-all mailing list