반응형
1. * 테스트 파일 만들기
2. * 암호화 압축
tar -czf - soowim | openssl enc -e -aes256 -out soowimzip.tar.gz
3. * 암호화 된 파일 풀기
openssl enc -d -aes256 -in soowimzip.tar.gz | tar xz -C /BiO/
soowimzip.tar.gz 를 /BiO/ 에 풀어랏 !
3. * 풀린 데이터 확인
시원 하게 잘 풀렸다
요약
1) Encrypt 커맨드
- tar -czf - 파일이름 | openssl enc -e -aes256 -out 압축파일이름
- ex) tar -czf - soowim | openssl enc -e -aes256 -out soowimzip.tar.gz
2) Decrypt 커맨드
- openssl enc -d -aes256 -in 압축파일이름 | tar xz -C 압축파일 풀 경로
- ex) openssl enc -d -aes256 -in soowimzip.tar.gz | tar xz -C /BiO/Install
반응형
'server eng' 카테고리의 다른 글
linux Ubuntu(Linux) echo 텍스트 색상 출력하기 (0) | 2022.06.11 |
---|---|
linux Let's Encrypt free ssl 적용하기 10초 컷 ubuntu 20.04 (0) | 2022.06.10 |
linux useradd default home 설정하기 ubuntu 20.04 (0) | 2022.06.08 |
apache ERR_TOO_MANY_REDIRECTS flush dns (0) | 2022.06.06 |
ACPI Error: SMBus/IPMI/GenericSerialBus write requires Buffer of length 66, found length 32 (0) | 2022.06.05 |