similar to: How to debug supermin5 issue?

Displaying 20 results from an estimated 7000 matches similar to: "How to debug supermin5 issue?"

2016 Jul 21
2
Re: How to debug supermin5 issue?
At 2016-07-21 17:45:13, "Richard W.M. Jones" <rjones@redhat.com> wrote: >On Thu, Jul 21, 2016 at 04:54:46PM +0800, Chen Hanxiao wrote: >> >> 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 >>
2016 Jul 21
0
Re: How to debug supermin5 issue?
On Thu, Jul 21, 2016 at 04:54:46PM +0800, Chen Hanxiao wrote: > > 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
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 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. *
2016 Jul 21
3
Re: How to debug supermin5 issue?
At 2016-07-21 19:52:11, "Pino Toscano" <ptoscano@redhat.com> wrote: >On Thursday, 21 July 2016 18:50:52 CEST Chen Hanxiao wrote: >> >> At 2016-07-21 18:43:04, "Richard W.M. Jones" <rjones@redhat.com> wrote: >> >On Thu, Jul 21, 2016 at 06:36:20PM +0800, Chen Hanxiao wrote: >> >> the virtio modules in kmods did existed in this
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:
2019 Nov 02
4
supermin: failed to find a suitable kernel
Hi all I am trying to run the dockerized version of linaro lava. Unfortunately it is not possible to start libguetsfs inside one of the containers. My settings are: Ubuntu Server 18.04.3, Docker version 18.09.7 running a Debian:stretch based contianer Running libguestfs-test-tool gives me the following output: root at e91c89e0874d:/# libguestfs-test-tool
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
2019 Jan 22
4
Fedora 29 guestfish not working
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: ************************************************************ * IMPORTANT NOTICE * * When reporting bugs, include the COMPLETE, UNEDITED * output
2014 Jun 03
2
Re: libguestfs supermin error
Hi Rich But there is no src/kernel.ml file on my ubuntu powerpc to which the above patch is reffering. I have installed supermin as supermin_5.1.8-2_powerpc.deb debian package. Thanks On Tue, Jun 3, 2014 at 7:16 PM, Richard W.M. Jones <rjones@redhat.com> wrote: > On Tue, Jun 03, 2014 at 06:55:49PM +0530, abhishek jain wrote: > > supermin: failed to find a suitable kernel
2016 Jul 21
3
[PATCH] appliance: move virt-rescue welcome to /etc/issue
To allow easier downstream tweaks to the virt-rescue welcome message, just output the content of the /etc/issue file in the appliance. Thus, a new extras.tar.gz file appeared in supermin.d containing the etc/issue file and future tweaks like this one. --- appliance/Makefile.am | 11 +++++++++++ appliance/init | 11 ++--------- appliance/issue | 9 +++++++++ 3 files changed, 22
2016 Dec 07
5
[PATCH 0/3] Miscellaneous improvements to supermin.
Document what each module does, using *.mli files. Remove the --dtb option, it's obsolete. Rename modules according to their purpose. Rich.
2019 Dec 26
2
(no subject)
Installing debian-9, for using with hassio in docker. Followed steps in this tutorial: https://www.home-assistant.io/blog/2017/11/29/hassio-virtual-machine/ This is linux mint on a lenovo computer, unsure what you would need to troubleshoot the following error. Please advise how to go forward. Sincerely Tor Info hardware: lenovo yoga 2 pro, model: yb05031832 lshw WARNING: you should run
2018 Dec 03
3
[supermin PATCH] build: ignore empty files
Do not error out on empty files, just ignore them. --- src/mode_build.ml | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/src/mode_build.ml b/src/mode_build.ml index b5f5fa6..9cd0a21 100644 --- a/src/mode_build.ml +++ b/src/mode_build.ml @@ -46,6 +46,7 @@ and file_content = | Packages | Hostfiles | Excludefiles +| Empty let rec string_of_file_type = function |
2015 May 04
1
[PATCH] build: remove unreadable files after filtering
Move the removal of the files which don't exist or cannot be read, doing it after the filtering with excludefiles and hostfiles files. This avoid stat'ing files which will be excluded later anyway, hence reducing the I/O during a supermin build phase. --- src/build.ml | 32 ++++++++++++++++---------------- 1 file changed, 16 insertions(+), 16 deletions(-) diff --git a/src/build.ml
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 > >
2016 Nov 15
2
Libguestfs debugging issue
Hi. I am currently debugging an issue with libguestfs in Centos 7.2 (Kernel 3.10.0-327.36.3.el7.x86_64). libguestfs is being called by SaltStack to access a qcow2 image, but it is failing. I have narrowed the issue down to the command below: guestmount -i -a /opt/vm-spinning/salt-mnt/salt-images/pb123/system.qcow2 --rw /tmp/guest/opt.vm-spinning.salt-mnt.salt-images.pb123.system.qcow2 I have
2016 Jul 21
4
Re: How to debug supermin5 issue?
At 2016-07-21 18:43:04, "Richard W.M. Jones" <rjones@redhat.com> wrote: >On Thu, Jul 21, 2016 at 06:36:20PM +0800, Chen Hanxiao wrote: >> the virtio modules in kmods did existed in this machine. >> with -v -v -v, I got: > >Can you attach or pastebin the complete output from this command on >the failing machine please: > >supermin5 --build -f ext2 -v -v
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
2015 Jun 30
2
Issue with virt-builder on Ubuntu 14.04
Hello, I am running into problems with virt-builder on my Ubuntu-14.04 install. Please find the checklist below: 1. What are you trying to achieve? I'm trying to build a standard Ubuntu 14.04 disk image. 2. What exact commands did you run? I ran "virt-builder ubuntu-14.04" 3. What was the precise error/output of these commands? The process gets stuck indefinitely at