Created
October 19, 2012 10:05
-
-
Save freegenie/3917284 to your computer and use it in GitHub Desktop.
hardware specs on linux
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
#!/bin/bash | |
startline() { | |
echo "" | |
echo "" | |
echo "---------- $1 -------------------------" | |
echo "" | |
} | |
startline "CPU" | |
cat /proc/cpuinfo | grep 'model name' | |
startline "PERIFERIHCE" | |
lspci | |
startline "HARD DISK" | |
sudo fdisk -l | grep GB | |
startline "CD/DVD" | |
wodim -devices | |
startline "MEMORIA" | |
free -m | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment