root@web-01:~# uname -s -v -n -r -m
Linux web-01 6.1.0-25-amd64 #1 SMP PREEMPT_DYNAMIC Debian 6.1.106-3 (2024-08-26) x86_64
root@web-01:~# uname -m | awk '{printf $1}'
x86_64
root@web-01:~# uptime | grep -ohe 'up .*' | sed 's/,//g' | awk '{ print $2" "$3 }'
04:25:43 up 1 day, 11 min, 0 user, load average: 1.12, 0.92, 1.20
root@web-01:~# nproc
1
root@web-01:~# lspci | egrep VGA && lspci | grep 3D
Usage: grep PATTERN [FILE]...
root@web-01:~# lscpu | egrep "Model name:" | cut -d ' ' -f 14-
cut: you must specify a list of fields
root@web-01:~# curl ipinfo.io/org
--2026-07-18 12:00:02-- 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-18 12:00:02 (5.43 MB/s) - 'org' saved [31]
root@web-01:~# nvidia-smi -q | grep "Product Name" | awk '{print $4, $5, $6, $7, $8, $9, $10, $11}' | wc -l | head -c 1
root@web-01:~# nvidia-smi -q | grep "Product Name"
Usage: grep PATTERN [FILE]...
root@web-01:~# lspci | egrep VGA | grep Radeon | wc -l | head -c 1