← 返回命令列表

Linux command

lzop 命令

文件

复制后可按需替换文件名、目录或参数。

常用示例

Compress file

lzop [file]

Decompress file

lzop -d [file.lzo]

Keep original file

lzop -k [file]

Compress with maximum compression

lzop -9 [file]

Test archive integrity

lzop -t [file.lzo]

Compress to stdout

lzop -c [file]

Compress and delete original file

lzop -U [file]

说明

lzop compresses files using the LZO library. Emphasizes speed over compression ratio. Very fast compression and decompression, suitable for real-time applications. Files have .lzo extension.

参数

-d, --decompress
Decompress files.
-k, --keep
Keep input files.
-c, --stdout
Write to standard output.
-t, --test
Test archive integrity.
-1 to -9
Compression level (default: -3).
-f, --force
Force overwrite of existing files.
-U
Delete input files after successful compression or decompression.
-v, --verbose
Display the name for each file compressed or decompressed.
-o _FILE_, --output=_FILE_
Write output to the specified file.
-p _DIR_, --path=_DIR_
Write output files into the specified directory.
-F, --no-checksum
Do not store or verify a checksum of the uncompressed data.

FAQ

What is the lzop command used for?

lzop compresses files using the LZO library. Emphasizes speed over compression ratio. Very fast compression and decompression, suitable for real-time applications. Files have .lzo extension.

How do I run a basic lzop example?

Run `lzop [file]` in a terminal, then adjust file names, paths, flags, or remote targets for your system.

What does -d, --decompress do in lzop?

Decompress files.