blob: fbeb11c2a2958f10b88a87ca60bf075ec870388a (
plain)
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
|
.TH MKSACFS 8
.SH NAME
mksacfs \- make a compressed file system
.SH SYNOPSIS
.B disk/mksacfs
.RB [ -u ]
.RB [ -b
.IR blocksize ]
.RB [ -o
.IR file ]
.I source
.SH DESCRIPTION
.I Mksacfs
copies files from the file tree
.I source
(default
.BR . )
to a the
.IR sacfs (4)
file system archive
.IR file .
.PP
The files and directory structure are divided into
.I blocksize
(default
.BR 4096 )
byte blocks.
Larger blocks make large files more compact but take longer to access.
.I Blocksize
must be at least 116.
If
.B -u
is given, the blocks are not compressed.
Otherwise each block is compressed using an efficient compression algorithm.
.SH SOURCE
.B /sys/src/cmd/disk/sacfs/mksacfs.c
.SH "SEE ALSO"
.IR sacfs (4)
|