nbdkit-curl-plugin - nbdkit curl plugin (HTTP, FTP, SSH and other protocols)
nbdkit -r curl url=http://example.com/disk.img nbdkit -r curl url=sftp://you@example.com/~/disk.img
"nbdkit-curl-plugin" is a plugin for nbdkit(1) which turns content served over HTTP, FTP, SSH, and more, into a Network Block Device. It uses a library called libcurl (also known as cURL) to read data from URLs. The exact list of protocols that libcurl can handle depends on how it was compiled, but most versions will handle HTTP, HTTPS, FTP, FTPS and SFTP (see: "curl-V"). For more information about libcurl, see <http://curl.haxx.se>. Note: This plugin supports writes. However: * For HTTP, you may not want nbdkit to issue PUT requests to the remote server (which probably doesn't understand them). * SFTP helpfully truncates the target file when you open it for writing. Not useful! To force nbdkit to use a readonly connection, pass the -r flag. EXAMPLES Basic usage is: nbdkit -r curl url=http://example.com/disk.img which serves the remote disk image as a NBD on TCP port 10809 (to control ports and protocols used to serve NBD see nbdkit(1)). You can also access SSH servers. This uses the SFTP protocol which is built into most SSH servers: nbdkit -r curl url=sftp://example.com/~/disk.img You may need to specify a username and/or a password. In this example the password is read from stdin: nbdkit -r curl url=sftp://example.com/~/disk.img username=fred password=-
password=PASSWORD Set the password to use when connecting to the remote server. Note that passing this on the command line is not secure on shared machines. password=- Ask for the password (interactively) when nbdkit starts up. sslverify=0 Don't verify the SSL certificate of the remote host. timeout=SECS Set the timeout for requests. timeout=0 Use the default libcurl timeout for requests. url=URL The URL of the remote disk image. This is passed to libcurl directly via "CURLOPT_URL" in curl_easy_setopt(3). This parameter is required. user=USERNAME Set the username to use when connecting to the remote server. This may also be set in the URL (eg. "http://foo@example.com/disk.img")
curl(1), libcurl(3), nbdkit(1), nbdkit-plugin(3).
Richard W.M. Jones Parts derived from Alexander Graf's "QEMU Block driver for CURL images".
Copyright (C) 2014 Red Hat Inc.
Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: * Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer. * Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. * Neither the name of Red Hat nor the names of its contributors may be used to endorse or promote products derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY RED HAT AND CONTRIBUTORS ''AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL RED HAT OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
Personal Opportunity - Free software gives you access to billions of dollars of software at no cost. Use this software for your business, personal use or to develop a profitable skill. Access to source code provides access to a level of capabilities/information that companies protect though copyrights. Open source is a core component of the Internet and it is available to you. Leverage the billions of dollars in resources and capabilities to build a career, establish a business or change the world. The potential is endless for those who understand the opportunity.
Business Opportunity - Goldman Sachs, IBM and countless large corporations are leveraging open source to reduce costs, develop products and increase their bottom lines. Learn what these companies know about open source and how open source can give you the advantage.
Free Software provides computer programs and capabilities at no cost but more importantly, it provides the freedom to run, edit, contribute to, and share the software. The importance of free software is a matter of access, not price. Software at no cost is a benefit but ownership rights to the software and source code is far more significant.
Free Office Software - The Libre Office suite provides top desktop productivity tools for free. This includes, a word processor, spreadsheet, presentation engine, drawing and flowcharting, database and math applications. Libre Office is available for Linux or Windows.
The Free Books Library is a collection of thousands of the most popular public domain books in an online readable format. The collection includes great classical literature and more recent works where the U.S. copyright has expired. These books are yours to read and use without restrictions.
Source Code - Want to change a program or know how it works? Open Source provides the source code for its programs so that anyone can use, modify or learn how to write those programs themselves. Visit the GNU source code repositories to download the source.
Study at Harvard, Stanford or MIT - Open edX provides free online courses from Harvard, MIT, Columbia, UC Berkeley and other top Universities. Hundreds of courses for almost all major subjects and course levels. Open edx also offers some paid courses and selected certifications.
Linux Manual Pages - A man or manual page is a form of software documentation found on Linux/Unix operating systems. Topics covered include computer programs (including library and system calls), formal standards and conventions, and even abstract concepts.