Displaying 4 results from an estimated 4 matches for "l479".
Did you mean:
479
2018 Nov 07
0
Re: guestfs_launch() fails when C application is started as a systemd service
...CHILD here:
https://github.com/libguestfs/libguestfs/blob/3430c2dd654b19a55d213a9302ac5e4b6a387bee/lib/command.c#L741
That makes no sense because we are supposed to have just forked
successfully:
https://github.com/libguestfs/libguestfs/blob/3430c2dd654b19a55d213a9302ac5e4b6a387bee/lib/command.c#L479
called from:
https://github.com/libguestfs/libguestfs/blob/3430c2dd654b19a55d213a9302ac5e4b6a387bee/lib/command.c#L764
Notice also that qemu-img *does* run (you can see the output from the
command).
So it must be something to do with collectd and how it runs programs.
Is it using LD_PRELOAD tri...
2018 Nov 07
2
Re: guestfs_launch() fails when C application is started as a systemd service
Thank you, Rich,
This was the issue indeed. export LIBGUESTFS_BACKEND=direct fixed it.
The next step I tried was to integrate libguestfs in collectd virt plugin
to collect this data automatically.
In this case I'm having an unknown error in add_libvirt_dom() (same with
add_domain) when it's invoking qemu-img to create overlay image.
There is no difference between manual and service
2016 Sep 20
1
Re: [PATCH v2 1/3] New API: internal_find_block
On Monday, 19 September 2016 23:26:57 CEST Matteo Cafasso wrote:
> The internal_find_block command searches all entries referring to the
> given filesystem data block and returns a tsk_dirent structure
> for each of them.
>
> For filesystems such as NTFS which do not delete the block mapping
> when removing files, it is possible to get multiple non-allocated
> entries for the
2018 Nov 07
2
Re: guestfs_launch() fails when C application is started as a systemd service
...com/libguestfs/libguestfs/blob/3430c2dd654b19a55d213a9302ac5e4b6a387bee/lib/command.c#L741
>
> That makes no sense because we are supposed to have just forked
> successfully:
>
>
> https://github.com/libguestfs/libguestfs/blob/3430c2dd654b19a55d213a9302ac5e4b6a387bee/lib/command.c#L479
>
> called from:
>
>
> https://github.com/libguestfs/libguestfs/blob/3430c2dd654b19a55d213a9302ac5e4b6a387bee/lib/command.c#L764
>
> Notice also that qemu-img *does* run (you can see the output from the
> command).
>
> So it must be something to do with collectd and ho...