Scroll to navigation

SQFSTAR(1) User Commands SQFSTAR(1)

NAME

sqfstar - tool to create a squashfs filesystem from a tar archive

SYNOPSIS


cat xxx.tar | sqfstar [OPTIONS] FILESYSTEM [exclude files]
zcat xxx.tgz | sqfstar [OPTIONS] FILESYSTEM [exclude files]
xzcat xxx.tar.xz | sqfstar [OPTIONS] FILESYSTEM [exclude files]
zstdcat xxx.tar.zst | sqfstar [OPTIONS] FILESYSTEM [exclude files]

DESCRIPTION

Squashfs is a highly compressed read-only filesystem for Linux. It uses either gzip/xz/lzo/lz4/zstd compression to compress both files, inodes and directories. Inodes in the system are very small and all blocks are packed to minimise data overhead. Block sizes greater than 4K are supported up to a maximum of 1Mbytes (default block size 128K).

Squashfs is intended for general read-only filesystem use, for archival use (i.e. in cases where a .tar.gz file may be used), and in constrained block device/memory systems (e.g. embedded systems) where low overhead is needed.

OPTIONS

Filesystem compression options:

set data block to BLOCK-SIZE. Default 128 Kbytes. Optionally a suffix of K, KB, Kbytes or M, MB, Mbytes can be given to specify Kbytes or Mbytes respectively.
select COMP compression. Run -help-comp COMP to get compressor options for COMP, or ALL for all the compressors. Compressors available: gzip (default), lzo, lz4, xz, zstd, lzma.
do not compress inode table.
do not compress the uid/gid table (implied by -noI).
do not compress data blocks.
do not compress fragment blocks.
do not compress extended attributes.
do not compress any of the data or metadata. This is equivalent to specifying -noI -noD -noF and -noX.

Filesystem build options:

make the filesystem exportable via NFS.
do not detect sparse files.
do not use fragments.
do not pack tail ends into fragments.
do not perform duplicate checking.
do not hardlink files, instead store duplicates.
allow POSIX regular expressions to be used in exclude dirs/files.
allow tar files to be concatenated together and fed to Sqfstar. Normally a tarfile has two consecutive 512 byte blocks filled with zeros which means EOF and Sqfstar will stop reading after the first tar file on encountering them. This option makes Sqfstar ignore the zero filled blocks.
list of exclude dirs/files. One per line.

Filesystem time options:

set filesystem creation timestamp to TIME. TIME can be "inode", which means use the latest inode timestamp, an unsigned 32-bit int indicating seconds since the epoch (1970-01-01) or a string value which is passed to the "date" command to parse. Any string value which the date command recognises can be used such as "now", "last week", or "Wed Feb 15 21:02:39 GMT 2023".
set all file and directory timestamps to TIME. TIME can be "inode", which means use the latest inode timestamp, an unsigned 32-bit int indicating seconds since the epoch (1970-01-01) or a string value which is passed to the "date" command to parse. Any string value which the date command recognises can be used such as "now", "last week", or "Wed Feb 15 21:02:39 GMT 2025". This option sets and overrides the -root-time option.
set root directory time to TIME. TIME can be "inode", which means use the latest inode timestamp, an unsigned 32-bit int indicating seconds since the epoch (1970-01-01) or a string value which is passed to the "date" command to parse. Any string value which the date command recognises can be used such as "now", "last week", or "Wed Feb 15 21:02:39 GMT 2025".
build a reproducible filesystem image. This is equivalent to -mkfs-time inode, which achieves reproducibility by setting the filesystem build time to the latest inode timestamp. Obviously the image won't be reproducible if the timestamps or content changes.
build a reproducible filesystem image. This is equivalent to specifying -mkfs-time TIME and -inode-time TIME, which achieves reproducibility by setting all timestamps to TIME. This option can be used in cases where timestamps may change, and where -repro cannot be used for this reason.

Filesystem permissions options:

