Easily get Linux system information with simple utilities.

Get RAM information with the Linux command line and inxi. 4.4 Thu May 02 jason@Yog-Sothoth 0: $ sudo inxi -m 1) All commands run with root privileges are always dangerous. 2) Never run commands on an environment you are not willing to destroy, or able to restore. 3) Do not…

Read More

Get hardware information from your desktop PC on a website easily.

This is very easy to do. Get comprehensive hardware information about your desktop computer with a simple script. This is available to install for newer Ubuntu releases, but for those of us using an LTS release, the script may be downloaded from this page. https://launchpad.net/ubuntu/+source/hw-probe/1.5-1. Unpack the tarball and then…

Read More

How to easily get information about your CPU on Linux.

Getting information about your CPU on Linux is very easy. There are many ways to do this. The cpufreq app is one good way to get the current CPU frequency. 4.4 Thu Jun 04 jason@Yog-Sothoth 0: $ cpufreq-info -f -m 988 MHz4.4 Thu Jun 04 jason@Yog-Sothoth 0: $ cpufreq-info -f…

Read More

Get information about your swap partition with this simple command.

This command will print information about your swap partition easily using the Linux command line. root@Yog-Sothoth:~# swapon -s -v Filename Type Size Used Priority /dev/sda5 partition 7811068 0 -2 /dev/dm-1 partition 62500860 0 -3root@Yog-Sothoth:~# swapon -s -v Filename Type Size Used Priority /dev/sda5 partition 7811068 0 -2 /dev/dm-1 partition 62500860…

Read More

Very useful Linux shell tips and tricks.

Add a new directory to the PATH to allow running an application from it without typing the full path every time you wish to run it. PATH=$PATH:/usr/local/binPATH=$PATH:/usr/local/bin Or you may have something like this in your .bashrc to add this every time you log in. PATH="/home/jason/perl5/bin${PATH:+:${PATH}}"; export PATH;PATH="/home/jason/perl5/bin${PATH:+:${PATH}}"; export PATH;…

Read More

Some very useful Windows 7 scripts to get system information.

A useful VBScript sample to get user information. This is just basic information about the user. ‘ Logoninformation.vbs ‘ VBScript Logon script. ‘ This program demonstrates how to get information about the logged in user. ‘ This script tested on a Windows 7 machine and works perfectly too. ‘ ———————————————————————-…

Read More

Get information about your OpenBSD system easily.

The OpenBSD operating system has many ways to get system info. One way is to use the sysstat utility. This returns comprehensive information about a running UNIX system. Run sysstat with no parameters and you will get output like this. 2 users Load 0.51 0.36 0.16 neo.home 10:32:19   memory…

Read More