[Pkg-uml-commit] r46 - trunk/src/uml-utilities/debian

Mattia Dongili malattia at costa.debian.org
Sat Apr 8 19:55:01 UTC 2006


Author: malattia
Date: 2006-04-08 19:55:00 +0000 (Sat, 08 Apr 2006)
New Revision: 46

Added:
   trunk/src/uml-utilities/debian/tunctl.sgml
   trunk/src/uml-utilities/debian/uml_mconsole.sgml
   trunk/src/uml-utilities/debian/uml_moo.sgml
   trunk/src/uml-utilities/debian/uml_switch.sgml
Log:
moved manpages to an easier to maintain location

Added: trunk/src/uml-utilities/debian/tunctl.sgml
===================================================================
--- trunk/src/uml-utilities/debian/tunctl.sgml	2006-04-08 11:03:31 UTC (rev 45)
+++ trunk/src/uml-utilities/debian/tunctl.sgml	2006-04-08 19:55:00 UTC (rev 46)
@@ -0,0 +1,164 @@
+<!doctype refentry PUBLIC "-//OASIS//DTD DocBook V4.1//EN" [
+
+<!-- Process this file with docbook-to-man to generate an nroff manual
+     page: `docbook-to-man manpage.sgml > manpage.1'.  You may view
+     the manual page with: `docbook-to-man manpage.sgml | nroff -man |
+     less'.  A typical entry in a Makefile or Makefile.am is:
+
+manpage.1: manpage.sgml
+	docbook-to-man $< > $@
+  -->
+
+  <!-- Fill in your name for FIRSTNAME and SURNAME. -->
+  <!ENTITY dhfirstname "<firstname>Matt</firstname>">
+  <!ENTITY dhsurname   "<surname>Zimmerman</surname>">
+  <!-- Please adjust the date whenever revising the manpage. -->
+  <!ENTITY dhdate      "<date>February 12, 2002</date>">
+  <!-- SECTION should be 1-8, maybe w/ subsection other parameters are
+       allowed: see man(7), man(1). -->
+  <!ENTITY dhsection   "<manvolnum>8</manvolnum>">
+  <!ENTITY dhemail     "<email>mdz at debian.org</email>">
+  <!ENTITY dhusername  "Matt Zimmerman">
+  <!ENTITY dhucpackage "<refentrytitle>TUNCTL</refentrytitle>">
+  <!ENTITY dhpackage   "tunctl">
+
+  <!ENTITY debian      "<productname>Debian GNU/Linux</productname>">
+  <!ENTITY gnu         "<acronym>GNU</acronym>">
+]>
+
+<refentry>
+  <refentryinfo>
+    <address>
+      &dhemail;
+    </address>
+    <author>
+      &dhfirstname;
+      &dhsurname;
+    </author>
+    <copyright>
+      <year>2001</year>
+      <holder>&dhusername;</holder>
+    </copyright>
+    &dhdate;
+  </refentryinfo>
+  <refmeta>
+    &dhucpackage;
+
+    &dhsection;
+  </refmeta>
+  <refnamediv>
+    <refname>&dhpackage;</refname>
+
+    <refpurpose>create and manage persistent TUN/TAP interfaces</refpurpose>
+  </refnamediv>
+  <refsynopsisdiv>
+    <cmdsynopsis>
+      
+      <command>&dhpackage;</command>
+
+      <arg choice=opt><option>-f</option> <replaceable>tun-clone-device</replaceable></arg>
+
+      <arg><option>-u</option> <replaceable>owner</replaceable></arg>
+      <arg><option>-t</option> <replaceable>device-name</replaceable></arg>
+
+    </cmdsynopsis>
+
+    <cmdsynopsis>
+      <command>&dhpackage;</command>
+
+      <arg choice=opt><option>-f</option> <replaceable>tun-clone-device</replaceable></arg>
+      <arg choice=req><option>-d</option> <replaceable>device-name</replaceable></arg>
+    </cmdsynopsis>
+
+  </refsynopsisdiv>
+  <refsect1>
+    <title>DESCRIPTION</title>
+
+    <para>This manual page documents briefly the
+      <command>&dhpackage;</command> command.</para>
+
+    <para>This manual page was written for the &debian; distribution
+      because the original program does not have a manual page.
+      Instead, it has documentation in HTML format; see below.</para>
+
+    <para><command>&dhpackage;</command> allows the host sysadmin to
+    preconfigure a TUN/TAP device for use by a particular user.  That
+    user may open and use the device, but may not change any aspects
+    of the host side of the interface.</para>
+
+  </refsect1>
+
+  <refsect1>
+    <title>USAGE</title>
+
+    <para>To create an interface for use by a particular user, invoke
+    tunctl without the -d option:</para>
+
+    <informalexample>
+      <screen>
+        <prompt>#</prompt> <userinput>tunctl -u someuser</userinput>
+
+        Set 'tap0' persistent and owned by uid 500
+      </screen>
+    </informalexample>
+
+    <para>Then, configure the interface as normal:</para>
+
+    <informalexample>
+      <screen>
+        <prompt>#</prompt> <userinput>ifconfig tap0 192.168.0.254 up</userinput>
+
+        <prompt>#</prompt> <userinput>route add -host 192.168.0.253 dev tap0</userinput>
+
+        <prompt>#</prompt> <userinput>bash -c 'echo 1 > /proc/sys/net/ipv4/conf/tap0/proxy_arp'</userinput>
+
+        <prompt>#</prompt> <userinput>arp -Ds 192.168.0.253 eth0 pub</userinput>
+      </screen>
+    </informalexample>
+
+    <para>To delete the interface, use the -d option:</para>
+
+    <informalexample>
+      <screen>
+        <prompt>#</prompt> <userinput>tunctl -d tap0</userinput>
+
+        Set 'tap0' nonpersistent
+      </screen>
+    </informalexample>
+  </refsect1>
+
+  <refsect1>
+    <title>SEE ALSO</title>
+
+    <para>The <ulink
+    url="http://user-mode-linux.sourceforge.net/UserModeLinux-HOWTO.html"
+    type=alternate>UserModeLinux-HOWTO</ulink></para>
+  </refsect1>
+  <refsect1>
+    <title>AUTHOR</title>
+
+    <para>&dhpackage; was written by Jeff Dike
+    <email>jdike at karaya.com</email></para> 
+
+    <para>This manual page was written by &dhusername; &dhemail; for
+      the &debian; system, based on examples from Jeff Dike.</para>
+
+  </refsect1>
+</refentry>
+
+<!-- Keep this comment at the end of the file
+Local variables:
+mode: sgml
+sgml-omittag:t
+sgml-shorttag:t
+sgml-minimize-attributes:nil
+sgml-always-quote-attributes:t
+sgml-indent-step:2
+sgml-indent-data:t
+sgml-parent-document:nil
+sgml-default-dtd-file:nil
+sgml-exposed-tags:nil
+sgml-local-catalogs:nil
+sgml-local-ecat-files:nil
+End:
+-->

