55 lines
1.4 KiB
PHP
55 lines
1.4 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>
|
|
<p>Read the <a href="https://gumroad.com/l/linux-photography">Linux Photography</a> book</p>
|
|
</div>
|
|
</body>
|
|
</html>
|