Update Linux in a Terminal

Update Linux in a Terminal

Keeping linux updated is a simple hassle free task, unlike that other OS. On linux you can use a GUI app or update in a terminal. Both methods achieve the same result, but users usually have a preference. For me that’s the terminal.

Tags: tutorials, linux, command line

Read more »


Time a Command in Linux

Time a Command in Linux

Getting familiar with timing commands in linux is a good idea. This is a good way to time long operations in a bash script or from the terminal. You can time most commands and any bash script. My favorite use case is for timing source code compilation from build scripts.

Tags: tutorials, linux, command line

Read more »


Redirect and Append to a File in Linux

Redirect and Append to a File in Linux

On every linux system you can redirect and append to the end of a file.

Linux has “stdout” which stands for “standard output”. Whenever you run a command in your terminal, the result is displayed in the stdout. You can redirect and append stdout to the end of a file.

Tags: tutorials, linux, command line

Read more »


Bash Exit Status

Bash Exit Status

Regardless of whether a bash command ends successfully or not, it returns an exit status. Aside from letting you know that the command succeeded or failed, you can use the exit status code in bash scripts to determine what action to take with a conditional statement.

Tags: tutorials, linux, command line

Read more »


Rename Files & Folders Linux Command Line

Rename Files & Folders Linux Command Line

Lets take a look at how to rename files and folders in linux from the command line.

Sure you can use your GUI and be done with it, but learning to do it from the command line can be quite useful. There’s also the added benefit of being able to use these commands in bash scripts.

Tags: tutorials, linux, command line

Read more »


Remove Unused Kernels Ubuntu 18.04

Remove Unused Kernels Ubuntu 18.04

A question often asked… How do I remove old unused kernels from ubuntu 18.04?

Each time you receive a kernel update in your ubuntu 18.04 system updates, you end up with the old kernels remaining in your system. This can be useful in the event that the new kernel causes issues, you can always boot the old kernels. In time, old unused kernels can accumulate taking up unnecessary space on your drive.

Tags: tutorials, linux, command line

Read more »