How to see what installed hardware and software is in your Linux virtual server or dedicated server
You can view the installed hardware and software on a virtual server or dedicated server by logging into the machine using ssh. You will need to be the root user to complete this. Just run the commands below to see what is deployed to your server.
See information about the CPU installed in your dedicated server
cat /proc/cpuinfo
Display free and used memory your server is using/has
free -m
See Kernel information your dedicated server uses
uname -r
See dedicated server hardware name
uname -m
See Linux block information
lsblk
Additional Resources
How was this article? – Installed hardware and software
You might also like
More from All About Linux
Install Ioncube Loaders In Ubuntu, Debian, CentOS and AlmaLinux
Ioncube Loaders are a piece of software that is used to protect the underlying code in PHP applications. Its aim …
How to install FTP and configure FTP on an Ubuntu 22 LTS instance
If you need to upload files to your NVMe VPS you have a couple of options. You can use a …
How to install a Cloudflare Origin SSL Certificate – NGINX
An SSL Certificate is vital to encrypt data between you and your clients. SSLs can be complicated things. If they …