Added: trunk/src/uml-utilities/debian/uml_mconsole.sgml
===================================================================
--- trunk/src/uml-utilities/debian/uml_mconsole.sgml	2006-04-08 11:03:31 UTC (rev 45)
+++ trunk/src/uml-utilities/debian/uml_mconsole.sgml	2006-04-08 19:55:00 UTC (rev 46)
@@ -0,0 +1,284 @@
+<!doctype refentry PUBLIC "-//OASIS//DTD DocBook V4.1//EN" [
+
+<!-- Process this file with docbook-to-man to generate an nroff manual
+     page: `docbook-to-man manpage.sgml > manpage.1'.  You may view
+     the manual page with: `docbook-to-man manpage.sgml | nroff -man |
+     less'.  A typical entry in a Makefile or Makefile.am is:
+
+manpage.1: manpage.sgml
+	docbook-to-man $< > $@
+  -->
+
+  <!-- Fill in your name for FIRSTNAME and SURNAME. -->
+  <!ENTITY dhfirstname "<firstname>Matt</firstname>">
+  <!ENTITY dhsurname   "<surname>Zimmerman</surname>">
+  <!-- Please adjust the date whenever revising the manpage. -->
+  <!ENTITY dhdate      "<date>December  5, 2001</date>">
+  <!-- SECTION should be 1-8, maybe w/ subsection other parameters are
+       allowed: see man(7), man(1). -->
+  <!ENTITY dhsection   "<manvolnum>1</manvolnum>">
+  <!ENTITY dhemail     "<email>mdz at debian.org</email>">
+  <!ENTITY dhusername  "Matt Zimmerman">
+  <!ENTITY dhucpackage "<refentrytitle>UML_MCONSOLE</refentrytitle>">
+  <!ENTITY dhpackage   "uml_mconsole">
+
+  <!ENTITY debian      "<productname>Debian GNU/Linux</productname>">
+  <!ENTITY gnu         "<acronym>GNU</acronym>">
+]>
+
+<refentry>
+  <refentryinfo>
+    <address>
+      &dhemail;
+    </address>
+    <author>
+      &dhfirstname;
+      &dhsurname;
+    </author>
+    <copyright>
+      <year>2001</year>
+      <holder>&dhusername;</holder>
+    </copyright>
+    &dhdate;
+  </refentryinfo>
+  <refmeta>
+    &dhucpackage;
+
+    &dhsection;
+  </refmeta>
+  <refnamediv>
+    <refname>&dhpackage;</refname>
+
+    <refpurpose>attach to the management console of a user-mode Linux
+    kernel</refpurpose>
+  </refnamediv>
+  <refsynopsisdiv>
+    <cmdsynopsis>
+      <command>&dhpackage;</command>
+
+      <arg><replaceable>socket</replaceable></arg>
+
+      <arg choice=opt rep=repeat><replaceable>command</replaceable></arg>
+
+    </cmdsynopsis>
+  </refsynopsisdiv>
+  <refsect1>
+    <title>DESCRIPTION</title>
+
+    <para>This manual page documents briefly the
+      <command>&dhpackage;</command> command.</para>
+
+    <para>This manual page was written for the &debian; distribution
+      because the original program does not have a manual page.</para>
+
+    <para><command>&dhpackage;</command> is a program to connect to
+    the management console of a user-mode Linux kernel.  The UML
+    management console is a low-level interface to the kernel,
+    somewhat like the i386 SysRq interface. Since there is a
+    full-blown operating system under UML, there is much greater
+    flexibility possible than with the SysRq mechanism.</para>
+
+  </refsect1>
+  <refsect1>
+    <title>OPTIONS</title>
+
+    <variablelist>
+      <varlistentry>
+        <term><replaceable>socket</replaceable></term>
+        <listitem>
+          <para>The pathname of the socket to which to connect.  This
+          is printed when UML boots, for example:
+          <screen>
+            mconsole initialized on /tmp/umlNJ32yL/mconsole
+          </screen>
+          </para>
+
+          <para>In this example, you would start uml_mconsole like
+          this:
+            <screen>
+              <userinput>uml_mconsole umlNJ32yL</userinput>
+            </screen>
+          </para>
+        </listitem>
+      </varlistentry>
+      <varlistentry>
+        <term><replaceable>command</replaceable></term>
+        <listitem>
+          <para>Any of the commands listed in the
+          &ldquo;COMMANDS&rdquo; section.</para>
+        </listitem>
+      </varlistentry>
+    </variablelist>
+  </refsect1>
+
+  <refsect1>
+    <title>COMMANDS</title>
+
+    <variablelist>
+      <varlistentry>
+        <term>version</term>
+        <listitem>
+          <para>Prints the UML version number.</para>
+        </listitem>
+      </varlistentry>
+    </variablelist>
+
+    <variablelist>
+      <varlistentry>
+        <term>halt</term>
+        <listitem>
+          <para>Shuts down the UML system immediately, without syncing
+          disks or cleanly shutting down swap space.</para>
+        </listitem>
+      </varlistentry>
+    </variablelist>
+
+    <variablelist>
+      <varlistentry>
+        <term>reboot</term>
+        <listitem>
+          <para>Reboots the UML system immediately, without syncing
+          disks or cleanly shutting down swap space.</para>
+        </listitem>
+      </varlistentry>
+    </variablelist>
+
+    <variablelist>
+      <varlistentry>
+        <term>log <replaceable>string</replaceable></term>
+        <listitem>
+          <para>Cause UML to log <replaceable>string</replaceable> to
+          the kernel log.</para>
+        </listitem>
+      </varlistentry>
+    </variablelist>
+
+    <variablelist>
+      <varlistentry>
+        <term>cad</term>
+        <listitem>
+          <para>Invokes the Control-Alt-Delete handler.</para>
+        </listitem>
+      </varlistentry>
+    </variablelist>
+
+    <variablelist>
+      <varlistentry>
+        <term>sysrq <replaceable>letter</replaceable></term>
+        <listitem>
+          <para>Performs the SysRq action controlled by
+          <replaceable>letter</replaceable>.</para>
+        </listitem>
+      </varlistentry>
+    </variablelist>
+
+    <variablelist>
+      <varlistentry>
+        <term>stop</term>
+        <listitem>
+          <para>Pauses UML.  UML will do nothing until the 'go'
+          command is issued.</para>
+        </listitem>
+      </varlistentry>
+    </variablelist>
+
+    <variablelist>
+      <varlistentry>
+        <term>go</term>
+        <listitem>
+          <para>Resumes execution after a 'stop' command.</para>
+        </listitem>
+      </varlistentry>
+    </variablelist>
+
+    <variablelist>
+      <varlistentry>
+        <term>config <option><replaceable>device</replaceable></option></term>
+        <listitem>
+          <para>Adds a new device to the virtual machine, or queries
+          the configuration of an existing device.  It takes one
+          argument, which is either the device to add, with the same
+          syntax as the kernel command line, or the name of an
+          existing device.  For example:</para>
+
+            <informalexample>
+              <screen>
+<prompt>(mconsole)</prompt> <userinput>config ubd3=root_fs_debian22</userinput>
+
+OK
+              </screen>
+            </informalexample>
+
+            <informalexample>
+              <screen>
+<prompt>(mconsole)</prompt> <userinput>config ubd3</userinput>
+
+OK root_fs_debian22
+              </screen>
+            </informalexample>
+
+        </listitem>
+      </varlistentry>
+    </variablelist>
+
+    <variablelist>
+      <varlistentry>
+        <term>remove</term>
+        <listitem>
+          <para>Deletes a device from the virtual machine.  Its
+          argument is the name of the device to be removed.  In the
+          case of the ubd driver, the removed block device must not be
+          mounted, swapped on, or otherwise open, and in the case of
+          the network driver, the device must be down.</para>
+
+          <informalexample>
+            <screen>
+<prompt>(mconsole)</prompt> <userinput>remove ubd3</userinput>
+
+OK
+              </screen>
+          </informalexample>
+        </listitem>
+      </varlistentry>
+    </variablelist>
+
+  </refsect1>
+  
+  <refsect1>
+    <title>SEE ALSO</title>
+
+    <para>linux(1)</para>
+
+    <para>The <ulink
+    url="http://user-mode-linux.sourceforge.net/UserModeLinux-HOWTO.html"
+    type=alternate>UserModeLinux-HOWTO</ulink></para>
+  </refsect1>
+  <refsect1>
+    <title>AUTHOR</title>
+
+    <para>&dhpackage; was written by Jeff Dike and others.</para>
+
+    <para>This manual page was written by &dhusername; &dhemail; for
+      the &debian; system, based on material in the
+      UserModeLinux-HOWTO by Rusty Russell, and the uml_mconsole
+      source code.</para>
+
+  </refsect1>
+</refentry>
+
+<!-- Keep this comment at the end of the file
+Local variables:
+mode: sgml
+sgml-omittag:t
+sgml-shorttag:t
+sgml-minimize-attributes:nil
+sgml-always-quote-attributes:t
+sgml-indent-step:2
+sgml-indent-data:t
+sgml-parent-document:nil
+sgml-default-dtd-file:nil
+sgml-exposed-tags:nil
+sgml-local-catalogs:nil
+sgml-local-ecat-files:nil
+End:
+-->

