diff --git a/README.md b/README.md index 9bddc41..67e75f5 100644 --- a/README.md +++ b/README.md @@ -56,6 +56,8 @@ The access the contents of the storage device, plug it into the Raspberry Pi and Activating the DLNA server also returns the disk space usage information. You can use this information to monitor the remaining free space on the storage device. +The **System info** link gives you access to basic system information, such as a list of storage devices and memory usage. + ## Problems? Please report bugs and issues in the [Issues](https://github.com/dmpop/little-backup-box/issues) section. diff --git a/img/rc.png b/img/rc.png index 17fd289..b34e8aa 100644 Binary files a/img/rc.png and b/img/rc.png differ diff --git a/scripts/index.php b/scripts/index.php index dc8496b..39d27fe 100644 --- a/scripts/index.php +++ b/scripts/index.php @@ -28,6 +28,7 @@
Ichigo

Little Backup Box

+

System info

Back up a storage card connected via a card reader

diff --git a/scripts/sysinfo.php b/scripts/sysinfo.php new file mode 100644 index 0000000..11f24a0 --- /dev/null +++ b/scripts/sysinfo.php @@ -0,0 +1,53 @@ + + + + + + Little Backup Box + + + + + + + + +
+ Ichigo +

Little Backup Box

+

Basic system information

+

Devices

+
+ '; + passthru("lsblk"); + echo ''; + ?> +
+

Memory (in MB)

+
+ '; + passthru("free -m"); + echo ''; + ?> +
+ + + +
+ +