search for: md_create

Displaying 20 results from an estimated 44 matches for "md_create".

Did you mean: cmd_create
2016 Feb 27
2
Re: [PATCH] added ntfscat_i api
...from the >> source package. Which theoretically means I have all the required >> dependencies for building the library. >> >> Now it complains about missing builtin mdadm feature. >> >> SRCDIR=. LAYOUT=partitions-md ../../run --test ./make-fedora-img.pl >> 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. &...
2012 Apr 26
1
[PATCH] gobject: Move headers into a subdirectory
...targs-compress_device_out.h \ - guestfs-gobject-optargs-copy_device_to_device.h \ - guestfs-gobject-optargs-copy_device_to_file.h \ - guestfs-gobject-optargs-copy_file_to_device.h \ - guestfs-gobject-optargs-copy_file_to_file.h \ - guestfs-gobject-optargs-tune2fs.h \ - guestfs-gobject-optargs-md_create.h \ - guestfs-gobject-optargs-e2fsck.h \ - guestfs-gobject-optargs-ntfsfix.h \ - guestfs-gobject-optargs-ntfsclone_out.h \ - guestfs-gobject-optargs-mkfs_btrfs.h \ - guestfs-gobject-optargs-set_e2attrs.h + include/guestfs-gobject.h \ + include/guestfs-gobject/session.h \ + include/guestfs-g...
2016 Feb 26
2
Re: [PATCH] added ntfscat_i api
...> I eventually installed the list of build dependencies from the source package. Which theoretically means I have all the required dependencies for building the library. Now it complains about missing builtin mdadm feature. SRCDIR=. LAYOUT=partitions-md ../../run --test ./make-fedora-img.pl 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. Is it possible to skip th...
2012 Apr 02
2
[PATCH 0/2] Fix btrfs blocksize and bind mkfs.btrfs (RHBZ#807905).
https://bugzilla.redhat.com/show_bug.cgi?id=807905 Currently if you specify the blocksize parameter to mkfs-opts with a btrfs filesystem, then it fails, because mkfs.btrfs interprets the -b option as meaning filesystem size. The first patch fixes this by disallowing blocksize (it cannot be mapped meaningfully into btrfs parameters). The second patch adds the full /sbin/mkfs.btrfs utility to the
2011 Nov 24
1
mdadm / Ubuntu 10.04 error
md_create: mdadm: boot: mdadm: boot is not a block device. at /home/rjones/d/libguestfs/images/guest-aux/make-fedora-img.pl line 95. Looking into this, it appears the old version of mdadm shipped in Ubuntu (mdadm 2.6.7) doesn't support the notion of giving arbitrary names to devices. Thus you have to d...
2016 Feb 27
3
Re: [PATCH] added ntfscat_i api
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 /home/noxdafox/development/libguestfs/test-data/phony-guests/make-fedora-img.pl >...
2015 May 13
2
about libguestfs 'AVAILABILITY'
Hi all: I installed libguestfs-1.29.40 on both ubuntu 12.04 and ubuntu 14.04. Both of them have the same problems,It is about the 'AVAILABILITY' . I build libguestfs by tarball , everything is ok except the commond : make check . on ubuntu 12.04 the error is 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 /usr/Libvmi/libguestfs-1.29.40/tests/guests/guest-aux/make-fedora-img.pl line 103. /usr/Libvmi/libguestfs-1.29.40/run:...
2020 Jan 27
0
[PATCH v2 2/2] sparsify: support LUKS-encrypted partitions
...+++ b/gobject/Makefile.inc @@ -86,6 +86,7 @@ guestfs_gobject_headers= \ include/guestfs-gobject/optargs-is_fifo.h \ include/guestfs-gobject/optargs-is_file.h \ include/guestfs-gobject/optargs-is_socket.h \ + include/guestfs-gobject/optargs-luks_open.h \ include/guestfs-gobject/optargs-md_create.h \ include/guestfs-gobject/optargs-mke2fs.h \ include/guestfs-gobject/optargs-mkfs.h \ @@ -179,6 +180,7 @@ guestfs_gobject_sources= \ src/optargs-is_fifo.c \ src/optargs-is_file.c \ src/optargs-is_socket.c \ + src/optargs-luks_open.c \ src/optargs-md_create.c \ src/optargs-mk...
2020 Jan 21
12
[PATCH 0/1] WIP: Support LUKS-encrypted partitions
The following patch attempts to implement sparsification of LUKS-encrypted partitions. It uses lsblk to pair the underlying LUKS block device with its mapped name. Also, --allow-discards was added by default to luks_open(). There are several potential issues that I can think of: 1) If and entire device is encrypted (not just one of more partitions), the lsblk trick might not work. 2) The
2011 Nov 24
1
[PATCH] Rename mdadm_ apis to md_
This change renames the following 2 apis: * mdadm_create -> md_create * mdadm_detail -> md_detail This is more consistent with list_md_devices, and removes a reference to an implementation detail from the api. --- daemon/md.c | 24 ++++++++++++------------ generator/generator_actions.ml | 4 ++-- regressions/test-list-filesyst...
2020 Jan 22
3
[PATCH 1/1] sparsify: support LUKS-encrypted partitions
...+++ b/gobject/Makefile.inc @@ -86,6 +86,7 @@ guestfs_gobject_headers= \ include/guestfs-gobject/optargs-is_fifo.h \ include/guestfs-gobject/optargs-is_file.h \ include/guestfs-gobject/optargs-is_socket.h \ + include/guestfs-gobject/optargs-luks_open.h \ include/guestfs-gobject/optargs-md_create.h \ include/guestfs-gobject/optargs-mke2fs.h \ include/guestfs-gobject/optargs-mkfs.h \ @@ -179,6 +180,7 @@ guestfs_gobject_sources= \ src/optargs-is_fifo.c \ src/optargs-is_file.c \ src/optargs-is_socket.c \ + src/optargs-luks_open.c \ src/optargs-md_create.c \ src/optargs-mk...
2016 Feb 26
0
Re: [PATCH] added ntfscat_i api
...list of build dependencies from the > source package. Which theoretically means I have all the required > dependencies for building the library. > > Now it complains about missing builtin mdadm feature. > > SRCDIR=. LAYOUT=partitions-md ../../run --test ./make-fedora-img.pl > 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. This is a bu...
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 > >&gt...
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 /home/noxdafox/development/libguestfs/test-data/phony-guests/make-fedora-img...
2012 Jan 20
0
CamelName patch
...ag > > We can make a good guess at camel case names for most APIs. For example, > add_drive_opts can be automatically transformed to AddDriveOpts. However, ot > apis don't produce a satisfactory name when transformed automatically. For > example, we would want md_create to produce MDCreate rather than MdCreate. > > This change adds a CamelName flag which allows a camel case name to be speci > explicitly when the automatic transformation isn't satisfactory. > > > It seems to have a couple of problems: firstly it would change the >...
2012 Mar 30
0
gobject header files
...optargs-copy_device_to_file.h /usr/include/guestfs-gobject-optargs-copy_file_to_device.h /usr/include/guestfs-gobject-optargs-copy_file_to_file.h /usr/include/guestfs-gobject-optargs-e2fsck.h /usr/include/guestfs-gobject-optargs-inspect_get_icon.h /usr/include/guestfs-gobject-optargs-md_create.h /usr/include/guestfs-gobject-optargs-mkfs_opts.h /usr/include/guestfs-gobject-optargs-mount_9p.h /usr/include/guestfs-gobject-optargs-mount_local.h /usr/include/guestfs-gobject-optargs-ntfsclone_out.h /usr/include/guestfs-gobject-optargs-ntfsfix.h /usr/include/guestfs-gobject-op...
2015 May 05
3
libguestfs init problem
...me ! I am using libguestfs-1.28.1 on ubuntu 12.04 to manage vm disk created by KVM. I downloaded libguestfs-1.28.1.tar.gz ,and then executed (1) ./autogen.sh (2) ./configure (3) make (4) make check .there is the error. /usr/Libvmi/libguestfs-1.28.1/run --test guest-aux/make-fedora-img.pl 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 /usr/Libvmi/libguestfs-1.28.1/tests/guests/guest-aux/make-fedora-img.pl line 103. /usr/Libvmi/libguestfs-1.28.1/run: c...
2012 May 15
1
[PATCH] po: update POTFILES
..._device.c +gobject/guestfs-gobject-optargs-copy_device_to_file.c +gobject/guestfs-gobject-optargs-copy_file_to_device.c +gobject/guestfs-gobject-optargs-copy_file_to_file.c +gobject/guestfs-gobject-optargs-e2fsck.c +gobject/guestfs-gobject-optargs-inspect_get_icon.c +gobject/guestfs-gobject-optargs-md_create.c +gobject/guestfs-gobject-optargs-mkfs_btrfs.c +gobject/guestfs-gobject-optargs-mkfs_opts.c +gobject/guestfs-gobject-optargs-mount_9p.c +gobject/guestfs-gobject-optargs-mount_local.c +gobject/guestfs-gobject-optargs-ntfsclone_out.c +gobject/guestfs-gobject-optargs-ntfsfix.c +gobject/guestfs-gobjec...
2020 Jan 27
3
[PATCH v2 1/2] mltools, options: support --allow-discards when decrypting LUKS devices
--- mltools/tools_utils-c.c | 8 ++++---- mltools/tools_utils.ml | 6 +++--- mltools/tools_utils.mli | 8 ++++++-- options/decrypt.c | 5 +++-- options/inspect.c | 2 +- options/options.h | 2 +- 6 files changed, 18 insertions(+), 13 deletions(-) diff --git a/mltools/tools_utils-c.c b/mltools/tools_utils-c.c index 6c43b8d..1dcebc4 100644 --- a/mltools/tools_utils-c.c +++
2013 Apr 29
3
[PATCH] Fix make-fedora-img for btrfs minimum size
This first factors out all the partition sizing, and then resizes the images created to be 1GB instead of 512MB, to work around a size limitation with btrfs: mkfs_btrfs: /dev/vda2: device /dev/vda2 is too small (must be at least 256 MB)