mirror of
https://github.com/fleschutz/PowerShell.git
synced 2024-11-08 09:04:18 +01:00
27 lines
842 B
Bash
Executable File
27 lines
842 B
Bash
Executable File
#!/bin/sh
|
|
# NOTE: to be started as superuser!
|
|
# requires package hddtemp and smartctl!
|
|
|
|
echo ""
|
|
hostnamectl
|
|
timedatectl
|
|
echo " Uptime: `uptime --pretty` since `uptime --since`"
|
|
echo " HDD temp: `hddtemp --unit=C /dev/sda`"
|
|
echo "-------------------------------------------------------------------------------"
|
|
landscape-sysinfo
|
|
echo "-------------------------------------------------------------------------------"
|
|
free -h
|
|
echo "-------------------------------------------------------------------------------"
|
|
smartctl --smart=on --nocheck=standby --offlineauto=on --health /dev/sda
|
|
|
|
echo "\n+++ Checking Filesystem +++"
|
|
zpool list
|
|
zpool status
|
|
|
|
echo "\n+++ Checking Updates +++"
|
|
apt update && apt upgrade && apt autoremove && snap refresh
|
|
|
|
echo "\n+++ Cleaning Swap Space +++"
|
|
swapoff --all && swapon --all
|
|
exit 0
|