Linux 管理者は /usr/domain フォルダーをバックアップする必要があり、出力は gzip で圧縮された tar である必要があります。 次のコマンドのどれを使用する必要がありますか?
正解:C
https://help.ubuntu.com/community/BackupYourSystem/TAR The key is passing the -z for compression. then the name of the compress file, then the path of what you want compressed. tar - is the command that creates the archive. It is modified by each letter immediately following, each is explained bellow. c - create a new backup archive. v - verbose mode, tar will print what it's doing to the screen. p - preserves the permissions of the files put in the archive for restoration later. z - compress the backup file with 'gzip' to make it smaller. f <filename> - specifies where to store the backup, backup.tar.gz is the filename used in this example. It will be stored in the current working directory, the one you set when you used the cd command.