View hardware and other details from the command line.
View Hardware Details
# View all system config in brief
sudo lshw -short
# View motherboard details
sudo dmidecode -t baseboard
# View RAM details
sudo dmidecode -t memory
Code language: PHP (php)
View Network Details
# View IP on local network (under IP address section starting with 192.168...)
ifconfig
# View external IP (checks your IP by contacting ifconfig.me over http)
curl ifconfig.me
Code language: Bash (bash)
Leave a Reply