我正在尝试使用tar存档我的主目录的内容,然后使用gzip压缩tar文件。我知道你可以使用cat,tar和gzip解压缩和解压缩.tar.gz文件,但我不知道如何压缩和存档。
答案 0 :(得分:-1)
嘿,这里有一个关于你的问题的链接。完整指南
https://www.howtogeek.com/248780/how-to-compress-and-extract-files-using-the-tar-command-on-linux/
tar -czvf name-of-archive.tar.gz /path/to/directory-or-file
以下是这些开关的实际含义:
-c: Create an archive.
-z: Compress the archive with gzip.
-v: Display progress in the terminal while creating the archive, also known as “verbose” mode. The v is always optional in these commands, but it’s helpful.
-f: Allows you to specify the filename of the archive.