squashfs-tools icon indicating copy to clipboard operation
squashfs-tools copied to clipboard

tools to create and extract Squashfs filesystems

Results 38 squashfs-tools issues
Sort by recently updated
recently updated
newest added

Some compression algorithms ([zstd](https://github.com/facebook/zstd/blob/dev/README.md#the-case-for-small-data-compression), [lz4](https://github.com/lz4/lz4/blob/v1.8.3/lib/lz4frame.h#L481), [lzo](https://github.com/nemequ/lzo/blob/master/examples/dict.c), [deflate](https://www.zlib.net/manual.html#Advanced), ...) support using a custom preset dictionary to achieve higher compression ratios especially for "small" source data sizes. Given a corpus of known...

enhancement

When running mksquashfs over a s3 fuse filesytem, s3 returned a 403 which prevented the `close` call from succeeding. However, `mksquashfs` ignored this error and acted as if the operation...

enhancement

This is the equivalent to https://github.com/plougher/squashfs-tools/issues/25, but for input from a pseudo-file rather than tar. At the moment running `mksquashfs - -pf ` appears to only work for a seekable...

enhancement

sqfstar can end up creating several intermediate directories with owner = getuid() (and similarly gid and mode). It may be worth considering introducing flags to explicitly set that to something...

enhancement

I am doing cross compile of squashfs-tools, and met one issue: if the build host has help2man, then install-manpages.sh will run mksquashfs-manpage.sh, then run mksquashfs -help, but the built out...

enhancement

Removed redundant `else` statements from the read_super() function.

Although `mksquashfs` has options to control the timestamps on files, `unsquashfs` does not have any similar option. This can be a problem for builds which need to unsquashfs something and...

On certain file systems, such as TMPFS, user xattrs are not supported, which will cause setxattr() to fail, and current unsquashfs behavior will stop writing any xattrs from that point...

I would like to request an quite important changes in the squashfs core code: 1. make a possibility that while creation the user can select with permission it should have...

While the code already uses `#if[n]def linux` (although isn't `__linux__` more correct?), some Linux-specific header files are included unconditionally, and some are missing. - Missing `#include ` in `reader.c` which...