12345678910111213141516171819202122232425262728293031323334353637383940414243444546 |
- <!DOCTYPE html>
- <html lang="en" xmlns="http://www.w3.org/1999/xhtml">
- <head>
- <title>Quick Start Guide - Setup An Apache/PHP Web Server on Linux in Under 5 Minutes</title>
- <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
- <meta charset="UTF-8">
- <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">
- <meta name="author" content="i12bretro">
- <meta name="description" content="Quick Start Guide - Setup An Apache/PHP Web Server on Linux in Under 5 Minutes">
- <meta name="viewport" content="width=device-width, initial-scale=1.0">
- <meta name="revised" content="04/08/2022 04:54:27 AM" />
- <link rel="icon" type="image/x-icon" href="includes/favicon.ico">
- <script type="text/javascript" src="https://code.jquery.com/jquery-3.5.1.min.js"></script>
- <script type="text/javascript" src="includes/js/steps.js"></script>
- <link href="css/steps.css" rel="stylesheet" type="text/css" />
- </head>
- <body>
- <div id="gridContainer">
- <div class="topMargin"></div>
- <div id="listName" class="topMargin">
- <h1>Quick Start Guide - Setup An Apache/PHP Web Server on Linux in Under 5 Minutes</h1>
- </div>
- <div></div>
- <div id="content">
- <ol>
- <li>Log into the Linux device</li>
- <li>Run the following commands in a terminal windows:
- <div class="codeBlock"># download the xampp install script<br />
- wget -O xampp.run https://www.apachefriends.org/xampp-files/7.4.15/xampp-linux-x64-7.4.15-0-installer.run<br />
- # make the .run script executable<br />
- sudo chmod 755 ./xampp.run<br />
- # run the install script<br />
- sudo ./xampp.run</div>
- </li>
- <li>At the XAMPP Developer Files prompt type N and press Enter</li>
- <li>Type Y and press Enter to approve the selection</li>
- <li>Press Enter to begin the install</li>
- <li>Type Y and press Enter to continue</li>
- <li>Once the installation completes, open a web browser and navigate to http://localhost</li>
- <li>Welcome to your fully functional LAMP server in under 5 minutes</li>
- </ol>
- </div>
- </div>
- </body>
- </html>
-
|