~ubuntu-branches/ubuntu/karmic/libvirt/karmic-proposed

« back to all changes in this revision

Viewing changes to docs/drvqemu.html.in

  • Committer: Bazaar Package Importer
  • Author(s): Soren Hansen
  • Date: 2009-02-11 01:01:42 UTC
  • mfrom: (1.1.9 upstream)
  • Revision ID: james.westby@ubuntu.com-20090211010142-8zrm7z1u6ryfhkiq
Tags: 0.6.0-1ubuntu1
* Merge with Debian experimental. Remaining changes:
  - debian/control:
    + Don't build-depend on QEmu.
    + Add "XS-Debian-" prefix to Debian's Vcs headers.
    + Bump bridge-utils, dnsmasq-base, netcat-openbsd, and iptables
      to Depends of libvirt-bin.
    + s/interract/interact/g
    + Add versioned Conflicts/Replaces to libvirt0 for libvirt0-dbg,
      since we used to ship them as such.
  - Rename libvirt group to libvirtd.
  - 0005-delayed_iff_up_bridge.patch: Don't try to bring up the bridge
    before at least one interface has been added to it.
  - dont_clobber_existing_bridges.patch: Assign the name of the virtual
    bridge dynamically to avoid interfering with existing bridges.
  - better_default_uri_virsh.patch: Default to qemu:///system if the
    user has write access to the libvirt socket, otherwise
    qemu:///session.
  - We call libxen-dev libxen3-dev, so change all references.
  - Included (but did not enable) opennebula patch (since it's not in
    main yet).

Show diffs side-by-side

added added

removed removed

Lines of Context:
32
32
      </li>
33
33
    </ul>
34
34
 
 
35
    <h2>Connections to QEMU driver</h2>
 
36
 
 
37
    <p>
 
38
    The libvirt QEMU driver is a multi-instance driver, providing a single
 
39
    system wide privileged driver (the "system" instance), and per-user
 
40
    unprivileged drivers (the "session" instance). The of the driver protocol
 
41
    is "qemu". Some example conection URIs for the libvirt driver are:
 
42
    </p>
 
43
 
 
44
    <pre>
 
45
    qemu:///session                      (local access to per-user instance)
 
46
    qemu+unix:///session                 (local access to per-user instance)
 
47
 
 
48
    qemu:///system                       (local access to system instance)
 
49
    qemu+unix:///system                  (local access to system instance)
 
50
    qemu://example.com/system            (remote access, TLS/x509)
 
51
    qemu+tcp://example.com/system        (remote access, SASl/Kerberos)
 
52
    qemu+ssh://root@example.com/system   (remote access, SSH tunnelled)
 
53
    </pre>
 
54
 
35
55
    <h2><a name="xmlconfig">Example domain XML config</a></h2>
36
56
 
37
57
    <h3>QEMU emulated guest on x86_64</h3>
85
105
      &lt;source network='default'/&gt;
86
106
      &lt;mac address='24:42:53:21:52:45'/&gt;
87
107
    &lt;/interface&gt;
88
 
    &lt;graphics type='vnc' port='-1'/&gt;
 
108
    &lt;graphics type='vnc' port='-1' keymap='de'/&gt;
89
109
  &lt;/devices&gt;
90
110
&lt;/domain&gt;</pre>
91
111