I am installing a LAMP install on Debian GNU/Linux and have been asked to enter the following command
sudo touch /var/www/info.php
I was just wondering if anyone could explain what it does.
Thanks
Jack
|
That command creates an empty file called "info.php". The next step is probably to edit the file, and add something like this to it:
What this does is allow you to see all information about your Apache/PHP installation through your browser, usually to see if you have all the PHP libraries you need. When you have done installing, you should delete "info.php". |
|||
|
|
|
The best you can do is read the |
||||
|
|
man sudo– Didier Trosset Nov 10 '11 at 11:46man touch– Didier Trosset Nov 10 '11 at 11:46