blob: ef5673f0697082a1af2d2f2150ff37326345fe71 (
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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
|
.TH "CREATE_GCLOOP_UCL" "6" "Jan 2004" "gcloop 0.99" "gcloop"
.SH NAME
create_gcloop_ucl \- creates gcloop_ucl images
.SH SYNOPSIS
.B create_gcloop_ucl [options] infile blocksize > outfile
.B create_gcloop_ucl -V
.SH DESCRIPTION
\fBcreate_gcloop_ucl\fR can be utilized to create an ucl compressed
image to be used as compressed loopback.
.SH PARAMETERS
.TP
.BR infile
Input image file, to use stdin instead use "-" instead of a filename
.TP
.BR outfile
Output file
.TP
.BR blocksize
Blocksize in bytes. The number has to be a multiple of 512.The
suggested sizes are 65536 (64k) and 131072 (128k). Due to kernel
memory allocation 128k is the current max
.TP
.SH OPTIONS
.TP
.BR -c
\&[not implemented yet]
Set the compression level, the range is up to the compressor used
commonly 0-10 for ucl algorithm and 0-9 for zlib algorithm.
.TP
.BR -V
Print the version and exit.
.TP
.BR -C
\&[not implemented yet]
Set the compression algorithm
.TP
.SH "EXAMPLES"
.B create_gcloop_ucl
image.iso 65536 >image.ucl
.br
.B create_gcloop_ucl
-c 9 image.ucl 131072 > image.ucl
.br
mkisofs -r datadir |
.B create_gcloop_ucl
- 131072 > image.ucl
.SH "REPORTING BUGS"
Please report bugs via http://bugs.gentoo.org/
.SH "SEE ALSO"
.BR compress_gcloop_ucl (1),
.BR extract_gcloop_ucl (1)
.SH AUTHORS
Paul 'Rusty' Russel (original author)
.br
Klaus Knopper <knopper@knopper.net>
.br
Luca Barbato <lu_zero@gentoo.org> (revamped version)
|