+Fri Apr 17 17:32:16 CEST 2009 Daniel Veillard <veillard@redhat.com>
+
+ * src/libvirt.c: fix the doc of virNodeGetFreeMemory to say bytes
+ * docs/drvlxc.html.in docs/drvlxc.html: fix command used in examples
+
Thu Apr 16 17:48:30 CEST 2009 Guido Günther <agx@sigxcpu.org>
* src/qemu_driver.c (qemudMonitorCommandExtra): don't log monitor
<p>
In both cases, you can define and start a container using:</p>
<pre>
-lxc --connect lxc:/// define v1.xml
-lxc --connect lxc:/// start v1.xml
+virsh --connect lxc:/// define v1.xml
+virsh --connect lxc:/// start v1.xml
</pre>
<pre>
-lxc --connect lxc:/// console v1
+virsh --connect lxc:/// console v1
</pre>
<p>Now doing 'ps -ef' will only show processes in the container, for
instance.
<p>
In both cases, you can define and start a container using:</p>
<pre>
-lxc --connect lxc:/// define v1.xml
-lxc --connect lxc:/// start v1.xml
+virsh --connect lxc:/// define v1.xml
+virsh --connect lxc:/// start v1.xml
</pre>
and then get a console using:
<pre>
-lxc --connect lxc:/// console v1
+virsh --connect lxc:/// console v1
</pre>
<p>Now doing 'ps -ef' will only show processes in the container, for
instance.
* @conn: pointer to the hypervisor connection
*
* provides the free memory available on the Node
+ * Note: most libvirt APIs provide memory sizes in kilobytes, but in this
+ * function the returned value is in bytes. Divide by 1024 as necessary.
*
- * Returns the available free memory in kilobytes or 0 in case of error
+ * Returns the available free memory in bytes or 0 in case of error
*/
unsigned long long
virNodeGetFreeMemory(virConnectPtr conn)