make all files and directories owned by root.
set root directory permissions to MODE. MODE can be symbolic or octal (see section Symbolic mode specification). Default root mode is ugo=rwx or 0777 octal.
set root directory owner to specified USER, USER can be either an integer uid or user name.
set root directory group to specified GROUP, GROUP can be either an integer gid or group name.
set all file (non-directory) permissions to MODE. MODE can be symbolic or octal (see section Symbolic mode specification).
set all directory permissions to MODE. MODE can be symbolic or octal (see section Symbolic mode specification).
set all file and directory uids to specified USER, USER can be either an integer uid or user name.
set all file and directory gids to specified GROUP, GROUP can be either an integer gid or group name.
offset all uid and gids by specified VALUE. VALUE should be a positive integer.
tar files often do not store permissions for intermediate directories. This option sets the default directory permissions to MODE. MODE can be symbolic or octal (see section Symbolic mode specification). Default mode is u=rwx,go=rx or 0755 octal. This also sets the root directory mode.
tar files often do not store uids for intermediate directories. This option sets the default directory owner to USER, rather than the user running Sqfstar. USER can be either an integer uid or user name. This also sets the root directory uid.
tar files often do not store gids for intermediate directories. This option sets the default directory group to GROUP, rather than the group of the user running Sqfstar. GROUP can be either an integer gid or group name. This also sets the root directory gid.

Filesystem pseudo options:

add pseudo file definition. The definition should be quoted. See section "Pseudo file definition format" for format details.
specify a default pseudo directory which will be used in pseudo definitions if a directory in the pathname does not exist. This also allows pseudo definitions to be specified without specifying all the directories in the pathname. The definition should be quoted.
specify a default pseudo directory which will be used in pseudo definitions if a directory in the pathname does not exist. The D type also allows a timestamp to be specified in addition to mode, uid and gid.
add list of pseudo file definitions. Pseudo file definitions in pseudo-files should not be quoted.
make pseudo file uids and gids override -all-root, -force-uid and -force-gid options.

Filesystem extended attribute (xattrs) options:

do not store extended attributes.
store extended attributes (default).
exclude any xattr names matching REGEX. REGEX is a POSIX regular expression, e.g. -xattrs-exclude '^user.' excludes xattrs from the user namespace.
include any xattr names matching REGEX. REGEX is a POSIX regular expression, e.g. -xattrs-include '^user.' includes xattrs from the user namespace.
add the xattr NAME with VAL to files. If an user xattr it will be added to regular files and directories (see man 7 xattr). Otherwise it will be added to all files. VAL by default will be treated as binary (i.e. an uninterpreted byte sequence), but it can be prefixed with 0s, where it will be treated as base64 encoded, or prefixed with 0x, where val will be treated as hexidecimal. Additionally it can be prefixed with 0t where this encoding is similar to binary encoding, except backslashes are specially treated, and a backslash followed by 3 octal digits can be used to encode any ASCII character, which obviously can be used to encode control codes. The option can be repeated multiple times to add multiple xattrs.

Sqfstar runtime options:

print version, licence and copyright message.
force Sqfstar to write to block device or file.
treat normally ignored errors as fatal.
no verbose output.
print files written to filesystem to stdout. This automatically disables the progress bar. See -info-file to output to file without disabling the progress bar.
print files written to filesystem to file FILE. This does not disable the progress bar.
do not display the progress bar.
display progress bar when using the -info option.
display a percentage rather than the full progress bar. Can be used with dialog --gauge etc.
throttle the I/O input rate by the given percentage. This can be used to reduce the I/O and CPU consumption of Sqfstar.
limit the I/O input rate to the given percentage. This can be used to reduce the I/O and CPU consumption of Sqfstar (alternative to -throttle).
use NUMBER processors. By default will use number of processors available.
use SIZE physical memory for caches. Use K, M or G to specify Kbytes, Mbytes or Gbytes respectively.
use PERCENT physical memory for caches. Default 25%.
print default memory usage in Mbytes.
allow PERCENT more threads to run in parallel than available processors. Doing this may increase CPU utilisation. Default is 0%, because normally overcommiting reduces performance due to trashing. The percentage value is at the granularity of the number of processors, e.g. 4 processors have a percentage granularity of 25%, and 20 processors have a percentage granularity of 5%.