Added: trunk/src/uml-utilities/debian/uml_moo.sgml
===================================================================
--- trunk/src/uml-utilities/debian/uml_moo.sgml	2006-04-08 11:03:31 UTC (rev 45)
+++ trunk/src/uml-utilities/debian/uml_moo.sgml	2006-04-08 19:55:00 UTC (rev 46)
@@ -0,0 +1,115 @@
+<!doctype refentry PUBLIC "-//OASIS//DTD DocBook V4.1//EN" [
+
+<!-- Process this file with docbook-to-man to generate an nroff manual
+     page: `docbook-to-man manpage.sgml > manpage.1'.  You may view
+     the manual page with: `docbook-to-man manpage.sgml | nroff -man |
+     less'.  A typical entry in a Makefile or Makefile.am is:
+
+manpage.1: manpage.sgml
+	docbook-to-man $< > $@
+  -->
+
+  <!-- Fill in your name for FIRSTNAME and SURNAME. -->
+  <!ENTITY dhfirstname "<firstname>Matt</firstname>">
+  <!ENTITY dhsurname   "<surname>Zimmerman</surname>">
+  <!-- Please adjust the date whenever revising the manpage. -->
+  <!ENTITY dhdate      "<date>December  5, 2001</date>">
+  <!-- SECTION should be 1-8, maybe w/ subsection other parameters are
+       allowed: see man(7), man(1). -->
+  <!ENTITY dhsection   "<manvolnum>1</manvolnum>">
+  <!ENTITY dhemail     "<email>mdz at debian.org</email>">
+  <!ENTITY dhusername  "Matt Zimmerman">
+  <!ENTITY dhucpackage "<refentrytitle>UML_MOO</refentrytitle>">
+  <!ENTITY dhpackage   "uml_moo">
+
+  <!ENTITY debian      "<productname>Debian GNU/Linux</productname>">
+  <!ENTITY gnu         "<acronym>GNU</acronym>">
+]>
+
+<refentry>
+  <refentryinfo>
+    <address>
+      &dhemail;
+    </address>
+    <author>
+      &dhfirstname;
+      &dhsurname;
+    </author>
+    <copyright>
+      <year>2001</year>
+      <holder>&dhusername;</holder>
+    </copyright>
+    &dhdate;
+  </refentryinfo>
+  <refmeta>
+    &dhucpackage;
+
+    &dhsection;
+  </refmeta>
+  <refnamediv>
+    <refname>&dhpackage;</refname>
+
+    <refpurpose>merge a COW file with its backing file</refpurpose>
+  </refnamediv>
+  <refsynopsisdiv>
+    <cmdsynopsis>
+      <command>&dhpackage;</command>
+
+      <arg><replaceable>COW file</replaceable></arg>
+
+      <arg><replaceable>new_backing_file</replaceable></arg>
+    </cmdsynopsis>
+  </refsynopsisdiv>
+  <refsect1>
+    <title>DESCRIPTION</title>
+
+    <para>This manual page documents briefly the
+      <command>&dhpackage;</command> command.</para>
+
+    <para>This manual page was written for the &debian; distribution
+      because the original program does not have a manual page.
+      Instead, it has documentation in HTML format; see below.</para>
+
+    <para><command>&dhpackage;</command> is a program to merge a COW
+    (copy-on-write) file with its backing file, and write the result
+    to a new backing file.  This can be used periodically to update
+    the backing file with the changes made in the COW file.</para>
+
+  </refsect1>
+
+  <refsect1>
+    <title>SEE ALSO</title>
+
+    <para>The <ulink
+    url="http://user-mode-linux.sourceforge.net/UserModeLinux-HOWTO.html"
+    type=alternate>UserModeLinux-HOWTO</ulink></para>
+  </refsect1>
+  <refsect1>
+    <title>AUTHOR</title>
+
+    <para>&dhpackage; was written by RidgeRun,Inc
+    <email>glonnon at ridgerun.com</email></para>
+
+    <para>This manual page was written by &dhusername; &dhemail; for
+      the &debian; system, based on material in the
+      UserModeLinux-HOWTO by Rusty Russell.</para>
+
+  </refsect1>
+</refentry>
+
+<!-- Keep this comment at the end of the file
+Local variables:
+mode: sgml
+sgml-omittag:t
+sgml-shorttag:t
+sgml-minimize-attributes:nil
+sgml-always-quote-attributes:t
+sgml-indent-step:2
+sgml-indent-data:t
+sgml-parent-document:nil
+sgml-default-dtd-file:nil
+sgml-exposed-tags:nil
+sgml-local-catalogs:nil
+sgml-local-ecat-files:nil
+End:
+-->

