ubuntu中.tar如何解压
时间: 2023-12-06 12:36:52 浏览: 96
tar压缩解压
在Ubuntu中,可以使用以下命令来解压.tar文件:
```shell
tar -xvf yourfile.tar
```
其中,`yourfile.tar`是你要解压的文件名。如果你想将文件解压到指定的目录下,可以使用以下命令:
```shell
tar -xvf yourfile.tar -C /path/to/your/directory
```
其中,`/path/to/your/directory`是你要解压到的目录路径。
阅读全文