Expert options (these may make the filesystem unmountable):

do not pad filesystem to a multiple of 4K.
skip OFFSET bytes at the beginning of FILESYSTEM. Optionally a suffix of K, M or G can be given to specify Kbytes, Mbytes or Gbytes respectively. Default 0 bytes.
synonym for -offset.

Help options:

print help summary information to pager (or stdout if not a terminal).
print the help information for options matching REGEX to pager (or stdout if not a terminal).
print the help information for section SECTION to pager (or stdout if not a terminal). If SECTION does not exactly match a section name, it is treated as a regular expression, and all section names that match are displayed. Use "list" as section name to get a list of sections and their names.
print compressor options for compressor COMP. Use "list" to get a list of available compressors, and "all" to get the compressor options for all the compressors.
print help information for all Sqfstar options and sections to pager (or stdout if not a terminal).
print compressor options for selected compressor.
shorthand alternative to -help.
shorthand alternative to -help-option.
shorthand alternative to -help-section.
shorthand alternative to -help-all.
do not use a pager to output help information.
use WIDTH columns to output help information. Useful if output is not to a terminal.

Miscellaneous options:

alternative name for mkfs-time.
alternative name for -all-root.
alternative name for -noI.
alternative name for -noId.
alternative name for -noD.
alternative name for -noF.
alternative name for -noX.

PSEUDO FILE DEFINITION FORMAT

create a directory.
modify filename.
create a block device.
create a character device.
create file from stdout of command.
create a symbolic link.
create a socket (s) or FIFO (f).
create an extended attribute.
create a hard-link to linkname, follows symlinks.
create a hard-link to linkname.
same, but link to pseudo file.
create a directory with timestamp time.
modify a file with timestamp time.
create block device with timestamp time.
create char device with timestamp time.
create file with timestamp time.
create symlink with timestamp time.
create socket/fifo with timestamp time.

SYMBOLIC MODE SPECIFICATION

The symbolic mode is of the format [ugoa]*[[+-=]PERMS]+. PERMS = [rwxXst]+ or [ugo], and the sequence can be repeated separated with commas.

A combination of the letters ugoa specify which permission bits will be affected, u means user, g means group, o means other, and a means all or ugo.

The next letter is +, - or =. The letter + means add to the existing permission bits, - means remove the bits from the existing permission bits, and = means set the permission bits.

The permission bits (PERMS) are a combination of [rwxXst] which sets/adds/removes those bits for the specified ugoa combination, r means read, w means write and x means execute for files or search for directories. X has a special meaning, if the file is a directory it is equivalent to x or search, but if it is a non-directory, it only takes effect if execute is already set for user, group or other. The s flag sets user or group ID on execution, and the t flag on a directory sets restricted deletion, or historically made the file sticky if a non-directory.

The permission bits can also be u, g or o, which takes the permission bits from the user, group or other of the file respectively.

EXIT STATUS

0
Sqfstar successfully generated a filesystem.
1
Fatal errors occurred, Sqfstar aborted and did not generate a filesystem.

COMPRESSORS AVAILABLE AND COMPRESSOR SPECIFIC OPTIONS

gzip (default):

COMPRESSION-LEVEL should be 1 .. 9 (default 9).
WINDOW-SIZE should be 8 .. 15 (default 15).
Compress using strategy1,strategy2,...,strategyN in turn and choose the best compression. Available strategies: default, filtered, huffman_only, run_length_encoded and fixed.

lzo:

Where ALGORITHM is one of: lzo1x_1, lzo1x_1_11, lzo1x_1_12, lzo1x_1_15, lzo1x_999 (default).
COMPRESSION-LEVEL should be 1 .. 9 (default 8). Only applies to lzo1x_999 algorithm.

lz4:

Compress using LZ4 High Compression.

xz:

