在Ubuntu中解压zip文件可以通过以下命令实现:
unzip file.zip
这将会解压名为file.zip的zip文件到当前目录下。如果需要将文件解压到特定目录下,可以使用以下命令:
unzip file.zip -d /path/to/directory
这将会将文件解压到指定的目录下。