我从 Apacheandfriends 下载了 XAMPP .run 文件,但安装对我来说不起作用。
我似乎无法导航到我的下载文件夹并且它一直说未找到命令。
root@john-Aspire-V3-531:/home/john# cd ~/downloads
bash: cd: /root/downloads: No such file or directory
root@john-Aspire-V3-531:/home/john# cd ~/Downloads
bash: cd: /root/Downloads: No such file or directory
root@john-Aspire-V3-531:/home/john# /downloads
bash: /downloads: No such file or directory
root@john-Aspire-V3-531:/home/john# cd /downloads
bash: cd: /downloads: No such file or directory
root@john-Aspire-V3-531:/home/john# cd downloads
bash: cd: downloads: No such file or directory
root@john-Aspire-V3-531:/home/john# downloads
downloads: command not found
我需要做什么?Apacheandfriends 说:
chmod 755 xampp-linux-1.8.2-0-installer.run
进而
./xampp-linux-1.8.2-0-installer.run
但它似乎认为该文件不存在。
谁能帮我?
答案1
您是 root 用户。~
指向您的 root 主目录。并且 root 不是桌面用户,因此没有下载目录。因此您的第一个命令失败,因为它需要是,~/Downloads
并且您需要是普通桌面用户。要退出 root shell,请使用exit
或logout
。
请退出 root shell 并以桌面用户身份发出这些命令。如果您这样做并使用格式错误的 ,它可能会破坏您的系统rm
。
如果安装过程中需要使用 root请停止使用该软件。如果该软件有任何后门或其他愚蠢的编码软件,您可能会将整个系统开放给全世界。请使用原生 LAMP 堆栈。它在 Ubuntu 上构建和设置后即可使用,设置和维护都更容易。只需发出 4 条命令和 1 个密码,即可安装 php 并运行 apache 和 mysql。
答案2
安装 LAMP 可能会遇到一些问题,例如其他应用程序的一些配置问题,以及 Apache、Mysql 和 PHP 的自动更新问题。您可以非常轻松地在 Ubuntu 上安装这些软件包,而不会造成任何额外困扰。请参阅此链接
sudo su
aptitude install mysql-server mysql-client
aptitude install apache2
aptitude install php5 libapache2-mod-php5
/etc/init.d/apache2 restart
aptitude search php5
aptitude install phpmyadmin
答案3
我认为您必须在终端中执行以下操作:
cd
(直到只剩下 root@john-Aspire-V3-531:~$)然后
cd Downloads
sudo chmod 755 /xampp-linux-x64-5.6.3-0-installer.run
sudo chmod +x /xampp-linux-x64-5.6.3-0-installer.run
sudo ./xampp-linux-x64-5.6.3-0-installer.run