ARCHIVEMOUNT(1) | User Commands | ARCHIVEMOUNT(1) |
archivemount - mounts an archive for access as a file system
archivemount [-hVdfs] [-o options] archivepath mountpoint
The archivemount command mounts the file tree contained in the archive archivepath on the directory mountpoint. The archive's contents can subsequently be accessed inside mountpoint as a file system. The umount(8) command performs the corresponding unmount operation.
archivemount is known to work under both linux and Mac OS X (via MacFUSE).
Consider the gzipped tar archive ``files.tgz'' containing files ``file1'' and ``file2'', and an empty directory ``mnt''.
$ ls files.tgz mnt/ $ archivemount files.tgz mnt
$ ls mnt file1 file2 [... Perform desired read/write operations on the archive via mnt/ ...]
$ umount mnt [... Any changes are saved to the archive ...]
Archive format support is provided by the libarchive(3) library. Read operations are supported for:
Archives compressed with gzip(1), bzip2(1), or compress(1) are automatically detected and transparently decompressed.
The following formats can be written:
Before writing, the original archive is renamed with a ``.orig'' extension appended to it. More detail about the read/write support can be found in the libarchive(3) documentation.
archivemount is built upon the FUSE (Filesystem in Userspace) library, and the complete set of available options depends upon the specific FUSE implementation. Execute archivemount -h to retrieve a definitive list.
These options are available to linux users using standard FUSE.
-o default_permissions enable permission checking by kernel
These options are available to Mac users using MacFUSE.
This sofware is free software; you can redistribute it and/or modify it under the terms of the GNU Library General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version.
This software is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Library General Public License for more details.
You should have received a copy of the GNU Library General Public License along with this software; if not, write to the Free Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
This is beta software and should be treated as such. Bug reports to the AUTHORS listed below would be appreciated.
archivemount is forced to run a single-thread mode for now. Support for stable multithreading is planned in a future release.
bzip2(1), compress(1), cpio(1), gzip(1), libarchive(3), pax(1), tar(1), umount(8), and zip(1)
``Filesystem in Userspace'': http://fuse.sourceforge.net/
``MacFUSE'': http://code.google.com/p/macfuse/
Archivemount is written and maintained by Andre Landwehr <andrel@cybernoia.de>.
This man page was written by Tom Duck <tom.duck@dal.ca> with material drawn from the page for libarchive(3).
15 August 2013 | ARCHIVEMOUNT version 0.8.7 |