similar to: [PATCH 0/3 VERSION 3 FOR DISCUSSION ONLY] FUSE support for libguestfs

Displaying 20 results from an estimated 4000 matches similar to: "[PATCH 0/3 VERSION 3 FOR DISCUSSION ONLY] FUSE support for libguestfs"

2014 Feb 03
0
Re: libguestfs and zfs-fuse
On Mon, Feb 03, 2014 at 03:12:28PM -0500, Andre Goree wrote: > I'm wondering whether or not anyone has tried to use guestmount on > an image with a ZFS partition (MBR partition table). I can't seem > to find much on the internet regarding it, but I do see hints that > may lead me to a solution. I'm under the impression that libguestfs > can use what ever is available
2014 Feb 03
2
libguestfs and zfs-fuse
I'm wondering whether or not anyone has tried to use guestmount on an image with a ZFS partition (MBR partition table). I can't seem to find much on the internet regarding it, but I do see hints that may lead me to a solution. I'm under the impression that libguestfs can use what ever is available to the kernel on the host -- in my case I have zfs-use installed and running. I
2014 Feb 03
2
Re: libguestfs and zfs-fuse
On 02/03/2014 3:16 pm, Richard W.M. Jones wrote: > On Mon, Feb 03, 2014 at 03:12:28PM -0500, Andre Goree wrote: >> I'm wondering whether or not anyone has tried to use guestmount on >> an image with a ZFS partition (MBR partition table). I can't seem >> to find much on the internet regarding it, but I do see hints that >> may lead me to a solution. I'm
2009 Nov 20
1
fix new failures from latest-from-gnulib syntax-check
There's a new syntax check rule from gnulib. It requires that you write e.g., exit (EXIT_SUCCESS), not exit (0). And the same for 1/EXIT_FAILURE and any other constants. There were a lot of violations, including a few false positives, so I started with the exemptions (see the .x-sc file below). Then I converted the vast majority automatically, with this: maint: use EXIT_SUCCESS and
2012 Nov 05
1
using fuse with libguestfs
Upon seeing RWM Jones article "Using mount-local API from C" I became curious because I thought there WAS a way to combine aspects of FUSE with the tools provided by libguestfs. So if I wanted to create my own filesystem using callbacks placed in the 'fuse_operations' struct (parameter to 'fuse_main()'), I could do so using guestfs. But after reading the article and
2010 Apr 14
1
[PATCH] Fix build error in fuse/guestmount.c
guestmount.c: In function 'main': guestmount.c:899: error: implicit declaration of function 'setlocale' [-Wimplicit-function-declaration] guestmount.c wasn't including locale.h. --- fuse/guestmount.c | 1 + 1 files changed, 1 insertions(+), 0 deletions(-) diff --git a/fuse/guestmount.c b/fuse/guestmount.c index b4a917f..27a4cef 100644 --- a/fuse/guestmount.c +++
2012 Apr 04
1
[PATCH] fuse: Add missing #include to guestmount.c
Fix compilation failure on F17 --- fuse/guestmount.c | 1 + 1 file changed, 1 insertion(+) diff --git a/fuse/guestmount.c b/fuse/guestmount.c index 7c5e0af..379346f 100644 --- a/fuse/guestmount.c +++ b/fuse/guestmount.c @@ -28,6 +28,7 @@ #include <unistd.h> #include <getopt.h> #include <signal.h> +#include <locale.h> /* We're still using some of FUSE to
2016 Jul 18
1
[PATCH] fish, fuse: Remove bogus '?' from short options.
I don't believe this has any use or meaning. Currently the tools don't process -?, eg: $ guestfish -\? Try `guestfish --help' for more information. Therefore I believe this is erroneous. --- fish/fish.c | 2 +- fuse/guestmount.c | 2 +- fuse/guestunmount.c | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/fish/fish.c b/fish/fish.c index
2017 Nov 06
1
minor usability issue: confusing error message with guestmount + fuse errors
Hello, Using older libguestfs 1.34.6-2 (from Ubuntu's standard package), I encountered this: libguestfs fails with an error, but the error code is "success": $ sudo guestmount -m /dev/sda1 --ro \ -o allow_others \ -a data.qcow2 \ /media/foo fuse: unknown option `allow_others' libguestfs: error: fuse_new:
2009 Nov 09
1
[PATCH libguestfs] avoid "syntax-check" failure
syntax-check failed with this: fuse/guestmount.c:364: free ((char *) r); maint.mk: don't cast free argument make: *** [sc_cast_of_argument_to_free] Error 1 >From ed007e673b00ec545fcff2a708a57d98075c6460 Mon Sep 17 00:00:00 2001 From: Jim Meyering <meyering at redhat.com> Date: Mon, 9 Nov 2009 15:06:36 +0100 Subject: [PATCH libguestfs] avoid "syntax-check"
2009 Nov 09
1
[PATCH libguestfs] fix doc typo
barely worth mentioning... >From 459fa00dd144aef2c7287eb99354c9b39eaa62c3 Mon Sep 17 00:00:00 2001 From: Jim Meyering <meyering at redhat.com> Date: Mon, 9 Nov 2009 15:09:35 +0100 Subject: [PATCH libguestfs] fix doc typo * fuse/guestmount.pod: Avoid "the the". --- fuse/guestmount.pod | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/fuse/guestmount.pod
2009 Oct 30
2
[PATCH 0/2 v 2 FOR DISCUSSION ONLY] Add FUSE support
Second round of patches. These work so far that you can get directory listings and stuff like that ... 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://et.redhat.com/~rjones/libguestfs/ See what it can do:
2010 Apr 20
1
libguestfs mounting solaris 10 ZFS guest
Not sure if this possible, but I have a KVM guest running Solaris 10 with the OS on ZFS and I am trying to use libguestfs/guestfish/guestmount to get to the VM. I am running Red Hat EL 5.4 with EPEL rpms as required. The VM is on a LV and it boots fine, but I can't seem to get the syntax correct to get libguestfs to deal with it. Guestmount seemed like the best option because it supports FUSE
2011 Apr 13
1
[PATCH libguestfs] include string.h and libintl.h, as needed
This appears to fix the last of the missing includes: >From 4e8c86d43a330ac79624a78d7ef40aa17f8fb4db Mon Sep 17 00:00:00 2001 From: Jim Meyering <meyering at redhat.com> Date: Wed, 13 Apr 2011 14:34:38 +0200 Subject: [PATCH libguestfs] include string.h and libintl.h, as needed * df/df.c: As above. * df/main.c: As above. * df/output.c: As above. * fuse/guestmount.c: As above. *
2013 Mar 04
1
[PATCH] fuse: Add guestmount-cleanup program to handle unmounting (RHBZ#916780).
* PATCH FOR DISCUSSION ONLY - NOT TO BE APPLIED * Colin suggested something which seems eminently sensible: https://bugzilla.redhat.com/show_bug.cgi?id=916780 I've been through a couple of rounds of trying to implement this. I started with adding the option as suggested to the guestmount program, but it tended to make the guestmount program more complex. More importantly, adding the option
2014 Sep 18
3
libguestfs fails on FreeBSD9.3, MINIX3 qcow2 images
Hello Richard and all, (continuing from https://www.redhat.com/archives/libguestfs/2014-September/msg00112.html ). I'm experimenting with libguestfs on non-linux VMs, encountered errors on FreeBSD9.3 and MINIX3 (and few others, but these ones are easy to share), with host Ubuntu 14.04.01 LTS x86-64. Attached are logs from "virt-inspector -v -x" for each VM. The images are here:
2017 Mar 29
0
Re: libguestfs-xfs for CentOS 6
Hi, On Wednesday, 29 March 2017 06:28:06 CEST Гюльнара Невежина wrote: > Does anybody know if the package libguestfs-xfs exists for CentOS 6? In RHEL/CentOS 6, the support for XFS filesystems in libguestfs is provided already by the appliance in the 'libguestfs' package. > I faced the problem when tried to change passwd for XFS virtual > machine based on ext4 CentOS 6 parent
2012 Mar 28
2
[PATCH v2] New APIs: mount-local and umount-local using FUSE
This version doesn't crash or cause hung processes or stuck mountpoints, so that's an improvement. Rich.
2017 Mar 29
2
Re: libguestfs-xfs for CentOS 6
Many thanks for a quick reply, see also https://bugzilla.redhat.com/show_bug.cgi?id=1413499#c5 Looks like the same issue as mine. But any way - a full log of guestmount, running it with -v -x and host + VM info are attached, probably I've missed something important in the output. Thank you! 29.03.2017, 15:47, "Pino Toscano" : Hi, On Wednesday, 29 March 2017 06:28:06 CEST
2012 Mar 27
3
[PATCH 0/3] Enable FUSE support in the API via 'mount-local' call.
This patch is just for review. It enables FUSE support in the API via two new calls, 'guestfs_mount_local' and 'guestfs_umount_local'. FUSE turns out to be very easy to deadlock (necessitating that the machine be rebooted). Running the test from the third patch is usually an effective way to demonstrate this. However I have not yet managed to produce a simple reproducer that