search for: rlwrap

Displaying 7 results from an estimated 7 matches for "rlwrap".

Did you mean: ylwrap
2016 Feb 09
2
Re: Help with Win10
...imic. I'll try that out in the morning. I've > been staring at this problem for so long that my eyes are crossing. I should note that any doubled \\ that appear in the strings are really single \, they are just escaped OCaml strings. It might help to fire up the OCaml interpreter: $ rlwrap ocaml OCaml version 4.02.3 # open Printf;; # printf "PCI\\VEN_1AF4&DEV_1001&REV_00\n";; PCI\VEN_1AF4&DEV_1001&REV_00 - : unit = () # let oem_inf = "oem1.inf";; val oem_inf : string = "oem1.inf" # printf "@%s,%%rhelscsi.devicedesc%%;Red Hat...
2016 Feb 09
0
Re: Help with Win10
...orning. > I've > > been staring at this problem for so long that my eyes are crossing. > > I should note that any doubled \\ that appear in the strings are > really single \, they are just escaped OCaml strings. It might help > to fire up the OCaml interpreter: > > $ rlwrap ocaml > OCaml version 4.02.3 > > # open Printf;; > # printf "PCI\\VEN_1AF4&DEV_1001&REV_00\n";; > PCI\VEN_1AF4&DEV_1001&REV_00 > - : unit = () > # let oem_inf = "oem1.inf";; > val oem_inf : string = "oem1.inf" > # prin...
2016 Feb 09
2
Re: Help with Win10
On Mon, Feb 08, 2016 at 04:50:09PM -0800, Joshua Pincus wrote: > Mr Jones, > > I recently came across your excellent 2010 blog entry, > https://rwmj.wordpress.com/2010/04/30/tip-install-a-device-driver-in-a-windows-vm/. > The blog entry was incredibly useful for Win7. I was wondering if you have > any similar insights for Win10? The CDDB is gone, and it's replacement, or
2011 Mar 25
0
Some notes on using QMP to hot plug disks
...t.qemu.org/qemu.git/tree/QMP/qmp-spec.txt I added '-qmp unix:$tmpdir/qemu.sock,server' to the QEMU command line that we generate. At start up, QEMU blocks until someone connects to the qmp socket. You can connect manually by starting guestfish + launch, then in another terminal doing: rlwrap socat STDIO UNIX:/tmp/libguestfsXXXXXX/qmp.sock I'm using the convention of "->" to mean client to server and "<-" to mean server to client. QMP does not actually print these characters. At start up (just after you connect) QMP sends: <- {"QMP": {&quot...
2016 Feb 22
2
Re: [PATCH v2 4/4] v2v: in-place: request caps based on source config
...> + > let () = run_main_and_handle_errors main It's a bit surprising, because I thought that you'd want to pass in the requested preferences on the command line? About the specific issue of ordering, although what you've written works, you could find a few surprises. eg: $ rlwrap ocaml OCaml version 4.02.3 # type t = A | B | C ;; type t = A | B | C # A < C ;; - : bool = true # A < B ;; - : bool = true # B < C ;; - : bool = true but ... # type t = A | B of int | C ;; type t = A | B of int | C # A < C ;; - : bool = true # A...
2020 Sep 17
2
Re: [libnbd PATCH v2 4/5] api: Add STRICT_FLAGS to set_strict_mode
On Fri, Sep 11, 2020 at 04:49:55PM -0500, Eric Blake wrote: > The next strict knob: allow the user to pass unknown flags across the > wire (this is different than passing a known flag at the wrong time). > > It is interesting to note that NBD only permits 16 bits of flags, but > we have a signature that takes uint32_t; if we wanted, we could pack > libnbd-specific flags in the
2016 Feb 20
8
[PATCH v2 0/4] v2v: more control over device types
The decision on which device type to use for disks, network and video cards on output used to be taken deep inside the converting functions. This is not always desirable. In particular, there are scenarios when this decision is made before the convertion takes place. E.g. in in-place mode, the decisions are taken and the output VM configuration is created outside of v2v tool. This patchset