fuse-archive icon indicating copy to clipboard operation
fuse-archive copied to clipboard

FUSE file system for archives and compressed files (ZIP, RAR, 7Z, ISO, TGZ, XZ...)

Results 10 fuse-archive issues
Sort by recently updated
recently updated
newest added

I think fuse-archive is a cool tool. Wanted to use GitHub action to build it and release. Here it is on my fork with linuxamd64 binary https://github.com/jarrodcolburn/fuse-archive/releases/tag/v0.1.14

Hard links produce an error and are not mounted. The issue is likely related to how libarchive handles hard links. How to reproduce: 1. Creating a tar.gz archive with two...

For some reason the test S_ISREG fails on regular files. For example: **stat /usr/lib/cups/backend/snmp** File: /usr/lib/cups/backend/snmp Size: 35120 Blocks: 72 IO Block: 4096 regular file Device: fd01h/64769d Inode: 656159 Links:...

I am noticing that if a tar.gz archive contains empty folders, these are not mounted. Is this behavior intended or am I missing something? Here how to reproduce: 1. Create...

A thousand apologies for complicating what I feel is an elegant project -- I do really appreciate the simplicity of it all, including the good-old-fashioned `Makefile`. For my purposes, I...

`fuse-archive` reports the number of blocks taken by each file as zero, which gives some confusing sizes with some tools. Example: ``` $ fuse-archive "Big One.zip" mnt $ ls -ls...

enhancement

I already tested several fuse tool, including infamous `archivemount`, for compressed files. I have a lot of log file into `7z`format. At last, I did try the good one [pixz](https://github.com/vasi/pixz)...

It appears that `fuse-archive` is a complete FS impl reading from libarchive-supported archives. It some cases (where one does not have FUSE kernel module available or root permissions), it is...

Thanks for that very useful piece of software! Do you think it would be possible to support format that are optimized for fast-decompression and random seeking with indexes such as...

fuse-archive uses `archive_read_data()` to get archive content. Gaps are filled with nulls and fuse-archive has no idea about them. It seems that operations on big sparse files could be improved....