search for: 65505ef

Displaying 6 results from an estimated 6 matches for "65505ef".

Did you mean: 65505
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.
...arsify +/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 +/cat/virt-tail +/cat/virt-tail.1 /ChangeLog /compile /config.cache diff --git a/bash/Makefile.am b/bash/Makefile.am index 9a51847..65505ef 100644 --- a/bash/Makefile.am +++ b/bash/Makefile.am @@ -48,6 +48,7 @@ symlinks = \ virt-resize \ virt-sparsify \ virt-sysprep \ + virt-tail \ virt-tar-in \ virt-tar-out @@ -70,7 +71,8 @@ virt-builder virt-cat virt-customize virt-df virt-dib virt-diff \ virt-edit virt-filesystems virt-...
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.
...arsify +/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 +/cat/virt-tail +/cat/virt-tail.1 /ChangeLog /compile /config.cache diff --git a/bash/Makefile.am b/bash/Makefile.am index 9a51847..65505ef 100644 --- a/bash/Makefile.am +++ b/bash/Makefile.am @@ -48,6 +48,7 @@ symlinks = \ virt-resize \ virt-sparsify \ virt-sysprep \ + virt-tail \ virt-tar-in \ virt-tar-out @@ -70,7 +71,8 @@ virt-builder virt-cat virt-customize virt-df virt-dib virt-diff \ virt-edit virt-filesystems virt-...
2016 Oct 03
1
Re: [PATCH v2 1/2] New tool: virt-tail.
...ut > /build-aux/.gitignore > @@ -111,6 +112,8 @@ Makefile.in > /cat/virt-log.1 > /cat/virt-ls > /cat/virt-ls.1 > +/cat/virt-tail > +/cat/virt-tail.1 > /ChangeLog > /compile > /config.cache > diff --git a/bash/Makefile.am b/bash/Makefile.am > index 9a51847..65505ef 100644 > --- a/bash/Makefile.am > +++ b/bash/Makefile.am > @@ -48,6 +48,7 @@ symlinks = \ > virt-resize \ > virt-sparsify \ > virt-sysprep \ > + virt-tail \ > virt-tar-in \ > virt-tar-out > > @@ -70,7 +71,8 @@ virt-builder virt-cat virt-customize virt-df...
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.