logo
Free, unlimited AI code reviews that run on commit
git-lrc git-lrc GitHub Install Now We'd appreciate a star git-lrc - Free, unlimited AI code reviews that run on commit | Product Hunt git-lrc - Free, unlimited AI code reviews that run on commit | Product Hunt

httpfs2 - mount a file from a http server into the filesystem

Author

MichalSuchanek <hramrach@centrum.cz>
           Author.

                                                   04/01/2024                                         HTTPFS2(1)

Authors

           Miklos Szeredi <miklos@szeredi.hu>
           hmb  marionraven at users.sourceforge.net
           Michal Suchanek <hramrach@centrum.cz>

Bugs

       The process can be stopped by typing ^Z on the terminal which may not be desirable under some
       circumstances.

Copying

       Free use of this software is granted under the terms of the GNU General Public License (GPL).

Description

       httpfs2 is a FUSE based filesystem for mounting http or https URLS as files in the filesystem. There is
       no notion of listable directories in http so only a single URL can be mounted. The server must be able to
       send byte ranges.

Exit Status

0
           Successfully connected to the server

       other
           Failure (url parsing error, server error, FUSE setup error). Some FUSE errors may happen only after
           the process forks so they will not be returned in exit value.

Name

       httpfs2 - mount a file from a http server into the filesystem

Options

-cconsole
           Attempt to use the file ior device console for output after fork. The default is /dev/console.

       -f
           Do not fork, stay in foreground.

       -ttimeout
           Use different timeout for connections. Default '30’s.

       URL
           The url should specify the protocol as http or https, and it may specify basic authentication
           username and password. Currently special characters like whitespace are not handled so the URL cannot
           contain them. See a sample URL below:

               http://user:password@server.com/dir/file

       FUSE-OPTIONS
           These options are passed to the FUSE library. At the very least the mount point should be specified.

Synopsis

httpfs2 [OPTIONS] URLFUSE-OPTIONShttpfs2_ssl [OPTIONS] URLFUSE-OPTIONS

See Also