0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 3 years have passed since last update.

Linux MINT にXAMPPをインストール

Posted at

久々に、virtual BOXに作ったLinux MINTの仮想マシンに、XAMPPをインストールしました。
その手順を忘れないように、記録します。

参考した記事
https://style.potepan.com/articles/19086.html

最初にダウンロードのURLを確認します。
https://www.apachefriends.org/download.html
ここで、最新のXAMPPのダウンロードボタンからURLを確認します。
ブラウザを右クリックして、リンクURLをコピーなどを使うと楽です。

 wget https://www.apachefriends.org/xampp-files/8.1.2/xampp-linux-x64-8.1.2-0-installer.run --no-check-certificate

証明書がないとエラーが出ましたので、'--no-check-certificate'を付けてダウンロードしました。

chmod +x ./xampp-linux-x64-8.1.2-0-installer.run 

全権限を付けました。

sudo ./xampp-linux-x64-8.1.2-0-installer.run

スーパーユーザーの権限で、インストールを行いました。

実は、古いPHPのバージョンでテストする必要があり、古いPHPのXAMPPを使っていました。
ですがWordPressのテストの必要が生じて、一度XAMPPをアンインストールして、今回の手順を行いました。

アンインストールは、こちらの記事を参考にしました。http://hitokotoubuntu.blogspot.com/2019/08/xampplinux.html

cd  /opt/lampp
sudo  ./uninstall

これで、アンインストールできます。

0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?