12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152 |
- <!DOCTYPE html>
- <html lang="en" xmlns="http://www.w3.org/1999/xhtml">
- <head>
- <title>Install phpSysInfo on Debian/Ubuntu</title>
- <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
- <meta charset="UTF-8">
- <meta name="keywords" content="Browser Based,Home Lab,Home Lab Ideas,Install Guide,Web Based,Web Based Tools,PHP,LAMP,Web Server,Web Server Administrator,Web Server Administration,PHP System Monitor,FOSS,Free Open Source Software,Free Software,Linux,Open-Source,Open Source Software,Debian,Self-Hosted,PHPSysInfo,How To,Tutorial,i12bretro">
- <meta name="author" content="i12bretro">
- <meta name="description" content="Install phpSysInfo on Debian/Ubuntu">
- <meta name="viewport" content="width=device-width, initial-scale=1.0">
- <meta name="revised" content="08/08/2022 05:44:26 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>Install phpSysInfo on Debian/Ubuntu</h1>
- </div>
- <div></div>
- <div id="content">
- <ol>
- <li>Log into the Debian/Ubuntu device</li>
- <li>Run the following commands in a terminal: <code class="codeBlock"># update repositories and install any available software updates<br />
- sudo apt update<br />
- sudo apt upgrade<br />
- # install Apache HTTPD<br />
- sudo apt install apache2<br />
- # install PHP components<br />
- sudo apt install php7.3 php7.3-xml<br />
- # download phpSysInfo<br />
- wget https://github.com/phpsysinfo/phpsysinfo/archive/v3.3.2.zip<br />
- # extract v3.3.2.zip<br />
- sudo unzip v3.3.2.zip -d /var/www/html<br />
- # rename the extracted folder<br />
- sudo mv /var/www/html/phpsysinfo-3.3.2 /var/www/html/phpsysinfo<br />
- # make a copy of phpsysinfo.ini<br />
- sudo cp /var/www/html/phpsysinfo/phpsysinfo.ini.new /var/www/html/phpsysinfo/phpsysinfo.ini<br />
- # set the owner of the new phpsysinfo directory to www-data<br />
- sudo chown -R www-data:www-data /var/www/html/phpsysinfo<br />
- sudo systemctl restart apache2</code></li>
- <li>Open a web browser and navigate to http://DNSorIP/phpsysinfo</li>
- </ol>
- <p>Source: <a href="https://github.com/phpsysinfo/phpsysinfo/releases/latest" target="_blank">https://github.com/phpsysinfo/phpsysinfo/releases/latest</a></p> </div>
- </div>
- </body>
- </html>
-
|