Check PC Config using the Linux command line

Add RSS feed to Reader and sync to Readwise.

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)

Comments

Leave a Reply

Your email address will not be published. Required fields are marked *