root@app-01:~# uname -s -v -n -r -m
Linux app-01 6.8.0-51-generic #52-Ubuntu SMP PREEMPT_DYNAMIC Thu Dec 5 13:09:44 UTC 2024 x86_64
root@app-01:~# uname -m | awk '{printf $1}'
x86_64
root@app-01:~# uptime | grep -ohe 'up .*' | sed 's/,//g' | awk '{ print $2" "$3 }'
14:22:31 up 27 min 1 user load average: 0.08 0.03 0.01
root@app-01:~# nproc
4
root@app-01:~# lspci | egrep VGA && lspci | grep 3D
Usage: grep PATTERN [FILE]...
root@app-01:~# lscpu | egrep "Model name:" | cut -d ' ' -f 14-
cut: you must specify a list of fields
root@app-01:~# curl ipinfo.io/org
--2026-07-19 08:38:31-- http://ipinfo.io/org
Resolving ipinfo.io... connected.
HTTP request sent, awaiting response... 200 OK
Length: 31 [text/html; charset=utf-8]
Saving to: 'org'
org [ <=> ] 1.--KB/s in 0.0s
2026-07-19 08:38:31 (5.43 MB/s) - 'org' saved [31]
root@app-01:~# nvidia-smi -q | grep "Product Name" | awk '{print $4, $5, $6, $7, $8, $9, $10, $11}' | wc -l | head -c 1
root@app-01:~# nvidia-smi -q | grep "Product Name"
root@app-01:~# lspci | egrep VGA | grep Radeon | wc -l | head -c 1