我正在尝试在 Oracle VM Virtual Box 中的 Ubuntu 16.04 中下载开放日志系统(OJS),但发生了以下情况......
root@zesan-VirtualBox:/var/www/html# tar zxvf /home/user/Downloads/ojs-3.0.2.tar.gz
tar (child): /home/user/Downloads/ojs-3.0.2.tar.gz: Cannot open: No such file or directory
tar (child): Error is not recoverable: exiting now
tar: Child returned status 2
tar: Error is not recoverable: exiting now
root@zesan-VirtualBox:/var/www/html#
答案1
“没有这样的文件或目录”通常意味着这个 - 文件不在您要查找的位置,或者名称不同。使用以下命令检查ls
路径和文件是否存在:
# ls /home/user/Downloads
答案2
你确定你真的下载了它吗?Tar 用于解压它,但似乎你的文件夹中没有它Downloads
。要下载,你可以使用 wget 例如
wget http://this-is-my-download.link/path/to/ojs-3.0.2.tar.gz