当我想在 satrap 文件夹中提取 tar 文件时出现错误

当我想在 satrap 文件夹中提取 tar 文件时出现错误

我是 Linux 新手,当我想提取 satrap 文件夹中的 tar 文件时,出现此错误:

You may not specify more than one `-Acdtrux' or `--test-label' option
Try `tar --help' or `tar --usage' for more information.

我在Linux中写这个命令:

tar  -xf  satrap.tar.gz -c /satrap_dir

请帮我 。

答案1

选项区分大小写。您编写的命令同时尝试提取数据 ( -x) 并创建它 ( -c)。从上下文来看,您似乎确实想要更改提取目录 ( -C)。因此,未经测试的命令变为,

tar -xf satrap.tar.gz -C /satrap_dir

请注意,通常您不应该写入根级文件夹 ( /satrap_dir)。这就是您自己的主目录的用途。

相关内容