Very nice Windows 7 basic aero theme for Linux GTK apps.

This theme I found is a very nice GTK theme for your Linux machine. This themes your desktop computer to look like Windows 7 basic. With a non-transparent Windows 7 styled GTK look and Window borders. Download the theme here. https://codeload.github.com/B00merang-Project/Windows-7/zip/2.1. This is what this theme looks like. It is…

Read More

How to use Google Dorks to find usernames and passwords posted online.

Google Dorks can be very useful for finding user information posted online. This Google Dork will find logfiles and other things with usernames and passwords posted online. allintext:username filetype:logallintext:username filetype:log This will find putty information including server hostnames as well as usernames. A very good starting point. ext:reg “username=*” puttyext:reg…

Read More

How to calculate VESA GTF modelines with the command line on Linux.

Gtf is a utility for calculating VESA GTF modes. Given the desired horizontal and vertical resolutions and refresh rate (in Hz), the parameters for a matching VESA GTF mode are printed out. Two output formats are supported: mode lines suitable for the Xorg xorg.conf(5) file, and mode parameters suitable for…

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

Linux 5.3 kernel on Ubuntu is very good.

I have just upgraded to a 5.3 kernel on Ubuntu, and it is very good to use. I tried the newest 4.15 kernel and my sound hardware was not detected, so I installed the 5.3 kernel instead. This is a great improvement. Removing the snapd service was a good way…

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

How to start the SSH server in Venom Linux.

To start the SSH server on a Venom Linux machine, use this command. bash-5.0# /usr/sbin/sshdbash-5.0# /usr/sbin/sshd This will start up the SSH server and then you may connect over SSH to your machine. Edit the /etc/ssh/sshd_config file and make these changes to allow the SSH server to run and allow…

Read More

Set a very nice Linux shell prompt and very useful aliases.

This addition to your .bashrc file will give you a very nice shell prompt and colorful output of the ls command. This looks very stylish indeed. # set variable identifying the chroot you work in (used in the prompt below) if [ -z "${debian_chroot:-}" ] && [ -r /etc/debian_chroot ];…

Read More

Venom Linux. A very nice and fast Linux distribution.

There is a very nice Linux distribution available. This is called Venom Linux. This is very fast to boot after installation. In my VMWare instance, it booted in a couple of seconds after pressing enter at the boot screen. This is a live CD distribution with MATE, XFce 4, Lxde…

Read More

Disable the caps lock key entirely on Windows with this simple registry hack.

This very simple .reg file will disable the caps lock key on your Windows machine. This will make typing less annoying when using the keyboard. Windows Registry Editor Version 5.00   [HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\Keyboard Layout] "Scancode Map"=hex:00,00,00,00,00,00,00,00,02,00,00,00,00,00,3a,00,00,00,00,00Windows Registry Editor Version 5.00 [HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\Keyboard Layout] "Scancode Map"=hex:00,00,00,00,00,00,00,00,02,00,00,00,00,00,3a,00,00,00,00,00 Always back up your registry before using…

Read More

How to recursively search with grep on Linux.

The grep utility is very useful for searching for text in files on a Linux system. It is possible to search for text or files recursively. This is very easy to do. This example is how to search for a text string recursively with grep. I have double quotes in…

Read More

How to list certain installed packages on Debian Linux.

The dpkg command can be used to list all installed packages. I wanted to list the language packs installed with Firefox. So the command below is perfect. jason@Yog-Sothoth:~$ dpkg –list firefox-locale-* Desired=Unknown/Install/Remove/Purge/Hold | Status=Not/Inst/Conf-files/Unpacked/halF-conf/Half-inst/trig-aWait/Trig-pend |/ Err?=(none)/Reinst-required (Status,Err: uppercase=bad) ||/ Name Version Architecture Description +++-==============================-====================-====================-================================================================== ii firefox-locale-de 75.0+build3-0ubuntu0 amd64 German language…

Read More