This is an old revision of the document!


Display System Information

#!/bin/bash

clear

echo
echo “Today is `date`.”
echo
uname -a
echo
echo “Disk Space Utilization:”
df -vh
echo
echo “Memory Details:”
free -h
echo
echo "/etc/apt/sources.list contents"
cat /etc/apt/sources.list
echo