Google Cloud Shell is very nice but has some defects.

The Google Cloud Shell is a very nice feature of Google services, but it has no process limit and the root account is accessible. Just use sudo and you may access the root account and then wreak havoc upon the system. Having a Linux shell account online is very useful…

Read More

Pipewire audio system to take over from Pulseaudio and Jack.

The pipe wire system is a new audio system that is taking over from Pulseaudio in Fedora 34. This is also in Ubuntu 21.04. This is a superior audio system and also replaces the Jack audio system. I hope this is a low latency system and gives better performance. Pulseaudio…

Read More

How to use the Network Manager CLI on Ubuntu.

Using the Network Manager CLI app to get information about your network connections is very simple. This allows a user to manage network connections without using a GUI. Linux users do not always use the desktop and use of the CLI is an important skill. So it is very good…

Read More

How to get information about a video file with the Linux command line.

The Linux command line may be used to get information about a video file easily. Here is an example. Getting the video resolution with a simple command. jason@jason-desktop:~/Videos$ ffprobe -v quiet -print_format json -show_format -show_streams burnout-in-a-town-street.mp4 | grep coded "coded_width": 400, "coded_height": 224,jason@jason-desktop:~/Videos$ ffprobe -v quiet -print_format json -show_format -show_streams…

Read More

Get comprehensive networking information from the command line.

If you are using Network Manager to connect to a network, then it is possible to get comprehensive networking information from the command line. This command will print a lot of information about your Network Manager configuration. jason@jason-desktop:~$ nmcli dev showjason@jason-desktop:~$ nmcli dev show Show a listing of available WIFI…

Read More

Mounting an ISO image with the command line and other useful commands.

Mounting an ISO image to a folder and accessing the contents of the image is very simple. Firstly we need to create a directory to mount the image to. |{/mnt/Elements/Files/ISOs}-{Fri Mar 22 23:52:17} -{john@adeptus-mechanicus } $ sudo mkdir /root/img [sudo] password for john:|{/mnt/Elements/Files/ISOs}-{Fri Mar 22 23:52:17} -{john@adeptus-mechanicus } $ sudo…

Read More

The iftop command. A good way to keep track of network usage on Linux.

The monitoring of your network interfaces just got a little easier with the iftop command. This command will return information about a certain network interface and will allow you to see who is hogging your bandwidth. Read more here: http://linux.die.net/man/8/iftop. This is one very useful Linux command. Start it like…

Read More