How to install the new VIM 8.1 release from source code.

Installing the new VIM release from source is very easy. I have this running on Ubuntu 17.10 and it is great, the editor allows the user to open a terminal within the editor. Make a new folder to download the files into. Go into the directory, and then run this…

Read More

Another way to get only interface names from a Linux machine.

How to return only interface names when listing all installed network interfaces in a Linux box. jason@jason-Lenovo-H50-55:~/Documents$ ip link | grep -Po "(?<=^\d: |^\d\d:)[^:]+(?=:)" lo eth0 wlan0jason@jason-Lenovo-H50-55:~/Documents$ ip link | grep -Po "(?<=^\d: |^\d\d:)[^:]+(?=:)" lo eth0 wlan0 This is very useful to get a listing of all networking interfaces for…

Read More

How to get WIFI information with the command line.

It is very easy to get information about wireless networks with the command line. This example uses iwlist to view the information we need. jason@jason-Lenovo-H50-55:~$ sudo iwlist wlan0 scan | grep ESSID ESSID:"OPTUS58FFG69" ESSID:"TelstraD22F23" ESSID:"OPTUS58FFG69" ESSID:"TelstraD22F23" ESSID:"OPTUS_B8E926"jason@jason-Lenovo-H50-55:~$ sudo iwlist wlan0 scan | grep ESSID ESSID:"OPTUS58FFG69" ESSID:"TelstraD22F23" ESSID:"OPTUS58FFG69" ESSID:"TelstraD22F23" ESSID:"OPTUS_B8E926" This…

Read More

Another way to get the actual IP address of your machine.

This is yet another way to get the actual IP address of your Linux machine on a LAN. This returns just the IP address of your Linux computer. jason@jason-Lenovo-H50-55:~$ ip a | awk ‘/inet / { print $2 }’ | sed -n 2p 192.168.1.4/24jason@jason-Lenovo-H50-55:~$ ip a | awk ‘/inet /…

Read More

Best way to upgrade your Ubuntu distro to a new version.

I recently had to upgrade an Ubuntu 14.04 system to the latest release. I ran the command below and my system was upgraded to Ubuntu 16.04 LTS. sudo do-release-upgradesudo do-release-upgrade This was run over SSH, but I did not lose my connection, and it was quite a painless experience. This…

Read More

Very useful Linux files and info to get you started.

Very useful information for a new Linux user Very comprehensive .bashrc file for your Linux system. http://securitronlinux.com/debian-testing/very-comprehensive-bashrc-file-for-your-linux-system/. How to generate a random password using the command line. http://securitronlinux.com/bejiitaswrath/how-to-generate-a-random-password-using-the-command-line/. UNIX & Linux PDF Ebooks. Many useful Linux and BSD E-Books available. learn all you can about Linux by reading these useful…

Read More

Very cool Linux text processing tricks.

Align all text right on an 80 column width. jason@jason-Lenovo-H50-55:~/Documents$ ls -hula | sed -e :a -e ‘s/^.\{1,80\}$/ &/;ta’ total 872K drwxr-xr-x 2 jason jason 4.0K May 4 08:48 . drwxr-xr-x 23 jason jason 4.0K May 3 20:51 .. -rw-r–r– 1 jason jason 848K Apr 21 13:01 altis_insurgency_altis.pbo -rwxrwxr-x 1…

Read More

Microsoft developing a custom Linux kernel to power azure.

Microsoft corporation is developing a custom Linux kernel, that is intended to power their Azure Sphere security framework. This is a great step for the software giant, that has formerly opposed free software and even Google. Now they are embracing Github and Linux. This is only a kernel; not an…

Read More

Some very useful apt tips for Debian and Ubuntu.

There are some very useful tricks that can be used to get information about packages installed on a Debian or Ubuntu machine. Here are just a few. Get a graphical view of the actual dependencies of a package such as Firefox. Firstly, install the graphviz package. jason@Yog-Sothoth:~$ sudo apt install…

Read More

Installing wallpapers into the backgrounds folder in E17.

Installing wallpapers into the backgrounds folder in Enlightenment E17. Installing wallpapers with the E17 window manager is very easy, mostly like the older Enlightenment E16 window manager. You may either copy the wallpapers into the ~/.e/e/backgrounds/ folder or import them with the backgrounds settings dialog. jason@Yog-Sothoth:~/.e/e/backgrounds$ ls -hula total 43M…

Read More

How to unpack a Live CD image on Linux.

Unpacking a Live CD on Linux is very easy, if the user wants the files within the Live disc and is running Linux. Firstly, install the 7zip software. sudo apt-get install p7zip-fullsudo apt-get install p7zip-full Now copy a Live CD ISO to an empty directory and run this command. 7z…

Read More

Linux distribution created in India that is suitable for Hindi and Punjabi languages.

There are many Linux distributions in the world, but are there Linux distros created in India? Yes there are. Hamara Linux is an Indian developed Linux distribution, with good language support. Supported languages in Linux: Assamese, Bengali, Gujarati, Hindi, Kannada, Malayalam, Marathi, Oriya, Punjabi, Sinhalese, Tamil and Telugu. Website: https://www.hamaralinux.org/blog/….

Read More