Files
little-backup-box-Bram/scripts/sysinfo.php
2019-02-14 14:29:00 +01:00

54 lines
1.3 KiB
PHP

<html lang="en">
<!-- Author: Dmitri Popov, dmpop@linux.com
License: GPLv3 https://www.gnu.org/licenses/gpl-3.0.txt -->
<head>
<meta charset="utf-8">
<title>Little Backup Box</title>
<link rel="shortcut icon" href="ichigo.png" />
<link rel="stylesheet" href="milligram.min.css">
<link rel="stylesheet" href="//fonts.googleapis.com/css?family=Roboto:300,300italic,700,700italic">
<meta name="viewport" content="width=device-width, initial-scale=1">
<style>
#content {
margin: 0px auto;
text-align: center;
}
img {
display: block;
margin-left: auto;
margin-right: auto;
margin-top: 1%;
margin-bottom: 1%;
}
</style>
</head>
<body>
<div id="content">
<img src="ichigo.svg" height="39px" alt="Ichigo">
<h1>Little Backup Box</h1>
<p>Basic system information</p>
<h2>Devices</h2>
<div style="display: inline-block; text-align: left;">
<?php
echo '<pre>';
passthru("lsblk");
echo '</pre>';
?>
</div>
<h2>Memory (in MB)</h2>
<div style="display: inline-block; text-align: left;">
<?php
echo '<pre>';
passthru("free -m");
echo '</pre>';
?>
</div>
<form>
<input type="button" onClick="history.go(0)" value="Refresh">
</form>
</div>
</body>
</html>