Displaying 20 results from an estimated 10000 matches similar to: "[PATCH 0/6] Simple fixes for cross-compiling the daemon"
2010 Aug 20
8
[PATCH febootstrap 0/8] Add support for building an ext2-based appliance
This patch series adds support for outputing an ext2-based appliance
from febootstrap-supermin-helper. The usage is very simple, you just
add '-f ext2' flag and the name of the appliance file that you want to
write to.
The implementation uses libext2fs, which is a very low level way to
create ext2 filesystems from scratch. We'd like to use libguestfs,
but that's an obvious
2009 Nov 30
5
[PATCH 0/5] 5 conservative changes to errno handling
These patches are a distillation of the good patches from the previous
large / for-discussion-only error handling patch. See:
https://www.redhat.com/archives/libguestfs/2009-November/msg00298.html
Rich.
--
Richard Jones, Virtualization Group, Red Hat http://people.redhat.com/~rjones
virt-df lists disk usage of guests without needing to install any
software inside the virtual machine.
2010 Apr 10
9
[PATCH 0/9] Enhance virt-resize so it can really expand Linux and Windows guests
This is a set of bugfixes and enhancements to allow virt-resize to
really expand Linux and Windows guests. Previously there were lots of
bugs. This version has been tested on a variety of guests
successfully.
Rich.
--
Richard Jones, Virtualization Group, Red Hat http://people.redhat.com/~rjones
libguestfs lets you edit virtual machines. Supports shell scripting,
bindings from many languages.
2011 Jan 28
10
[PATCH 0/8 v2 DISCUSSION ONLY] Connecting to live virtual machines
NOTE: This is HIGHLY EXPERIMENTAL and can eat babies ...
Modify the guest libvirt XML to add the virtio-serial channel:
<channel type='unix'>
<source mode='bind' path='/tmp/socket'/>
<target type='virtio' name='org.libguestfs.channel.0'/>
</channel>
In the guest, compile guestfsd and run it like this:
sudo
2010 Jan 28
14
[PATCH 0/13 v2] Prepare for adding write support to hivex (Windows registry) library
This series of patches, now up to 13 parts, contains lots of bug fixes
and groundwork required before we add write support to the hivex
library.
Rich.
--
Richard Jones, Virtualization Group, Red Hat http://people.redhat.com/~rjones
Read my programming blog: http://rwmj.wordpress.com
Fedora now supports 80 OCaml packages (the OPEN alternative to F#)
2010 Dec 01
5
[PATCH 0/5] Add progress notification to upload APIs
--
Richard Jones, Virtualization Group, Red Hat http://people.redhat.com/~rjones
virt-top is 'top' for virtual machines. Tiny program with many
powerful monitoring features, net stats, disk stats, logging, etc.
http://et.redhat.com/~rjones/virt-top
2010 Nov 10
7
[PATCH 0/7] Add libvirt domain to core API
This series of patches aim to make adding disks from libvirt domains
easy through the core API.
These two new APIs allow you to add the disks from a libvirt domain.
The higher level add-domain API takes the name of the libvirt domain
as a string and connects to libvirt itself. The lower level
add-libvirt-dom API relies on the program to connect to libvirt and
pass the virDomainPtr into the API
2011 Apr 13
5
[hivex PATCH 0/5] Fix various uninitialized data problems in hivex.
Problems were found using valgrind. With these 5 patches, hivex can
process registry files without provoking any valgrind warnings.
Rich.
--
Richard Jones, Virtualization Group, Red Hat http://people.redhat.com/~rjones
libguestfs lets you edit virtual machines. Supports shell scripting,
bindings from many languages. http://libguestfs.org
2009 Oct 19
4
[PATCH 1/3] Add guestfs_find0 API call which doesn't have limits
The current guestfs_find API call contains an undocumented limit: It
needs to marshall the whole list of filenames into a single protocol
message.
Unfortunately just about any Linux guest breaks this limit if you try
'guestfs_find ("/")' so this isn't much use.
These patches add a new API call (find0) which breaks this limit by
using a FileOut parameter. It's slightly
2011 Jul 15
8
[PATCH 0/8] Implement user cancellation
This patch series implements user cancellation. What this means is
that the "user" (or any library caller) can cancel certain
long-running operations. Currently it is only possible to cancel
upload and download operations (ie. anything in the generator which
uses FileIn and FileOut).
The mechanism in the protocol to implement cancellation already
exists, and it is already used to
2009 Oct 26
3
[PATCH 0/3] Handle NTFS 3g case sensitive Windows paths in the daemon
In the current Perl library we have a function called
resolve_windows_path which handles the useful [for Windows guests]
case where we need to resolve the true, case-sensitive path behind a
case-insensitive Windows path.
For example, a Windows path like "C:\Windows\System32" can be
presented to Linux by NTFS 3g in a variety of ways, eg:
/WINDOWS/system32
/WINDOWS/SYSTEM32
2010 Feb 03
12
[PATCH 0/12] Add support for writing to hive files
This patch series adds support for some simple operations on hive
files, and I've now tested and verified that those operations work
correctly.
All except for the last patch (12/12) are ready to be committed. The
last patch is WIP.
Rich.
--
Richard Jones, Virtualization Group, Red Hat http://people.redhat.com/~rjones
virt-df lists disk usage of guests without needing to install any
2009 Sep 23
3
[PATCH 0/3] Three code cleanups
As suggested by Jim in this earlier message:
https://www.redhat.com/archives/libguestfs/2009-September/msg00152.html
Rich.
--
Richard Jones, Emerging Technologies, Red Hat http://et.redhat.com/~rjones
New in Fedora 11: Fedora Windows cross-compiler. Compile Windows
programs, test, and build Windows installers. Over 70 libraries supprt'd
http://fedoraproject.org/wiki/MinGW
2011 Jan 27
5
[PATCH 0/5 REVIEW ONLY] Implement attach-method to attach to existing daemons
I've only done limited testing, but it does let you connect to an
existing guestfsd running inside a guest, over virtio-serial.
This is not ready to be applied.
One thing I've not thought about is how well this fits in with plans
to use this mechanism as an alternate way to launch the appliance via
libvirt.
Rich.
--
Richard Jones, Virtualization Group, Red Hat
2011 Oct 20
4
[PATCH 1/3] out-of-tree build: daemon
---
daemon/Makefile.am | 4 ++--
1 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/daemon/Makefile.am b/daemon/Makefile.am
index e23ce86..af075d7 100644
--- a/daemon/Makefile.am
+++ b/daemon/Makefile.am
@@ -42,10 +42,10 @@ noinst_LIBRARIES = libprotocol.a
libprotocol_a_SOURCES = guestfs_protocol.c guestfs_protocol.h
libprotocol_a_CFLAGS = -Wall -Wno-unused -fno-strict-aliasing
2009 Nov 04
3
[PATCH x 3] Three small fixes for Debian
These small fixes are required to fix the build and tests on Debian
(using the debootstrap/debirf appliance).
There is currently another bug in the Debian tests which I'm looking
into. hexdump always fails as follows:
libguestfs: error: hexdump: hexdump: /test123: hexdump: /sysroot/test123: Bad file descriptor
Rich.
--
Richard Jones, Virtualization Group, Red Hat
2010 Sep 26
2
[PATCH 0/2] Add pwrite-device API call
These two very simple patches add a pwrite-device API call. I have
been conservative and not yet added the equivalent pread-device call,
although that could be added in future.
The motivation for this is in virt-resize: We need a way to zap the
partition table cleanly[1], and obviously parted isn't working out for
us[2]. Using this call we can zap MBR and GPT partition tables by
overwriting
2011 Jun 03
3
Unable to build appliance
Hello--
I've been trying to build libguestfs 1.2.14 with the appliance enabled on an
older type of system at my company. Getting all the required dependencies
installed has been an arduous process, but I've finally hit an obstacle I
don't know how to get around. The final output of "make":
+ febootstrap-run initramfs -- /sbin/depmod -a ABOUT-NLS BUGS COPYING
COPYING.LIB
2010 Jan 19
7
[PATCH 0/7] Prepare for adding write support to hivex (windows registry) library
This series of patches prepares the way for a later series which will
add write support for Windows Registry 'hive' files to our 'hivex'
mini library.
About hivex:
http://libguestfs.org/hivex.3.html
About the Windows Registry:
Forget it - there are no reliable references. However the Wikipedia
page explains some of the top level concepts:
2012 Aug 27
3
libguestfs! help!
On Sun, Aug 26, 2012 at 09:52:23PM -0400, tao zhou wrote:
> hello everyone!
>
> first i use libguestfs API to upload a file into my linux VM , and
> then i want to execute some command(for example : tar xzvf XXX?
> chkconfig --add XXX) to config my application by java libguestfs
> API?what should i do? could you show me an example in java?
> Thanks!
Attached is a simple