Added: trunk/src/uml-utilities/debian/uml_switch.sgml
===================================================================
--- trunk/src/uml-utilities/debian/uml_switch.sgml	2006-04-08 11:03:31 UTC (rev 45)
+++ trunk/src/uml-utilities/debian/uml_switch.sgml	2006-04-08 19:55:00 UTC (rev 46)
@@ -0,0 +1,165 @@
+<!doctype refentry PUBLIC "-//OASIS//DTD DocBook V4.1//EN" [
+
+<!-- Process this file with docbook-to-man to generate an nroff manual
+     page: `docbook-to-man manpage.sgml > manpage.1'.  You may view
+     the manual page with: `docbook-to-man manpage.sgml | nroff -man |
+     less'.  A typical entry in a Makefile or Makefile.am is:
+
+manpage.1: manpage.sgml
+	docbook-to-man $< > $@
+  -->
+
+  <!-- Fill in your name for FIRSTNAME and SURNAME. -->
+  <!ENTITY dhfirstname "<firstname>Matt</firstname>">
+  <!ENTITY dhsurname   "<surname>Zimmerman</surname>">
+  <!-- Please adjust the date whenever revising the manpage. -->
+  <!ENTITY dhdate      "<date>December  5, 2001</date>">
+  <!-- SECTION should be 1-8, maybe w/ subsection other parameters are
+       allowed: see man(7), man(1). -->
+  <!ENTITY dhsection   "<manvolnum>1</manvolnum>">
+  <!ENTITY dhemail     "<email>mdz at debian.org</email>">
+  <!ENTITY dhusername  "Matt Zimmerman">
+  <!ENTITY dhucpackage "<refentrytitle>UML_SWITCH</refentrytitle>">
+  <!ENTITY dhpackage   "uml_switch">
+
+  <!ENTITY debian      "<productname>Debian GNU/Linux</productname>">
+  <!ENTITY gnu         "<acronym>GNU</acronym>">
+]>
+
+<refentry>
+  <refentryinfo>
+    <address>
+      &dhemail;
+    </address>
+    <author>
+      &dhfirstname;
+      &dhsurname;
+    </author>
+    <copyright>
+      <year>2001</year>
+      <holder>&dhusername;</holder>
+    </copyright>
+    &dhdate;
+  </refentryinfo>
+  <refmeta>
+    &dhucpackage;
+
+    &dhsection;
+  </refmeta>
+  <refnamediv>
+    <refname>&dhpackage;</refname>
+
+    <refpurpose>switch daemon for user-mode Linux</refpurpose>
+  </refnamediv>
+  <refsynopsisdiv>
+    <cmdsynopsis>
+      <command>&dhpackage;</command>
+      <arg><option>-unix</option> <replaceable>control_socket</replaceable> <replaceable>data_socket</replaceable></arg>
+      <arg><option>-hub</option></arg>
+      <arg><option>-tap <replaceable>tun device</replaceable></option></arg>
+      <arg><option>-compat-v0</option></arg>
+      <arg><option>-daemon</option></arg>
+    </cmdsynopsis>
+  </refsynopsisdiv>
+  <refsect1>
+    <title>DESCRIPTION</title>
+
+    <para>This manual page documents briefly the
+      <command>&dhpackage;</command> program.</para>
+
+    <para>This manual page was written for the &debian; distribution
+      because the original program does not have a manual page.</para>
+
+    <para><command>&dhpackage;</command> is a daemon for managing a
+    virtual network between user-mode Linux systems, with no
+    connection to the host system's network.</para>
+
+    <para>It will listen for connections on a pair of UNIX domain
+    sockets, and forward packets between clients which connect to
+    them.</para>
+
+  </refsect1>
+  <refsect1>
+    <title>OPTIONS</title>
+
+    <variablelist>
+      <varlistentry>
+        <term><option>-unix <replaceable>control_socket</replaceable> <replaceable>data_socket</replaceable>
+          </option></term>
+        <listitem>
+          <para>Listen on the specified pair of sockets, instead of
+          the defaults.</para>
+        </listitem>
+      </varlistentry>
+      <varlistentry>
+        <term><option>-hub</option></term>
+        <listitem>
+          <para>Act like a hub.  This means that packets received will
+          be broadcast over all virtual links.  The default is to act
+          as a switch, where packets are only sent to the link
+          matching the destination MAC address of the packet.</para>
+        </listitem>
+      </varlistentry>
+      <varlistentry>
+        <term><option>-tap <replaceable>tap device</replaceable></option></term>
+        <listitem>
+          <para>Connect the switch to a dynamically created tap device
+          on the host</para>
+        </listitem>
+      </varlistentry>
+      <varlistentry>
+        <term><option>-compat-v0</option></term>
+        <listitem>
+          <para>Specify control protocol version 0 compatibility.</para>
+        </listitem>
+      </varlistentry>
+      <varlistentry>
+        <term><option>-daemon</option></term>
+        <listitem>
+          <para>Run in the background as a daemon.</para>
+        </listitem>
+      </varlistentry>
+    </variablelist>
+  </refsect1>
+  <refsect1>
+    <title>SEE ALSO</title>
+
+    <para>linux(1)</para>
+
+    <para>The <ulink
+    url="http://user-mode-linux.sourceforge.net/UserModeLinux-HOWTO.html"
+    type=alternate>UserModeLinux-HOWTO</ulink></para>
+
+  </refsect1>
+  <refsect1>
+    <title>AUTHOR</title>
+
+    <para>&dhpackage; was written by Jeff Dike and others.</para>
+
+    <para>This manual page was written by &dhusername; &dhemail; for
+      the &debian; system (but may be used by others).  Permission is
+      granted to copy, distribute and/or modify this document under
+      the terms of the <acronym>GNU</acronym> Free Documentation
+      License, Version 1.1 or any later version published by the Free
+      Software Foundation; with no Invariant Sections, no Front-Cover
+      Texts and no Back-Cover Texts.</para>
+
+  </refsect1>
+</refentry>
+
+<!-- Keep this comment at the end of the file
+Local variables:
+mode: sgml
+sgml-omittag:t
+sgml-shorttag:t
+sgml-minimize-attributes:nil
+sgml-always-quote-attributes:t
+sgml-indent-step:2
+sgml-indent-data:t
+sgml-parent-document:nil
+sgml-default-dtd-file:nil
+sgml-exposed-tags:nil
+sgml-local-catalogs:nil
+sgml-local-ecat-files:nil
+End:
+-->




More information about the Pkg-uml-commit mailing list