search for: ntfscat_i

Displaying 20 results from an estimated 29 matches for "ntfscat_i".

Did you mean: ntfscat
2016 Feb 22
0
Re: [PATCH] added ntfscat_i api
On Sun, Feb 21, 2016 at 11:22:23PM +0200, Matteo Cafasso wrote: > Adding ntfscat_i command for downloading files based on their inode number. > > This allows the dowload of files unaccessible otherwise from a NTFS guest disk image. The patch seems fine, but it really needs a test otherwise this feature could silently break. Have a look at the tests/ntfsclone/ subdirector...
2016 Feb 21
2
[PATCH] added ntfscat_i api
Adding ntfscat_i command for downloading files based on their inode number. This allows the dowload of files unaccessible otherwise from a NTFS guest disk image. --- daemon/ntfs.c | 62 ++++++++++++++++++++++++++++++++++++++++++++++++++++ generator/actions.ml | 15 +++++++++++++ 2 files changed, 77 insert...
2016 Feb 29
2
[PATCH 1/2] added ntfscat_i api
Adding ntfscat_i command for downloading files based on their inode number. This allows the dowload of files unaccessible otherwise from a NTFS guest disk image. Signed-off-by: Matteo Cafasso <noxdafox@gmail.com> --- daemon/ntfs.c | 62 ++++++++++++++++++++++++++++++++++++++++++++++++++++ generator/...
2016 Feb 29
0
[PATCH 2/2] added ntfscat_i tests
...qemu/Makefile diff --git a/generator/actions.ml b/generator/actions.ml index 18418aa..0c71389 100644 --- a/generator/actions.ml +++ b/generator/actions.ml @@ -12892,10 +12892,11 @@ This is equivalent to C<sgdisk -e>. See also L<sgdisk(8)>." }; { defaults with - name = "ntfscat_i"; added = (1, 33, 2); + name = "ntfscat_i"; added = (1, 33, 12); style = RErr, [Mountable "device"; Int64 "inode"; FileOut "filename"], []; proc_nr = Some 463; progress = true; cancellable = true; + test_excuse = "tested in test...
2016 Feb 22
0
Re: [PATCH] added ntfscat_i api
On Mon, Feb 22, 2016 at 07:23:45PM +0200, noxdafox wrote: > On 22/02/16 17:26, Richard W.M. Jones wrote: > >On Sun, Feb 21, 2016 at 11:22:23PM +0200, Matteo Cafasso wrote: > >>Adding ntfscat_i command for downloading files based on their inode number. > >> > >>This allows the dowload of files unaccessible otherwise from a NTFS guest disk image. > >The patch seems fine, but it really needs a test otherwise this > >feature could silently break. > I was thin...
2016 Feb 23
0
Re: [PATCH] added ntfscat_i api
On Mon, Feb 22, 2016 at 11:58:28PM +0200, noxdafox wrote: > Once fixed that and few other things I got stuck with this: > > SRCDIR=. LAYOUT=partitions ../../run --test ./make-fedora-img.pl > Can't locate loadable object for module Sys::Guestfs in @INC (@INC > contains: /home/noxdafox/development/libguestfs/perl/blib/lib > /home/noxdafox/development/libguestfs/perl/blib/arch
2016 Feb 25
0
Re: [PATCH] added ntfscat_i api
Apply the attached patch, followed by doing: make -C perl clean ./configure make Rich. -- Richard Jones, Virtualization Group, Red Hat http://people.redhat.com/~rjones Read my programming and virtualization blog: http://rwmj.wordpress.com virt-top is 'top' for virtual machines. Tiny program with many powerful monitoring features, net stats, disk stats, logging, etc.
2016 Feb 26
0
Re: [PATCH] added ntfscat_i api
On Fri, Feb 26, 2016 at 12:16:22AM +0200, noxdafox wrote: > According to autogen.sh output Perl bindings and virt tools seem to > be missing, could it be related to this? Are the tests relying to > such dependencies? Yes, the tests rely on Perl bindings working, so I guess you need to install whatever missing dependencies are needed to make Perl work. Rich. -- Richard Jones,
2016 Feb 26
0
Re: [PATCH] added ntfscat_i api
On Sat, Feb 27, 2016 at 12:53:51AM +0200, noxdafox wrote: > On 26/02/16 10:12, Richard W.M. Jones wrote: > >On Fri, Feb 26, 2016 at 12:16:22AM +0200, noxdafox wrote: > >>According to autogen.sh output Perl bindings and virt tools seem to > >>be missing, could it be related to this? Are the tests relying to > >>such dependencies? > >Yes, the tests rely on
2016 Feb 27
0
Re: [PATCH] added ntfscat_i api
[...] > >>md_create: feature 'mdadm' is not available in this > >>build of libguestfs. Read 'AVAILABILITY' in the guestfs(3) man page for > >>how to check for the availability of features. at /home/noxdafox/development/libguestfs/test-data/phony-guests/make-fedora-img.pl > >>line 103. > All the other packages were already installed. Most of
2016 Feb 27
0
Re: [PATCH] added ntfscat_i api
On Sat, Feb 27, 2016 at 09:55:32PM +0200, noxdafox wrote: > On 27/02/16 11:23, Richard W.M. Jones wrote: > >[...] > >>>>md_create: feature 'mdadm' is not available in this > >>>>build of libguestfs. Read 'AVAILABILITY' in the guestfs(3) man page for > >>>>how to check for the availability of features. at
2016 Feb 28
0
Re: [PATCH] added ntfscat_i api
There's one possible source of the problem: I discovered that if you don't have all the appliance packages installed on the host before your first libguestfs build, then any missing packages don't get added to appliance/supermin.d/packages. Compare your appliance/packagelist with appliance/supermin.d/packages and look for packages present in the first file and missing in the second
2016 Feb 25
0
Re: [PATCH] added ntfscat_i api
On Thu, Feb 25, 2016 at 10:46:10PM +0200, noxdafox wrote: > On 25/02/16 10:54, Richard W.M. Jones wrote: > >Apply the attached patch, followed by doing: > > > > make -C perl clean > > ./configure > > make > > > >Rich. > > > I applied the patch, unfortunately the issue is still present. > > This is what I get if I run interactive
2016 Feb 22
2
Re: [PATCH] added ntfscat_i api
On 22/02/16 17:26, Richard W.M. Jones wrote: > On Sun, Feb 21, 2016 at 11:22:23PM +0200, Matteo Cafasso wrote: >> Adding ntfscat_i command for downloading files based on their inode number. >> >> This allows the dowload of files unaccessible otherwise from a NTFS guest disk image. > The patch seems fine, but it really needs a test otherwise this > feature could silently break. I was thinking the same but I st...
2016 Feb 28
2
Re: [PATCH] added ntfscat_i api
> Anyway, I'll fire up a Debian box in my cloud and see if I can > reproduce this also. I was able to install stretch, starting from jessie [from `virt-builder debian-8'], changing s/jessie/stretch/ in sources.list, and upgrading in the usual way. To install gfs2-utils I had to add jessie as another apt source [see my final sources.list attached]. That package is not in stretch, I
2016 Feb 27
2
Re: [PATCH] added ntfscat_i api
On 27/02/16 01:05, Richard W.M. Jones wrote: > On Sat, Feb 27, 2016 at 12:53:51AM +0200, noxdafox wrote: >> On 26/02/16 10:12, Richard W.M. Jones wrote: >>> On Fri, Feb 26, 2016 at 12:16:22AM +0200, noxdafox wrote: >>>> According to autogen.sh output Perl bindings and virt tools seem to >>>> be missing, could it be related to this? Are the tests relying to
2016 Feb 22
2
Re: [PATCH] added ntfscat_i api
On 22/02/16 19:43, Richard W.M. Jones wrote: > On Mon, Feb 22, 2016 at 07:23:45PM +0200, noxdafox wrote: >> On 22/02/16 17:26, Richard W.M. Jones wrote: >>> On Sun, Feb 21, 2016 at 11:22:23PM +0200, Matteo Cafasso wrote: >>>> Adding ntfscat_i command for downloading files based on their inode number. >>>> >>>> This allows the dowload of files unaccessible otherwise from a NTFS guest disk image. >>> The patch seems fine, but it really needs a test otherwise this >>> feature could silently break....
2016 Feb 26
2
Re: [PATCH] added ntfscat_i api
On 26/02/16 10:12, Richard W.M. Jones wrote: > On Fri, Feb 26, 2016 at 12:16:22AM +0200, noxdafox wrote: >> According to autogen.sh output Perl bindings and virt tools seem to >> be missing, could it be related to this? Are the tests relying to >> such dependencies? > Yes, the tests rely on Perl bindings working, so I guess you need to > install whatever missing
2016 Feb 25
2
Re: [PATCH] added ntfscat_i api
On 25/02/16 23:18, Richard W.M. Jones wrote: > On Thu, Feb 25, 2016 at 10:46:10PM +0200, noxdafox wrote: >> On 25/02/16 10:54, Richard W.M. Jones wrote: >>> Apply the attached patch, followed by doing: >>> >>> make -C perl clean >>> ./configure >>> make >>> >>> Rich. >>> >> I applied the patch,
2016 Feb 24
3
Re: [PATCH] added ntfscat_i api
On 23/02/16 10:09, Richard W.M. Jones wrote: > On Mon, Feb 22, 2016 at 11:58:28PM +0200, noxdafox wrote: >> Once fixed that and few other things I got stuck with this: >> >> SRCDIR=. LAYOUT=partitions ../../run --test ./make-fedora-img.pl >> Can't locate loadable object for module Sys::Guestfs in @INC (@INC >> contains: