0304.html 2.5 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546
  1. <!DOCTYPE html>
  2. <html lang="en" xmlns="http://www.w3.org/1999/xhtml">
  3. <head>
  4. <title>Quick Start Guide - Setup An Apache/PHP Web Server on Linux in Under 5 Minutes</title>
  5. <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
  6. <meta charset="UTF-8">
  7. <meta name="keywords" content="Web Server,XAMPP,PHP,MySQL,MariaDB,Quick Start,Under 5 Minutes,Linux,Debian,Ubuntu,Home Lab,Home Lab Ideas,Install Guide,Self-Hosted,Administration,Apache,Apache HTTPD,Apache HTTPD Administration,Database,Developer,Development,LAMP,Free Software,HTTPD,Under 10 Minutes,System Administration,System Administrator,Web Server Administration,Web Developer,How To,Tutorial,i12bretro">
  8. <meta name="author" content="i12bretro">
  9. <meta name="description" content="Quick Start Guide - Setup An Apache/PHP Web Server on Linux in Under 5 Minutes">
  10. <meta name="viewport" content="width=device-width, initial-scale=1.0">
  11. <meta name="revised" content="04/08/2022 04:54:27 AM" />
  12. <link rel="icon" type="image/x-icon" href="includes/favicon.ico">
  13. <script type="text/javascript" src="https://code.jquery.com/jquery-3.5.1.min.js"></script>
  14. <script type="text/javascript" src="includes/js/steps.js"></script>
  15. <link href="css/steps.css" rel="stylesheet" type="text/css" />
  16. </head>
  17. <body>
  18. <div id="gridContainer">
  19. <div class="topMargin"></div>
  20. <div id="listName" class="topMargin">
  21. <h1>Quick Start Guide - Setup An Apache/PHP Web Server on Linux in Under 5 Minutes</h1>
  22. </div>
  23. <div></div>
  24. <div id="content">
  25. <ol>
  26. <li>Log into the Linux device</li>
  27. <li>Run the following commands in a terminal windows:
  28. <div class="codeBlock"># download the xampp install script<br />
  29. wget -O xampp.run https://www.apachefriends.org/xampp-files/7.4.15/xampp-linux-x64-7.4.15-0-installer.run<br />
  30. # make the .run script executable<br />
  31. sudo chmod 755 ./xampp.run<br />
  32. # run the install script<br />
  33. sudo ./xampp.run</div>
  34. </li>
  35. <li>At the XAMPP Developer Files prompt type N and press Enter</li>
  36. <li>Type Y and press Enter to approve the selection</li>
  37. <li>Press Enter to begin the install</li>
  38. <li>Type Y and press Enter to continue</li>
  39. <li>Once the installation completes, open a web browser and navigate to http://localhost</li>
  40. <li>Welcome to your fully functional LAMP server in under 5 minutes</li>
  41. </ol>
  42. </div>
  43. </div>
  44. </body>
  45. </html>