Last active
November 22, 2018 17:10
-
-
Save carlessanagustin/d710223c1c9ac02ed125896c37988f7e to your computer and use it in GitHub Desktop.
Quick check OS, CPU, BITS, MEMORY and DISKS configuration - wget -O - https://bit.ly/2S2Av0m | bash
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env bash | |
echo | |
echo ">>>>>>>>>>>>>>>>> OS" | |
echo COMMAND: lsb_release -d | |
lsb_release -d | |
echo | |
echo ">>>>>>>>>>>>>>>>> CPU" | |
echo COMMAND: grep -c ^processor /proc/cpuinfo | |
grep -c ^processor /proc/cpuinfo | |
echo | |
echo ">>>>>>>>>>>>>>>>> BITS" | |
echo COMMAND: uname -p | |
uname -p | |
echo | |
echo ">>>>>>>>>>>>>>>>> MEMORY" | |
echo COMMAND: free -h | |
free -h | |
echo | |
echo ">>>>>>>>>>>>>>>>> DISKS" | |
echo COMMAND: lsblk | |
lsblk | |
echo |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment