Displaying 20 results from an estimated 7000 matches similar to: "[PATCH pkg-libvirt/libguestfs] Split off ZFS support from libguestfs0."
2014 Mar 15
3
[PATCH pkg-libvirt/libguestfs] Remove update-guestfs-appliance
[First attempt to send this using git send-email didn't work because
of SMTP routing problems]
Hilko,
This is my experimental patch to remove update-guestfs-appliance from
Debian. With this patch, libguestfs builds with a supermin [version 5]
appliance in /usr/lib/guestfs/supermin.d:
$ ll -h /usr/lib/guestfs/supermin.d/
total 884K
-rw-r--r-- 1 root root 94K Mar 15 12:18 base.tar.gz
2017 Mar 14
2
guestfsd: error while loading shared libraries in SUSE12
Hi guys,
I've struggled in this error for 1 week and your help is really appreciated. As one EMC software engineer, I need to setup the libguestfs tool in SUSE12 ( SUSE11SP4 is also OK, while SUSE12 is preferred ) to mount some qcow2 image from openstack environment. Then we can read its file system architecture and restore some files.
1. The first thing is we build one SUSE
2014 Nov 03
2
Large Dependency List on Ubuntu Server 14
Forgive me if this is the wrong area to ask this question. I'm happy to
inquire to a diff list if that's better.
From:
http://libguestfs.org/
"Downloads
For source see the downloads directory.
In Fedora or Red Hat Enterprise Linux:
sudo yum install libguestfs-tools
On Debian/Ubuntu:
sudo apt-get install libguestfs-tools
Open a disk image:
guestfish --ro -i -a disk.img
Other
2013 Mar 07
7
Fixes from the patch queue of the Debian package
Here are three patches that fix issues with out-of-tree building and
one that uses Ruby's own autoconf stuff for determining how Ruby
bindings should be built.
Cheers,
-Hilko
2014 Mar 27
4
ANNOUNCE: libguestfs 1.26 released
I'm pleased to announce libguestfs 1.26, a library and set of tools
for accessing and modifying virtual machine disk images. This release
took more than 6 months of work by a considerable number of people,
and has many new features (see release notes below).
You can get libguestfs 1.26 here:
Main website: http://libguestfs.org/
Source:
2016 Jun 16
4
libguestfs can't communicate over network while creating VM
Hello guys,
we use libguests for dynamic creation of our VM and we do various modifications of those VMs in the process. One with I am struggling with is to signing keys of our custom repository - "
vm.sh("wget -O - " + key_address + " | apt-key add -")" where "vm" is a GuestFS object. So I have set "vm.set_network(True)" and I have installed
2011 Aug 04
4
Plans for libguestfs
On Thu, Aug 04, 2011 at 01:04:40AM +0200, Hilko Bengen wrote:
> During last week, I finally got some packages for libguestfs and
> bindings done. The repository at
> git://anonscm.debian.org/pkg-libvirt/libguestfs.git has been updated to
> 1.10.6-2 which I have also uploaded to experimental. (The packages
> haven't appeared in the archive yet, though.)
>
> Before
2014 Feb 28
6
[PATCH] Fix building on architectures where ocamlopt is not available
---
builder/Makefile.am | 18 +++++++++++++-
configure.ac | 2 ++
mllib/Makefile.am | 60 +++++++++++++++++++++++++++++++---------------
ocaml/Makefile.am | 28 +++++++++++++++-------
ocaml/examples/Makefile.am | 13 ++++++++++
resize/Makefile.am | 18 +++++++++++++-
sparsify/Makefile.am | 18 +++++++++++++-
sysprep/Makefile.am | 18
2014 Feb 13
5
[PATCH 1/2] nbdkit: Work around what seems like an bug in automake 1.14
"AM_INIT_AUTOMAKE(foreign) dnl ..." seems to trigger Debian bug#738716
---
configure.ac | 3 ++-
1 file changed, 2 insertions(+), 1 deletion(-)
diff --git a/configure.ac b/configure.ac
index ee9d377..df31014 100644
--- a/configure.ac
+++ b/configure.ac
@@ -35,7 +35,8 @@ AC_CONFIG_MACRO_DIR([m4])
AC_USE_SYSTEM_EXTENSIONS
AC_SYS_LARGEFILE
-AM_INIT_AUTOMAKE(foreign) dnl NB: Do not
2014 Mar 15
4
[supermin 1/2] chroot: Fix corner case introduced with dpkg-divert support
---
src/chroot.ml | 9 +++++++--
1 file changed, 7 insertions(+), 2 deletions(-)
diff --git a/src/chroot.ml b/src/chroot.ml
index b5c1e53..9e522d9 100644
--- a/src/chroot.ml
+++ b/src/chroot.ml
@@ -26,7 +26,9 @@ let build_chroot debug files outputdir =
List.iter (
fun file ->
try
- let path = file.ft_source_path in
+ let path = if file_exists file.ft_source_path
+
2014 May 31
2
Re: libguestfs error
On Sat, May 31, 2014 at 03:01:47PM +0530, abhishek jain wrote:
> /usr/local/lib/guestfs/supermin.d/udev-rules.tar.gz type gzip base image
> (tar)
> supermin: build: 121 packages, including dependencies
> supermin: build: 7109 files
> supermin: build: 7109 files, after removing unreadable files
> supermin: build: 4939 files, after matching excludefiles
> supermin: build: 4941
2014 Mar 03
2
[PATCH] supermin: Fix build with bytecode compiler
---
src/Makefile.am | 7 ++++---
1 file changed, 4 insertions(+), 3 deletions(-)
diff --git a/src/Makefile.am b/src/Makefile.am
index 7f99b8a..932881b 100644
--- a/src/Makefile.am
+++ b/src/Makefile.am
@@ -104,17 +104,18 @@ supermin_CFLAGS = \
BOBJECTS = $(SOURCES_ML:.ml=.cmo)
XOBJECTS = $(SOURCES_ML:.ml=.cmx)
+OCAMLPACKAGES = -package unix,str
+OCAMLFLAGS = -warn-error CDEFLMPSUVXYZ
+
if
2014 Apr 26
2
[supermin] Be smarter about finding suitable kernel images
---
src/kernel.ml | 43 ++++++++++++++++++++++++++++---------------
1 file changed, 28 insertions(+), 15 deletions(-)
diff --git a/src/kernel.ml b/src/kernel.ml
index ed5aea3..436b1b0 100644
--- a/src/kernel.ml
+++ b/src/kernel.ml
@@ -23,6 +23,19 @@ open Utils
open Ext2fs
open Fnmatch
+let patt_of_cpu host_cpu =
+ let models =
+ match host_cpu with
+ | "mips" |
2014 May 29
2
Re: libguestfs error
Glad Buddy.:-)
It worked.
Thanks a lot.
I'm having some urgent deliverable and this would really help me alot.
Thanks again.
Would love to trouble you again .
On Thu, May 29, 2014 at 9:34 PM, Richard W.M. Jones <rjones@redhat.com>
wrote:
> On Thu, May 29, 2014 at 09:30:45PM +0530, abhishek jain wrote:
> [...]
> > checking for main in -lreadline... no
> >
2014 Apr 29
2
Adventures in building libguestfs on non-x86 architectures for Debian
Hi,
things are progressing slowly, but I feel that eventually I'll be
getting there: supermin can be built on all Linux-based architectures
that are part of Debian/unstable[1] -- (except for sparc, but I'll
ignore that for now.) libguestfs on the other hand currently fails
launching the appliance (necessary for running tests) on everything but
x86 and mips.
Apparently, qemu-system-arm
2016 Jun 16
2
Re: libguestfs can't communicate over network while creating VM
Hello Pino,
I tried installing the package and running the command, however nothing has changed :-/ This package should be installed as an addition to the dhcpcd5 or is a replacement? Thanks
Best regards,
Petr
________________________________________
From: Pino Toscano <ptoscano@redhat.com>
Sent: Thursday, June 16, 2016 1:45 PM
To: libguestfs@redhat.com; Mensik, Petr
Subject: Re:
2013 May 16
3
[PATCH] Use pkg-config for Python
At least libpython2.7-dev and libpython3.3-dev on current
Debian/unstable ship with pkg-config files. As with the pkg-config
check for Lua, we check for versioned and an unversioned .pc files.
---
configure.ac | 35 ++++++++++++++++++++---------------
python/Makefile.am | 2 +-
2 files changed, 21 insertions(+), 16 deletions(-)
diff --git a/configure.ac b/configure.ac
index
2014 Jun 02
2
Re: libguestfs error
Hi Rich
One more quiry.
After installing libguestfs-test-tool on my powerpc ubuntu,I'm getting this
following error on my system ...
UnsupportedRpcVersion: Specified RPC version, 3.23, not supported by this
endpoint.
Can you help regarding this?
Thanks
On Sat, May 31, 2014 at 4:18 PM, abhishek jain <ashujain9727@gmail.com>
wrote:
> Hi Rich
>
> Thanks for the quick
2014 Apr 28
2
Re: [supermin] Be smarter about finding suitable kernel images
* Richard W.M. Jones:
> On Sat, Apr 26, 2014 at 02:27:07PM +0200, Hilko Bengen wrote:
>> ---
>> src/kernel.ml | 43 ++++++++++++++++++++++++++++---------------
>> 1 file changed, 28 insertions(+), 15 deletions(-)
>>
>> diff --git a/src/kernel.ml b/src/kernel.ml
>> index ed5aea3..436b1b0 100644
>> --- a/src/kernel.ml
>> +++ b/src/kernel.ml
2014 Mar 08
9
supermin and dpkg-divert
While trying to run libguestfs tests after building with
"--enable-appliance --with-supermin-extra-options=--use-installed", I
ran into a peculiar error message in the c-api test:
,----
| libguestfs: error: strings: /abssymlink: strings: error while loading
| shared libraries: libbfd-2.24-multiarch.so: cannot open shared object
| file: No such file or directory
`----
The problem here