Читать книгу Kali Linux Penetration Testing Bible - Gus Khawaja - Страница 35
Gz Archive
ОглавлениеTo create compressed.tar.gz from files:$tar cfz compressed.tar.gz files
To extract compressed.tar.gz:$tar xfz compressed.tar.gz
To create a compressed.txt.gz file:$gzip file.txt> compressed.txt.gz
To extract compressed.txt.gz:$gzip -d compressed.txt.gz
Let's extract the rockyou.txt.gz
file that comes initially compressed in Kali:
root@kali:~# gzip -d /usr/share/wordlists/rockyou.txt.gz