7z를 사용하여 AES 256 암호화를 확보하고 비밀번호 문구를 사용하는 경우에만 아카이브 및 파일 이름을 볼 수 있습니다. 필자의 명령 줄에 필수 '암호'옵션이 누락되었습니다.
예를 들어, 나는 맨 페이지에서 자유롭게 빌려왔다.
7z a \
-t7z -m0=lzma2 -mx=9 -mfb=64 \
-md=32m -ms=on -mhe=on -p'eat_my_shorts' \
archive.7z dir1
약간 더 안전한 방법은 실제로 -p
필드를 비워 두는 것 입니다. 그러면 실제로 아카이브를 만들기 전에 7z가 암호를 입력하라는 메시지를 표시합니다.
설명:
다음은 7z 명령 줄에 정통하지 않은 사람들에 대한 설명입니다.
a Add (dir1 to archive.7z)
-t7z Use a 7z archive
-m0=lzma2 Use lzma2 method
-mx=9 Use the '9' level of compression = Ultra
-mfb=64 Use number of fast bytes for LZMA = 64
-md=32m Use a dictionary size = 32 megabytes
-ms=on Solid archive = on
-mhe=on 7z format only : enables or disables archive header encryption
-p{Password} Add a password
아카이브 테스트 :
후속 아카이브는 7z l -slt archive.7z
아래에서 보여주는 명령으로 테스트 할 수 있습니다 .
andrew@illium~/test$ 7z l -slt archive.7z
7-Zip [64] 16.02 : Copyright (c) 1999-2016 Igor Pavlov : 2016-05-21
p7zip Version 16.02 (locale=en_US.UTF-8,Utf16=on,HugeFiles=on,64 bits,8 CPUs x64)
Scanning the drive for archives:
1 file, 12919 bytes (13 KiB)
Listing archive: archive.7z
Enter password (will not be echoed): <-------------
--
Path = archive.7z
Type = 7z
Physical Size = 12919
Headers Size = 247
Method = LZMA2:14 7zAES
Solid = -
Blocks = 1
----------
Path = dir1
Size = 0
Packed Size = 0
Modified = 2017-06-23 14:10:59
Attributes = D_ drwxr-xr-x
CRC =
Encrypted = -
Method =
Block =
Path = dir1/200px-Aum_calligraphy.svg.png
Size = 12663
Packed Size = 12672
Modified = 2015-05-06 07:29:23
Attributes = A_ -rw-r--r--
CRC = 77BD9922
Encrypted = + <-------------
Method = LZMA2:14 7zAES:19 <-------------
Block = 0
andrew@illium~/test$
암호를 요구 하고 7zAES : 19 (일명 AES-256) 로 암호화를 제공하는 표기법에 유의하십시오 (명확하게하기 위해이 점에 화살표를 표시했습니다).
주의 사항 :
매뉴얼 페이지에는 Linux에서 보관 목적으로 7z를 사용하지 말아야한다는 특정 경고가 있습니다.
DO NOT USE the 7-zip format for backup purpose on Linux/Unix because :
- 7-zip does not store the owner/group of the file.
Linux에서 디렉토리 백업과 관련하여 매뉴얼 페이지에 제공된 제한 사항과 해결 방법도 참고하십시오.