search for: head1

Displaying 20 results from an estimated 702 matches for "head1".

Did you mean: head
2009 Jul 24
2
[PATCH] Initial drop of virt-v2v
...0-1301 USA + +package Sys::Guestfs::GuestOS; + +use strict; +use warnings; + +use Module::Pluggable::Ordered sub_name => 'modules', + search_path => 'Sys::Guestfs::GuestOS', + require => 1; + +use Carp; + +=pod + +=head1 NAME + +Sys::Guestfs::GuestOS - Guest OS specific queries and manipulation + +=head1 SYNOPSIS + + use Sys::Guestfs::GuestOS; + + $guestos = Sys::Guestfs::GuestOS->get_instance($os, $distro, $version) + +=head1 DESCRIPTION + +Sys::Guestfs::GuestOS provides a mechanism for querying and manipulatin...
2019 Jul 11
5
[p2v PATCH 0/4] More imports and fixes
See individual patches for details. Pino Toscano (4): Add valgrind suppression file podwrapper: the tools here start with p2v Import some internal documentation podwrapper: adapt footer to p2v .gitignore | 6 + Makefile.am | 4 +- configure.ac | 1 + docs/Makefile.am | 65 ++++++++ docs/p2v-building.pod | 259
2019 Oct 01
1
[libnbd PATCH] docs: Add libnbd-security(1) man page
...-security.pod + $(PODWRAPPER) --section=1 --man $@ \ + --html $(top_builddir)/html/$@.html \ + $< + endif HAVE_POD diff --git a/docs/libnbd-security.pod b/docs/libnbd-security.pod new file mode 100644 index 0000000..5fe0926 --- /dev/null +++ b/docs/libnbd-security.pod @@ -0,0 +1,32 @@ +=head1 NAME + +libnbd-security - information about past security issues in libnbd + +=head1 DESCRIPTION + +This page details past security issues found in libnbd. + +For how to report new security issues, see the C<SECURITY> file in the +top level source directory, also available online here: +L<...
2011 Dec 01
3
[PATCH] docs: Say in xm(1) that xm is obsolete
Signed-off-by: Ian Jackson <ian.jackson@eu.citrix.com> diff -r 3b409f65abae docs/man/xm.pod.1 --- a/docs/man/xm.pod.1 Thu Dec 01 17:26:48 2011 +0000 +++ b/docs/man/xm.pod.1 Thu Dec 01 18:01:35 2011 +0000 @@ -1,6 +1,6 @@ =head1 NAME -xm - Xen management user interface +xm - Obsolete xen management user interface =head1 SYNOPSIS @@ -8,10 +8,14 @@ B<xm> I<subcommand> [I<args>] =head1 DESCRIPTION -The B<xm> program is the main interface for managing Xen guest -domains. The program can be u...
2020 May 01
1
[PATCH] WIP: ddrescue mapfile filter
...= ddrescue_pread, +}; + +NBDKIT_REGISTER_FILTER(filter) diff --git a/filters/ddrescue/nbdkit-ddrescue-filter.pod b/filters/ddrescue/nbdkit-ddrescue-filter.pod new file mode 100644 index 00000000..3d9059bd --- /dev/null +++ b/filters/ddrescue/nbdkit-ddrescue-filter.pod @@ -0,0 +1,76 @@ +=head1 NAME + +nbdkit-ddrescue-filter - nbdkit filter for serving from ddrescue dump + +=head1 SYNOPSIS + + nbdkit --filter=ddrescue plugin [plugin-args...] ddrescue-mapfile=file.map + + nbdkit --filter=ddrescue file file=file.img ddrescue-mapfile=file.map [plugin-args...] + +=head1 DESCRIPTION + +C<nb...
2019 Sep 23
1
[p2v PATCH] doc: start filling release notes
...release-notes.pod @@ -4,7 +4,7 @@ p2v-release-notes - virt-p2v Release Notes =begin comment -UPDATED TO <commit id> +UPDATED TO 9b009aa4a3898648fe68301d1c5ed774a0bf2e38 =end comment @@ -17,19 +17,39 @@ document.body.style.backgroundRepeat = "no-repeat"; =end comment -=head1 RELEASE NOTES FOR VIRT-P2V 1.XX +=head1 RELEASE NOTES FOR VIRT-P2V 1.42.0 These release notes only cover the differences from the previous -stable/dev branch split (1.40.0). For detailed changelogs, please see -the git repository, or the ChangeLog file distributed in the tarball. +version. For...
2016 Jan 04
3
[PATCH 0/3] podwrapper: Generate consistent WARNING sections (RHBZ#1293527).
Fix for: https://bugzilla.redhat.com/show_bug.cgi?id=1293527 Note that patches 2/3 and 3/3 are dependent on each other, ie. applying 2/3 on its own will break the build. So I may combine these when applying the series. Rich.
2019 Apr 25
1
[nbdkit PATCH] noextents: Document use case with tmpfs
...extents-filter> disables this so that the plugin appears to be fully allocated. +This filter can be useful when combined with L<nbdkit-file-plugin(1)> +serving a file from a file system known to have poor C<lseek(2)> +performance (C<tmpfs> is known to be one such system). + =head1 PARAMETERS There are no parameters specific to nbdkit-noextents-filter. Any @@ -23,7 +27,8 @@ plugin in the normal way. L<nbdkit(1)>, L<nbdkit-filter(3)>, -L<nbdkit-nozero-filter(1)>. +L<nbdkit-nozero-filter(1)>, +L<nbdkit-file-plugin(1)>. =head1 AUTHORS diff...
2018 Nov 01
1
[PATCH UNFINISHED] v2v: Split up huge manual page into smaller pages.
This patch is incomplete, but early feedback would be welcome. Rich.
2020 Mar 04
0
[PATCH nbdkit 3/4] New filter: exitlast filter to exit on last client connection.
...| 6 +- 10 files changed, 276 insertions(+), 3 deletions(-) diff --git a/docs/nbdkit-service.pod b/docs/nbdkit-service.pod index 44bc111f..ecc8e94b 100644 --- a/docs/nbdkit-service.pod +++ b/docs/nbdkit-service.pod @@ -143,6 +143,7 @@ L</SOCKET ACTIVATION>. =head1 SEE ALSO L<nbdkit(1)>, +L<nbdkit-exitlast-filter(1)>, L<nbdkit-ip-filter(1)>, L<systemd(1)>, L<systemd.socket(5)>, diff --git a/filters/exitlast/nbdkit-exitlast-filter.pod b/filters/exitlast/nbdkit-exitlast-filter.pod new file mode 100644 index 00000000..e0fbd6ea...
2018 Jan 24
0
[nbdkit PATCH 3/3] filters: Add nozero filter
...nf directly, for example: L<nbdkit(1)>, L<nbdkit-plugin(1)>. +Filters: + +L<nbdkit-cache-filter(1)>, +L<nbdkit-cow-filter(1)>, +L<nbdkit-delay-filter(1)>, +L<nbdkit-nozero-filter(1)>, +L<nbdkit-offset-filter(1)>, +L<nbdkit-partition-filter(1)>. + =head1 AUTHORS Richard W.M. Jones diff --git a/docs/nbdkit.pod b/docs/nbdkit.pod index 1167245..d66bf7c 100644 --- a/docs/nbdkit.pod +++ b/docs/nbdkit.pod @@ -920,6 +920,7 @@ Filters: L<nbdkit-cache-filter(1)>, L<nbdkit-cow-filter(1)>, L<nbdkit-delay-filter(1)>, +L<nbdkit-nozero-...
2020 May 01
4
[PATCH] [v2] WIP: ddrescue mapfile filter
...= ddrescue_pread, +}; + +NBDKIT_REGISTER_FILTER(filter) diff --git a/filters/ddrescue/nbdkit-ddrescue-filter.pod b/filters/ddrescue/nbdkit-ddrescue-filter.pod new file mode 100644 index 00000000..8210866b --- /dev/null +++ b/filters/ddrescue/nbdkit-ddrescue-filter.pod @@ -0,0 +1,74 @@ +=head1 NAME + +nbdkit-ddrescue-filter - nbdkit filter for serving from ddrescue dump + +=head1 SYNOPSIS + + nbdkit --filter=ddrescue plugin [plugin-args...] ddrescue-mapfile=file.map + + nbdkit --filter=ddrescue file file=file.img ddrescue-mapfile=file.map [plugin-args...] + +=head1 DESCRIPTION + +C<nb...
2018 Jan 19
0
[PATCH nbdkit filters-v2 5/5] INCOMPLETE filters: Add nbdkit-partition-filter.
...ter.pod index 131a321..a95c2a6 100644 --- a/filters/offset/nbdkit-offset-filter.pod +++ b/filters/offset/nbdkit-offset-filter.pod @@ -36,7 +36,7 @@ Note it is an error if the range parameter is supplied and C<offset+range> is larger than the size of data served by the underlying plugin. -=head1 EXAMPLE +=head1 EXAMPLES Using L<nbdkit-file-plugin(1)>, serve the file C<disk.img> starting at offset C<1M>. The total length served is C<100M> (the underlying file @@ -44,11 +44,26 @@ must therefore be at least C<101M> in length): nbdkit --filter=offset file...
2010 Sep 21
1
[PREVIEW ONLY] Refactor data transfer code
...; +use Sys::VirtV2V::Connection::Volume; +use Sys::VirtV2V::Transfer::ESX; +use Sys::VirtV2V::Transfer::SSH; +use Sys::VirtV2V::Transfer::Local; use Sys::VirtV2V::Util qw(user_message); use Locale::TextDomain 'virt-v2v'; @@ -39,70 +42,47 @@ use Locale::TextDomain 'virt-v2v'; =head1 NAME -Sys::VirtV2V::Connection::LibVirt - Read libvirt metadata from libvirtd - -=head1 SYNOPSIS - - use Sys::VirtV2V::Connection::LibVirt; - - $conn = Sys::VirtV2V::Connection::LibVirt->new - ("xen+ssh://xenserver.example.com/", $name, $target); - $dom = $conn->get_dom(); +Sys...
2019 Oct 01
0
[libnbd PATCH] docs: Add libnbd-security(1) man page
...-security.pod + $(PODWRAPPER) --section=1 --man $@ \ + --html $(top_builddir)/html/$@.html \ + $< + endif HAVE_POD diff --git a/docs/libnbd-security.pod b/docs/libnbd-security.pod new file mode 100644 index 0000000..61a27fc --- /dev/null +++ b/docs/libnbd-security.pod @@ -0,0 +1,32 @@ +=head1 NAME + +libnbd-security - information about past security issues in libnbd + +=head1 DESCRIPTION + +This page details past security issues found in libnbd. + +For how to report new security issues, see the C<SECURITY> file in the +top level source directory, also available online here: +L<...
2010 Jan 29
4
[FOR REVIEW ONLY] ESX work in progress
The following patches are where I'm currently at with ESX support. I can now import a domain from ESX along with its storage. Note that I'm not yet doing any conversion. In fact, I've never even tested past the import stage (I just had an exit in there). The meat is really in the 4th patch. The rename of MetadataReader->Connection was because the Connection is now really providing
2020 Mar 04
2
[PATCH nbdkit v2] New filter: limit: Limit number of clients that can connect.
This is a second version of the limit filter. v1 was posted here: https://www.redhat.com/archives/libguestfs/2020-March/msg00015.html I didn't bother to repost the other three patches because they are the same. The difference is this version of the filter takes security more seriously. It shouldn't be possible for malicious clients to connect more than limit=N times to the plugin now,
2019 Apr 29
1
[nbdkit PATCH] nbd: Give some examples
...<--filter> to the nbdkit command line) makes it +possible to apply any nbdkit filter to any other NBD server. For now, this is limited to connecting to another NBD server over a named Unix socket without TLS, although it is feasible that future @@ -40,10 +42,38 @@ empty string). =back +=head1 EXAMPLES + +Expose the contents of an export served by an old style server over a +Unix socket to TCP network clients that only want to consume encrypted +data. Use I<--exit-with-parent> to clean up nbdkit at the same time +that the old server exits. + + ( sock=`mktemp -u` && + nbdk...
2018 Nov 02
2
[PATCH v2 0/2] v2v: Split up huge manual page into smaller pages.
Previously posted: https://www.redhat.com/archives/libguestfs/2018-November/msg00000.html https://www.redhat.com/archives/libguestfs/2018-November/msg00001.html This completes the split and rewrite of the virt-v2v manual to make it much simpler to understand and digest. Rich.
2010 May 06
1
[PATCH v2v] Pre-convert Windows guests.
...reet, Fifth Floor, Boston, MA 02110-1301 USA + +package Sys::VirtV2V::Converter::Windows; + +use strict; +use warnings; + +use Data::Dumper; +use Locale::TextDomain 'virt-v2v'; + +use XML::DOM; +use XML::DOM::XPath; + +use Sys::VirtV2V::UserMessage qw(user_message); + +use Carp; + +=pod + +=head1 NAME + +Sys::VirtV2V::Converter::Windows - Pre-convert a Windows guest to run on KVM + +=head1 SYNOPSIS + + use Sys::VirtV2V::GuestOS; + use Sys::VirtV2V::Converter; + + my $guestos = Sys::VirtV2V::GuestOS->instantiate($g, $os); + Sys::VirtV2V::Converter->convert($vmm, $guestos, $dom, $os); +...