Displaying 2 results from an estimated 2 matches for "libguestfs_gotchas".
2011 Jun 16
1
Comment on libguestfs code in https://bitbucket.org/swamiyeswanth/pyti
...use 'mount_options'. The 'mount' call
adds some flags to the mountpoint which are not very useful and also
make disk writes very slow.
http://libguestfs.org/guestfs.3.html#guestfs_mount
http://libguestfs.org/guestfs.3.html#guestfs_mount_options
http://libguestfs.org/guestfs.3.html#libguestfs_gotchas
(4) After line 33 ('umount_all') you should also call
'self.disk_fs.sync()' which causes the libguestfs drive to be fully
synced. Alternatively you can delete the handle ('del self.disk_fs')
which assuming no other references are being held will do the same
thing.
HTH,
R...
2010 Jul 02
1
Progress bars
...y do it at the start of the 1.5 development cycle, indicating
that now would be a good time to release 1.4. See:
https://www.redhat.com/archives/libguestfs/2010-June/msg00069.html
(b) We should make the other protocol changes we've been wanting to
do, see: http://libguestfs.org/guestfs.3.html#libguestfs_gotchas
(c) We need to make sure everyone understands the change to the
appliance and protocol.
The current protocol (ignoring file transfers) implements a very
simple RPC mechanism which is entirely synchronous:
library daemon
request message --------------->...