Lines Matching +full:network +full:- +full:oriented

6 command-line tools that use the libarchive library.
23 * **tar**: the 'bsdtar' program is a full-featured 'tar' implementation built on libarchive
26 * **unzip**: the 'bsdunzip' program is a simple replacement tool for Info-ZIP's unzip
31 The top-level directory contains the following information files:
33 * **NEWS** - highlights of recent changes
34 * **COPYING** - what you can do with this
35 * **INSTALL** - installation instructions
36 * **README** - this file
37 * **CMakeLists.txt** - input for "cmake" build tool, see INSTALL
38 * **configure** - configuration script, see INSTALL for details. If your copy of the source lacks …
40 The following files in the top-level directory are used by the 'configure' script:
42 * `Makefile.am`, `aclocal.m4`, `configure.ac` - used to build this distribution, only needed by mai…
43 * `Makefile.in`, `config.h.in` - templates used by configure script
61 * libarchive-formats.5 documents the file formats supported by the library
63 popular archive formats, including hard-to-find details about
82 * POSIX octet-oriented cpio
84 * Binary cpio (big-endian or little-endian)
86 * ISO9660 CD-ROM images (with optional Rockridge or Joliet extensions)
91 * 7-Zip archives (including archives that use zstandard compression)
118 * POSIX octet-oriented cpio
120 * Binary cpio (little-endian)
128 * 7-Zip archives (including archives that use zstandard compression)
149 * This is a heavily stream-oriented system. That means that
153 by processing them on-the-fly as they are read from or
154 written to a network or tape drive. This also makes
156 archives on-the-fly (such as webservers that provide
159 * In-place modification and random access to the contents
163 can re-open an archive and scan it from the beginning quickly
188 statically-linked programs. In particular, if you don't explicitly
191 libraries. This also reduces the size of statically-linked
196 platforms do not provide fully thread-safe versions of key C library
197 functions. On those platforms, libarchive will use the non-thread-safe
225 On write, the library always produces correctly-blocked output.
227 * The object-style approach allows you to have multiple archive streams
231 You can read an archive directly from an in-memory buffer or
233 functions to provide easy-to-use "open file," etc, capabilities.