How to get computer information with Powershell on Windows 11.

Getting good hardware information is very useful on a Windows system, I will show some very useful one-liners for getting hardware information on Windows. This example gives information about the CPU cores and the other pertinent CPU information. PS C:\Users\Intel i5> Get-WmiObject –class Win32_processor | ft systemname,Name,DeviceID,NumberOfCores,NumberOfLogicalProcessors   systemname Name DeviceID NumberOfCores NumberOfLogicalProcessors ———- —- … Read more

How to get useful information about your Nvidia adapter on Linux.

Using an Nvidia graphics adapter on Linux is very useful, it allows gaming and using 3D modeling software. But if you need to know what processes are using your adapter, then you need to install a useful utility. This is called nvtop. Install it like this. ┌──[[email protected]]─[/] └──╼ ╼ $ sudo apt install nvtop┌──[[email protected]]─[/] └──╼ … Read more

How to get information about your CPU and GPU with the terminal in Ubuntu 18.04.

Getting information about your CPU with the terminal in Ubuntu 18.04 is very easy. The sensors utility can get information about the CPU temperature. jason@Yog-Sothoth » ~ » $ sensors coretemp-isa-0000 Adapter: ISA adapter Package id 0: +30.0°C (high = +80.0°C, crit = +100.0°C) Core 0: +30.0°C (high = +80.0°C, crit = +100.0°C) Core 1: … Read more