Compress using filter1,filter2,...,filterN in turn (in addition to no filter), and choose the best compression. Available filters: x86, arm, armthumb, arm64, powerpc, sparc, ia64, riscv.
Use DICT-SIZE as the XZ dictionary size. The dictionary size can be specified as a percentage of the block size, or as an absolute value. The dictionary size must be less than or equal to the block size and 8192 bytes or larger. It must also be storable in the xz header as either 2^n or as 2^n+2^(n+1). Example dict-sizes are 75%, 50%, 37.5%, 25%, or 32K, 16K, 8K etc.

zstd:

COMPRESSION-LEVEL should be -131072 .. -1 or 1 .. 22 (default 15). Negative compression levels correspond to the zstd --fast option.

lzma:

(no options) (deprecated - no kernel support)

ENVIRONMENT

If set, this is used as the directory to write the file sqfs_cmdline which contains the command line arguments given to Sqfstar. Each command line argument is wrapped in quotes to ensure there is no ambiguity when arguments contain spaces. If the file already exists then the command line is appended to the file.
If set, this is used as the filesystem creation timestamp. Also any file timestamps which are after SOURCE_DATE_EPOCH will be clamped to SOURCE_DATE_EPOCH. See https://reproducible-builds.org/docs/source-date-epoch/ for more information.
If set, this is used as the name of the program used to display the help text. The value can be a simple command or a pathname. The default is /usr/bin/pager.

EXAMPLES

Create a Squashfs filesystem from the uncompressed tar file "archive.tar". Sqfstar will use the default compressor (normally gzip), and block size of 128 Kbytes.
Create a Squashfs filesystem from the compressed tar file "archive.tgz". Sqfstar will use the default compressor (normally gzip), and block size of 128 Kbytes.
Use a block size of 1 Mbyte and Zstandard compression to create the filesystem.
Tar files do not supply a definition for the root directory, and the default is to make the directory owned/group owned by the user running Sqfstar. The above command sets the ownership/group ownership to root.
The default permissions for the root directory is 0777 (rwxrwxrwx). The above command sets the permissions to 0755 (rwxr-xr-x).
Set all file and directory timestamps to "now" (current time) in the filesystem.
Make all files and directories in the filesystem owned by "phillip".
Make all files readable by everyone, but only writable by user, all other permission bits are unaffected.
Exclude file1 and file2 from the tar file when creating filesystem.
Exclude any files in the top level directory which matches the wildcard pattern "*.gz".
Exclude any file which matches the wildcard pattern "*.gz" anywhere within the tar file. The initial "..." indicates the wildcard pattern is "non-anchored" and will match anywhere.

Note: when passing wildcarded names to Sqfstar, they should be quoted (as in the above examples), to ensure that they are not processed by the shell.

Using pseudo file definitions

Create a directory called "build_dir" in the output filesystem.
Create a reference called "version.txt" to a file not in the tar archive, which acts as if that file was in the tar archive.
Create a file called "date.txt" which holds the output (stdout) from running the "date" command.
As above, but, showing that filenames can have spaces, if they are quoted. The quotes need to be blackslashed to protect them from the shell.
Create a file containing the contents of partition /dev/sda1". The above allows input from these special files to be captured and placed in the Squashfs filesystem.

Note: pseudo file definitions should be quoted (as in the above examples), to ensure that they are passed to Mksquashfs as a single argument, and to ensure that they are not processed by the shell.

AUTHOR

Written by Phillip Lougher <phillip@squashfs.org.uk>

COPYRIGHT

Copyright © 2025 Phillip Lougher <phillip@squashfs.org.uk>

This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2, or (at your option) any later version.

This program 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 General Public License for more details.

SEE ALSO

mksquashfs(1), unsquashfs(1), sqfscat(1)

The README for the Squashfs-tools 4.7.2 release, describing the new features can be read here https://github.com/plougher/squashfs-tools/blob/master/Documentation/4.7.2/README

The Squashfs-tools USAGE guides and other documentation can be read here https://github.com/plougher/squashfs-tools/blob/master/Documentation/4.7.2

August 2025 sqfstar version 4.7.2