Displaying 6 results from an estimated 6 matches for "d9a975e".
Did you mean:
d9a9058
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.
...derstand Windows drive letters
@@ -277,6 +279,7 @@ L<guestfish(1)>,
L<virt-copy-out(1)>,
L<virt-edit(1)>,
L<virt-log(1)>,
+L<virt-tail(1)>,
L<virt-tar-out(1)>,
L<http://libguestfs.org/>.
diff --git a/cat/virt-log.pod b/cat/virt-log.pod
index a85d0ee..d9a975e 100644
--- a/cat/virt-log.pod
+++ b/cat/virt-log.pod
@@ -17,9 +17,10 @@ This tool understands and displays both plain text log files
(eg. F</var/log/messages>) and binary formats such as the systemd
journal.
-To display other types of files, use L<virt-cat(1)>. To copy files
-out o...
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.
...derstand Windows drive letters
@@ -277,6 +279,7 @@ L<guestfish(1)>,
L<virt-copy-out(1)>,
L<virt-edit(1)>,
L<virt-log(1)>,
+L<virt-tail(1)>,
L<virt-tar-out(1)>,
L<http://libguestfs.org/>.
diff --git a/cat/virt-log.pod b/cat/virt-log.pod
index a85d0ee..d9a975e 100644
--- a/cat/virt-log.pod
+++ b/cat/virt-log.pod
@@ -17,9 +17,10 @@ This tool understands and displays both plain text log files
(eg. F</var/log/messages>) and binary formats such as the systemd
journal.
-To display other types of files, use L<virt-cat(1)>. To copy files
-out o...
2016 Oct 03
1
Re: [PATCH v2 1/2] New tool: virt-tail.
...,7 @@ L<guestfish(1)>,
> L<virt-copy-out(1)>,
> L<virt-edit(1)>,
> L<virt-log(1)>,
> +L<virt-tail(1)>,
> L<virt-tar-out(1)>,
> L<http://libguestfs.org/>.
>
> diff --git a/cat/virt-log.pod b/cat/virt-log.pod
> index a85d0ee..d9a975e 100644
> --- a/cat/virt-log.pod
> +++ b/cat/virt-log.pod
> @@ -17,9 +17,10 @@ This tool understands and displays both plain text log files
> (eg. F</var/log/messages>) and binary formats such as the systemd
> journal.
>
> -To display other types of files, use L<vir...
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.