압축할 때 압축률 조정할 수 있나요?

윈도우즈에서 압축할 때는 최대, 보통, 빠르게 이런 식으로 조정이 가능하잖아요.
우분투에서도 가능한가요?

GUI 파일룰러에선 모르겠고
CLI 터미널 에서 가능한 법이 있는데
man zip , man gzip 로 확인 해보면

[code:262x3nku]zip 는
-# Regulate the speed of compression using the specified digit #, where -0 indicates no compression (store all
files), -1 indicates the fastest compression method (less compression) and -9 indicates the slowest compres-
sion method (optimal compression, ignores the suffix list). The default compression level is -6.
[/code:262x3nku]

[code:262x3nku]gzip 는
-# --fast --best
Regulate the speed of compression using the specified digit #, where -1 or --fast indicates the fastest com-
pression method (less compression) and -9 or --best indicates the slowest compression method (best compres-
sion). The default compression level is -6 (that is, biased towards high compression at expense of speed).

[/code:262x3nku] 를 알 수 있는데 보통 잘 안 쓰죠 :shock:

http://peazip.sourceforge.net/