我正在 ubuntu 13.04 中安装 xampp,但是在安装 xampp 时......
当我尝试提取文件时,它显示以下消息
sudo tar xvfz xampp-linux-1.8.1.tar.gz -C /opt
答复如下..
tar (child): xampp-linux-1.8.1.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
如何消除错误。
答案1
我不明白您从哪里得到它,但是下面是安装方法:
1)添加ppa:
$ sudo add-apt-repository ppa:upubuntu-com/xampp
2)更新 repo 索引:
$ sudo apt-get update
3)安装XAMPP:
$ sudo apt-get install xampp
玩得开心,如果您有任何问题,请在下面评论。如果是这样,我很乐意帮助您。
答案2
我不知道您从哪里获得该软件包。但是 XAMP 的安装非常简单。使用++CTRL打开您的终端,然后完美地逐行粘贴这些行。ALTT
对于 32 位 Ubuntu
wget http://www.apachefriends.org/download.php?xampp-linux-1.8.3-1-installer.run
chmod +x xampp-linux-1.8.3-1-installer.run
./xampp-linux-1.8.3-1-installer.run
对于 64 位 Ubuntu
wget http://www.apachefriends.org/download.php?xampp-linux-x64-1.8.3-1-installer.run
chmod +x xampp-linux-x64-1.8.3-1-installer.run
./xampp-linux-x64-1.8.3-1-installer.run
安装后启动 XAMP 输入命令如下
/opt/lampp/lampp start
然后检查您的浏览器 http://localhost
是否正确安装。