-
-
Notifications
You must be signed in to change notification settings - Fork 4
/
sqshfs.1.in
81 lines (61 loc) · 1.6 KB
/
sqshfs.1.in
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
.TH sqshfs 1 "March 17, 2023" "Version @VERSION@" "User Commands"
.SH NAME
sqshfs \- mount a squashfs archive as a filesystem using FUSE.
.SH SYNOPSIS
.B sqshfs
[\fB-dfsVh\fR]
[\fB-o\fR \fIOPTIONS\fR]
\fIFILESYSTEM\fR \fIMOUNTPOINT\fR
.SH DESCRIPTION
.B sqshfs
is a tool to mount a squashfs archive as a filesystem using FUSE
(Filesystem in Userspace).
.SH OPTIONS
.TP
.BR \-d
Enable debug output.
.TP
.BR \-f
Run in the foreground.
.TP
.BR \-s
Disable multi-threaded operation.
.TP
.BR \-V
Print the version of \fBsqshfs\fR.
.TP
.BR -o " opt,[opt...]"
Specify FUSE mount options. The options are passed directly to FUSE.
.SH ARGUMENTS
.TP
.BR FILESYSTEM
The path to the squashfs archive to mount.
.TP
.BR MOUNTPOINT
The path to the directory where the squashfs archive will be mounted.
.SH EXIT STATUS
The \fBsqshfs\fR command exits with 0 on success, and non-zero on
failure.
.SH EXAMPLES
To mount a squashfs archive at /path/to/filesystem.sqsh to /mnt:
.BR sqshfs " " /path/to/filesystem.sqsh " " /mnt
To mount a squashfs archive at /path/to/filesystem.sqsh to /mnt with
FUSE mount options:
.BR sqshfs " " /path/to/filesystem.sqsh " " /mnt " " -o " " allow_other
To print the version of \fBsqshfs\fR:
.BR sqshfs " " -V
.SH SEE ALSO
.BR sqsh-cat (1),
.BR sqsh-ls (1),
.BR sqsh-stat (1),
.BR sqsh-unpack (1),
.BR sqsh-xattr (1),
.BR squashfs (5),
.BR fuse (8),
.BR fusermount (1)
.SH AUTHOR
Written by Enno Boland.
.SH COPYRIGHT
Copyright (C) 2023 Enno Boland. This is free software; see the source
for copying conditions. There is NO warranty; not even for
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.