search for: 3d3bf0d

Displaying 6 results from an estimated 6 matches for "3d3bf0d".

2016 Oct 03
3
[PATCH v2 0/2] New tool: virt-tail.
Nothing new in the virt-tail command itself, but the second commit includes a simple test. Rich.
2016 Oct 03
0
[PATCH v2 1/2] New tool: virt-tail.
...sh/guestfish.pod | 1 + src/guestfs.pod | 1 + tools/virt-win-reg | 1 + website/index.html.in | 1 + 14 files changed, 820 insertions(+), 11 deletions(-) create mode 100644 cat/tail.c create mode 100644 cat/virt-tail.pod diff --git a/.gitignore b/.gitignore index 3d3bf0d..c4d6eda 100644 --- a/.gitignore +++ b/.gitignore @@ -69,6 +69,7 @@ Makefile.in /bash/virt-resize /bash/virt-sysprep /bash/virt-sparsify +/bash/virt-tail /bash/virt-tar-in /bash/virt-tar-out /build-aux/.gitignore @@ -111,6 +112,8 @@ Makefile.in /cat/virt-log.1 /cat/virt-ls /cat/virt-ls.1 +...
2016 Oct 01
1
[PATCH] New tool: virt-tail.
This adds a new tool which does a follow operation (ie. tail -f) on one or more log/text files inside the guest. I've only done limited testing, but it works for me for tailing various long-running builds inside guests which I'm doing at the moment. There are no tests at present. Rich.
2016 Oct 03
0
[PATCH v3 1/2] New tool: virt-tail.
...sh/guestfish.pod | 1 + src/guestfs.pod | 1 + tools/virt-win-reg | 1 + website/index.html.in | 1 + 14 files changed, 824 insertions(+), 11 deletions(-) create mode 100644 cat/tail.c create mode 100644 cat/virt-tail.pod diff --git a/.gitignore b/.gitignore index 3d3bf0d..c4d6eda 100644 --- a/.gitignore +++ b/.gitignore @@ -69,6 +69,7 @@ Makefile.in /bash/virt-resize /bash/virt-sysprep /bash/virt-sparsify +/bash/virt-tail /bash/virt-tar-in /bash/virt-tar-out /build-aux/.gitignore @@ -111,6 +112,8 @@ Makefile.in /cat/virt-log.1 /cat/virt-ls /cat/virt-ls.1 +...
2016 Oct 03
1
Re: [PATCH v2 1/2] New tool: virt-tail.
...tfs.pod | 1 + > tools/virt-win-reg | 1 + > website/index.html.in | 1 + > 14 files changed, 820 insertions(+), 11 deletions(-) > create mode 100644 cat/tail.c > create mode 100644 cat/virt-tail.pod > > diff --git a/.gitignore b/.gitignore > index 3d3bf0d..c4d6eda 100644 > --- a/.gitignore > +++ b/.gitignore > @@ -69,6 +69,7 @@ Makefile.in > /bash/virt-resize > /bash/virt-sysprep > /bash/virt-sparsify > +/bash/virt-tail > /bash/virt-tar-in > /bash/virt-tar-out > /build-aux/.gitignore > @@ -111,6 +112,8 @@ Makef...
2016 Oct 03
3
[PATCH v3 0/2] New tool: virt-tail.
Since v2: - Fix the things that Pino mentioned, except the recursion. - Implement Windows support. For Windows support to be sane, I had to inline the add_and_mount code. Rich.