Install Apache, PHP And MariaDB On CentOS

This tutorial shows how you can install an Apache2 webserver on a CentOS 7.0 server with PHP5 support (mod_php) and MariaDB (MySQL fork) support. LAMP is short for Linux, Apache, MySQL, PHP but actualy, it’s a CAMP: CentOS, Apache, MariaDB, PHP.  Install Apache server: # yum -y install httpd after resolving depedencies (apr, httpd tools, … Read moreInstall Apache, PHP And MariaDB On CentOS

How to create multiple directory levels in one command

I’m about to go to move files to my NAS, and I want to create subdirectories named Hercule, Systems, and Documents, and the Hercule directory has severals subdirectories named Saison01 to Saison13. How can I create these directories and subdirectories with one command? Answer: Use the “-p” option of the Unix/Linux mkdir command. The answer … Read moreHow to create multiple directory levels in one command