search for: get_attach_method

Displaying 9 results from an estimated 9 matches for "get_attach_method".

2014 Aug 21
2
libguest-test-tool error report
...w" libguestfs: trace: add_drive = 0 libguestfs: trace: version libguestfs: trace: version = <struct guestfs_version *> library version: 1.20.11rhel=6,release=2.el6 libguestfs: trace: get_append libguestfs: trace: get_append = "NULL" guestfs_get_append: (null) libguestfs: trace: get_attach_method libguestfs: trace: get_attach_method = "appliance" guestfs_get_attach_method: appliance libguestfs: trace: get_autosync libguestfs: trace: get_autosync = 1 guestfs_get_autosync: 1 libguestfs: trace: get_cachedir libguestfs: trace: get_cachedir = "/var/tmp" guestfs_get_cachedir:...
2014 Sep 13
2
Re: Need Help
Thanks a lot Rechard for your inputs. On Fri, Sep 12, 2014 at 11:23 PM, Richard W.M. Jones <rjones@redhat.com> wrote: > On Fri, Sep 12, 2014 at 10:40:14PM +0530, Priyanka Ranjan wrote: > > Hello Experts, > > > > I need a help from you . I am using CentOS 6.4 and using guestfish > > to modify an ESX image. > > > > I am adding a disk, executing
2017 Mar 03
2
[PATCH] generator: Allow actions to be deprecated with no replacement.
...ome "set_backend"; + deprecated_by = Replaced_by "set_backend"; shortdesc = "set the backend"; longdesc = "\ Set the method that libguestfs uses to connect to the backend @@ -114,7 +114,7 @@ See L<guestfs(3)/BACKEND>." }; name = "get_attach_method"; added = (1, 9, 8); style = RString "backend", [], []; blocking = false; - deprecated_by = Some "get_backend"; + deprecated_by = Replaced_by "get_backend"; tests = [ InitNone, Always, TestRun ( [["get_attach_method"]...
2012 Oct 08
5
[PATCH v4 0/5] Finish hotplugging support.
This rounds off hotplugging support by allowing you to add and remove drives at any stage (before and after launch). Rich.
2012 Jan 12
1
Libguestfs gobject bindings
I'm currently working on gobject bindings for libguestfs. I haven't got as far as compiling anything yet, but I've attached the C header for initial review. Matt -- Matthew Booth, RHCA, RHCSS Red Hat Engineering, Virtualisation Team GPG ID: D33C3490 GPG FPR: 3733 612D 2D05 5458 8A8A 1600 3441 EA19 D33C 3490 -------------- next part -------------- An embedded and
2012 Oct 08
3
[PATCH v3 0/3] Add support for disk labels and hotplugging.
This is, I guess, version 3 of this patch series which adds disk labels and hotplugging (only hot-add implemented so far). The good news is .. it works! Rich.
2017 May 04
4
[PATCH 0/3] generator: Allow returned strings to be annotated as devices.
If we want to permit more than 255 drives to be added, then we will have to add the disks to the same virtio-scsi target using different unit (LUN) numbers. Unfortunately SCSI LUN enumeration in the Linux is not deterministic (eg. two disks with target=0, lun=[0,1] can be enumerated as /dev/sda or /dev/sdb randomly). Dealing with that will require some very complex device name translation on the
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.