Displaying 20 results from an estimated 4000 matches similar to: "Fedora 29 guestfish not working"
2019 Jan 22
0
Re: Fedora 29 guestfish not working
On Tue, Jan 22, 2019 at 06:03:36PM +0000, CHANU ROMAIN wrote:
> Hello,
>
> I tried to install guestfish on my Fedora 29 and used the commands from
> documentation sudo dnf install libguestfs-tools but I got an error when
> I tried to execute run. You will find below logs below:
>
> ************************************************************
> *
2019 Jan 23
2
[supermin PATCH 1/2] rpm: extend the Multiple_matches exception
Add the package that raised the issue, so it can be used to provide
better diagnostic.
---
src/librpm-c.c | 15 ++++++++++-----
src/librpm.ml | 4 ++--
src/librpm.mli | 2 +-
3 files changed, 13 insertions(+), 8 deletions(-)
diff --git a/src/librpm-c.c b/src/librpm-c.c
index 3bd25a2..75ca4d7 100644
--- a/src/librpm-c.c
+++ b/src/librpm-c.c
@@ -66,10 +66,15 @@ librpm_handle_closed (void)
}
2014 Sep 17
4
[PATCH 0/2] supermin: use librpm for rpm support
Hi,
this work makes supermin use the rpm library instead of invoking rpm
directly. This, together with a needed refactoring of the dependency
resolution, should help in make supermin faster on rpm-based systems.
Surely the patches will still need polishing, especially for behaviours
of newly added stuff, but at least it's a good starting point.
Noting that you need rpm-devel on most of rpm
2015 Apr 02
2
Re: [PATCH] Adding ibm-powerkvm distro detection (the right one)
Hi Pino,
On 04/02/2015 05:23 AM, Pino Toscano wrote:
> Hi Daniel,
>
> On Wednesday 01 April 2015 16:37:26 Daniel Henrique Barboza wrote:
>> The one that got upstream does not work in ibm-powerkvm due to the
>> rpm_is_avaiable verification
>> in the detection (I've attached the wrong version in bugzilla).
> the new version of the patch is somehow confusing.
2015 Apr 02
2
Re: [PATCH] Adding ibm-powerkvm distro detection (the right one)
Hi Pino,
On 04/02/2015 09:51 AM, Pino Toscano wrote:
> Hi Daniel,
>
> On Thursday 02 April 2015 09:34:17 Daniel Henrique Barboza wrote:
>> On 04/02/2015 05:23 AM, Pino Toscano wrote:
>>> Hi Daniel,
>>>
>>> On Wednesday 01 April 2015 16:37:26 Daniel Henrique Barboza wrote:
>>>> The one that got upstream does not work in ibm-powerkvm due to the
2015 Apr 02
2
Re: [PATCH] Adding ibm-powerkvm distro detection (the right one)
On 04/02/2015 11:47 AM, Pino Toscano wrote:
> On Thursday 02 April 2015 11:15:07 Daniel Henrique Barboza wrote:
>> Hi Pino,
>>
>> On 04/02/2015 09:51 AM, Pino Toscano wrote:
>>> Hi Daniel,
>>>
>>> On Thursday 02 April 2015 09:34:17 Daniel Henrique Barboza wrote:
>>>> On 04/02/2015 05:23 AM, Pino Toscano wrote:
>>>>> Hi
2015 Oct 13
6
[PATCH 0/4] rpm: Choose providers better (RHBZ#1266918).
Fix for
https://bugzilla.redhat.com/show_bug.cgi?id=1266918
2019 Apr 12
6
[supermin PATCH 0/5] rpm: fix package selection w/ multilib
This patch series fixes the way supermin sorts the list of installed
packages when resolving a name, picking the right package for the host
architecture.
Pino Toscano (5):
rpm: do not unpack parameters
rpm: fix version comparison
rpm: query the RPM architecture
rpm: fix package sorting (RHBZ#1696822)
utils: remove unused 'compare_architecture' function
src/librpm-c.c | 10
2019 Jan 23
0
[supermin PATCH 2/2] Print Librpm.Multiple_matches exceptions
Print a better diagnostic for them, so it is more clear which package
is detected as present multiple times.
---
src/supermin.ml | 2 ++
1 file changed, 2 insertions(+)
diff --git a/src/supermin.ml b/src/supermin.ml
index f9798f9..71d8b64 100644
--- a/src/supermin.ml
+++ b/src/supermin.ml
@@ -298,6 +298,8 @@ let () =
error "error: %s: %s: %s" fname (Unix.error_message code) param
2019 Jan 23
0
Re: Fedora 29 guestfish not working
Hi,
On Tuesday, 22 January 2019 19:03:36 CET CHANU ROMAIN wrote:
> supermin: resolving full list of package dependencies
> supermin: exception: Librpm.Multiple_matches(2)
> libguestfs: error: /usr/bin/supermin exited with error status 1, see
> debug messages above
This happens because librpm reports more than 1 RPM matching a NEVRA
(Name/Epoch/Version/Release/Architecture), e.g.
2015 Apr 01
4
[PATCH] Adding ibm-powerkvm distro detection (the right one)
The one that got upstream does not work in ibm-powerkvm due to the
rpm_is_avaiable verification
in the detection (I've attached the wrong version in bugzilla).
Thanks and sorry for the confusion,
Daniel
-------------- next part --------------
A non-text attachment was scrubbed...
Name: 0001-Adding-ibm-powerkvm-distro-detection.patch
Type: text/x-patch
Size: 1306 bytes
Desc: not available
2016 Feb 18
4
[PATCH 0/3] supermin: miscellaneous cleanups
Hi,
few cleanups in the supermin codebase; no actual functional change.
Thanks,
--
Pino Toscano (3):
ext2: simplify tracking of visited modules
utils: remove unused run_python function
Add and use an helper error function
src/build.ml | 20 +++++-----------
src/dpkg.ml | 4 +---
src/ext2_initrd.ml | 10 ++++----
src/kernel.ml | 27
2015 Apr 02
0
Re: [PATCH] Adding ibm-powerkvm distro detection (the right one)
Hi Daniel,
On Thursday 02 April 2015 09:34:17 Daniel Henrique Barboza wrote:
> On 04/02/2015 05:23 AM, Pino Toscano wrote:
> > Hi Daniel,
> >
> > On Wednesday 01 April 2015 16:37:26 Daniel Henrique Barboza wrote:
> >> The one that got upstream does not work in ibm-powerkvm due to the
> >> rpm_is_avaiable verification
> >> in the detection (I've
2015 Apr 02
0
Re: [PATCH] Adding ibm-powerkvm distro detection (the right one)
On Thursday 02 April 2015 11:15:07 Daniel Henrique Barboza wrote:
> Hi Pino,
>
> On 04/02/2015 09:51 AM, Pino Toscano wrote:
> > Hi Daniel,
> >
> > On Thursday 02 April 2015 09:34:17 Daniel Henrique Barboza wrote:
> >> On 04/02/2015 05:23 AM, Pino Toscano wrote:
> >>> Hi Daniel,
> >>>
> >>> On Wednesday 01 April 2015 16:37:26
2015 Apr 02
0
Re: [PATCH] Adding ibm-powerkvm distro detection (the right one)
On 04/02/2015 01:20 PM, Daniel Henrique Barboza wrote:
>
>
> On 04/02/2015 11:47 AM, Pino Toscano wrote:
>> On Thursday 02 April 2015 11:15:07 Daniel Henrique Barboza wrote:
>>> Hi Pino,
>>>
>>> On 04/02/2015 09:51 AM, Pino Toscano wrote:
>>>> Hi Daniel,
>>>>
>>>> On Thursday 02 April 2015 09:34:17 Daniel Henrique
2016 Jul 21
2
How to debug supermin5 issue?
Hi, Rich:
I met a supermin issue on CentOS 7.1:
supermin: version: 5.1.10
supermin: rpm: detected RPM version 4.11
supermin: package handler: fedora/rpm
supermin: acquiring lock on /root/test/aaa/lock
supermin: build: /usr/lib64/guestfs/supermin.d
supermin: build: visiting /usr/lib64/guestfs/supermin.d/base.tar.gz type gzip base image (tar)
supermin: build: visiting
2018 Oct 15
2
Bug Report, .vhdx file not attaching
I am trying to mount a windows 10 backup .vhdx file.
I installed libguestfs through ```sudo apt-get install libguestfs-tools```
I am running Ubuntu 18.04.1 LTS and this is the installed version: ```1:1.36.13-1ubuntu3.2```
This is the output of the command I ran:
```
~$ guestmount --add Documents/8be29c38-0000-0000-0000-602200000000.vhdx --inspector --ro /media/Windows10/
libguestfs: trace:
2013 Feb 06
2
Issues with p2v & virt-v2v Windows
It looks to me that the windows 2008 image I am attempting to convert is
not being detected as windows but is being updated as a Linux system.
When PXE booted the server with the p2v image I ended up with this
error:
Failed to launch guestfs appliance. Try running again with
LIBGUESTFS_DEBUG=1 for more information
The system image transferred and I was able to create an XML file to
boot it under
2015 Jun 25
3
Problem with supermin and symlink in ibm_powerkvm ppc64le distro
Hi,
I've found a problem with supermin code running in an ibm_powerkvm
ppc64le distro.
Output of libguestfs-test-tool:
$ libguestfs-test-tool
************************************************************
* IMPORTANT NOTICE
*
* When reporting bugs, include the COMPLETE, UNEDITED
* output below in your bug report.
*
2014 Jun 04
2
Re: libguestfs supermin error
Hi Rich
Kindly ignore my previos mail.
I have downloaded the latest version of supermin supermin-5.1.8 and have
compiled it for powerpc.Moreover there was no need to patch the src/
kernel.ml file as the changes were already implemented on the latest
version.
But still when i run libguestfs-test-tool on powerpc ubuntu,I get the below
logs..
libguestfs-test-tool