我正在尝试在 32 位 Ubuntu 操作系统上安装 xampp 1.8.2-1-installer.run。当我从 root 输入
sudo tar xvfz xampp-linux-1.8.2.tar.gz -C /opt
tar (child): xampp-linux-1.8.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
这是我输入 ls 时得到的结果
xampp-linux-x64-1.8.2.-1-intaller(1).run
xampp-linux-x64-1.8.2.-1-intaller(1).run~
xampp-linux-x64-1.8.2.-1-intaller(1).run.part
xampp-linux-x64-1.8.2.-1-intaller(1).run
答案1
看起来您还没有下载完 XAMPP。您确定您有正确的文件 ( xampp-linux-1.8.2.tar.gz
) 来执行命令吗?另外,请确保在 xfvz 前添加一个破折号,这样它就会显示sudo tar -xfvz xampp-linux-1.8.2.tar.gz -C /opt
。