【Linux】ZorinOSにapache2をインストールして稼働させてみる。ついでにPHPも
はじめに
ザ・ウインドウズユーザな私にとって、これほど嬉しいLinuxはない!
ということで、Zorin OSというものにApacheを導入してみます。
Apacheのインストール
お決まりの「端末」ソフトで、インストールを行います。
$ sudo apt-get install apache2
Apacheの稼働
端末
$ sudo systemctl start apache2
$ sudo systemctl start apache2
Apacheの稼働確認
ブラウザ(Firefox)で、localhostを見てみましょう。
http://localhost/
こんなのが出てれば起動できてます!
余談ですが、何でG●●gleChr●meがこんなにシェアが大きいんですかね……
やっぱGoogleだから?Androidに標準インストールだから?
私は断然Firefox(火狐)派です(強調)
phpをインストールしてみる
(1)PHPのインストール
(2)Apacheの再起動
(1)PHPのインストール
$ sudo apt-get install php5 libapache2-mod-php5
(2)Apacheの再起動
phpのインストールが終わったらApacheを再起動します。
$ sudo systemctl restart apache2
PHPの動作確認
(1)PHPファイルの作成
(2)ブラウザで確認
(1)PHPファイルの作成
$ sudo gedit /var/www/html/testphp.php
エディタが立ち上がるので、
<?php phpinfo(); ?>
と入力して、保存
(2)ブラウザで確認
http://localhost/testphp.php
とりあえず、こんな感じでしょうか。
参考サイト様
Author And Source
この問題について(【Linux】ZorinOSにapache2をインストールして稼働させてみる。ついでにPHPも), 我々は、より多くの情報をここで見つけました https://qiita.com/nnahito/items/502f8ad007474990fc03著者帰属:元の著者の情報は、元のURLに含まれています。著作権は原作者に属する。
Content is automatically searched and collected through network algorithms . If there is a violation . Please contact us . We will adjust (correct author information ,or delete content ) as soon as possible .