search for: linuxfsuuid

Displaying 13 results from an estimated 13 matches for "linuxfsuuid".

2015 Dec 13
3
unknown/unavailable method for expanding the ntfs filesystem
Hello,everyone I ran virt-resize(v1.30.4) on my CentOS 7.1 to resize win2008r2 and got the warning message (virt-resize: warning: unknown/unavailable method for expanding the ntfs filesystem on /dev/sda2): >/usr/local/libguestfs-1.30.4/run virt-resize --expand /dev/sda2 /images/win2008_src.raw /dev/vg0/win2008_resize_dst [ 0.0] Examining
2015 Oct 05
2
[PATCH] Remove multiple hacks that only apply to RHEL 5.
...aplabel); /* Confirmed this is true for Linux swap partitions from the Linux sources. */ #define SWAP_LABEL_MAX 16 -/* Convenient place to test for the later version of e2fsprogs - * and util-linux which supports -U parameters to specify UUIDs. - * (Not supported in RHEL 5). - */ int optgroup_linuxfsuuid_available (void) { - CLEANUP_FREE char *err = NULL; - int av; - - /* Upstream util-linux have been gradually changing '--help' to go - * from stderr to stdout, and changing the return code from 1 to 0. - * Thus we need to fold stdout and stderr together, and ignore the - * return...
2015 Oct 05
0
Re: [PATCH] Remove multiple hacks that only apply to RHEL 5.
...Linux swap partitions from the Linux sources. */ > #define SWAP_LABEL_MAX 16 > > -/* Convenient place to test for the later version of e2fsprogs > - * and util-linux which supports -U parameters to specify UUIDs. > - * (Not supported in RHEL 5). > - */ > int > optgroup_linuxfsuuid_available (void) > { > - CLEANUP_FREE char *err = NULL; > - int av; > - > - /* Upstream util-linux have been gradually changing '--help' to go > - * from stderr to stdout, and changing the return code from 1 to 0. > - * Thus we need to fold stdout and stderr tog...
2015 Dec 14
0
Re: unknown/unavailable method for expanding the ntfs filesystem
...d yes > blkdiscardzeroes yes > btrfs yes > extlinux yes > fstrim yes > gdisk yes > grub no > hivex yes > inotify yes > journal yes > ldm no > linuxcaps yes > linuxfsuuid yes > linuxmodules yes > linuxxattrs yes > luks yes > lvm2 yes > mdadm yes > mknod yes > ntfs3g no > ntfsprogs no [...] > It seems guestfish can not find ntfs3g and ntfsprogs. I have tried > inst...
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
2017 Mar 03
2
[PATCH] generator: Allow actions to be deprecated with no replacement.
...or swap tools." }; { defaults with name = "mkswap_U"; added = (1, 0, 55); style = RErr, [String "uuid"; Device "device"], []; - deprecated_by = Some "mkswap"; + deprecated_by = Replaced_by "mkswap"; optional = Some "linuxfsuuid"; tests = [ InitEmpty, Always, TestRun ( @@ -352,7 +352,7 @@ Create a swap partition on C<device> with UUID C<uuid>." }; { defaults with name = "sfdiskM"; added = (1, 0, 55); style = RErr, [Device "device"; StringList "lines&...
2016 Feb 27
3
Re: [PATCH] added ntfscat_i api
...acl yes augeas yes blkdiscard yes blkdiscardzeroes yes btrfs no extlinux no fstrim yes gdisk yes grub no hivex yes inotify yes journal yes ldm no linuxcaps yes linuxfsuuid yes linuxmodules yes linuxxattrs yes luks no lvm2 yes mdadm no mknod yes ntfs3g yes ntfsprogs yes realpath yes rsync yes scrub no selinux yes syslinux no wi...
2012 Feb 01
1
[PATCH] Clarify the error message when unavailable functions are called (RHBZ#679737).
...This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by @@ -99,6 +99,8 @@ do_mkswap_L (const char *label, const char *device) int do_mkswap_U (const char *uuid, const char *device) { + IF_NOT_AVAILABLE_ERROR (linuxfsuuid, -1); + return mkswap (device, "-U", uuid); } @@ -219,11 +221,15 @@ do_swapoff_label (const char *label) int do_swapon_uuid (const char *uuid) { + IF_NOT_AVAILABLE_ERROR (linuxfsuuid, -1); + return swaponoff ("swapon", "-U", uuid); } int do_swapoff_uu...
2017 Feb 21
1
[PATCH] generator: Put all the daemon procedure numbers (proc_nr)
This is a follow-up to the other generator changes in: https://www.redhat.com/archives/libguestfs/2017-February/msg00217.html Rich.
2017 Apr 21
0
[PATCH 1/2] generator: Simplify the handling of string parameters.
...uestfs appliance swap on @@ -4570,7 +4570,7 @@ labeled swap partition." }; { defaults with name = "swapon_uuid"; added = (1, 0, 66); - style = RErr, [String "uuid"], []; + style = RErr, [String (PlainString, "uuid")], []; optional = Some "linuxfsuuid"; tests = [ InitEmpty, Always, TestRun ( @@ -4585,7 +4585,7 @@ See C<guestfs_swapon_device> for other notes." }; { defaults with name = "swapoff_uuid"; added = (1, 0, 66); - style = RErr, [String "uuid"], []; + style = RErr, [String...
2017 Apr 21
4
[PATCH 0/2] generator: Simplify the handling of string parameters.
Very large but mechanical change to the generator. Rich.
2017 Feb 18
8
[PATCH 0/6] generator: Split up generator/actions.ml
Split up the huge generator/actions.ml into several smaller files. Rich.
2015 May 26
6
[PATCH 0/6] Update the way that API versions are generated for the man page.
The existing mechanism was clunky, slow and used ~ 10 MB of local disk. Rich.