How to get ID3 information from a multimedia file with ffmpeg.

The ffmpeg utility is very useful for transcoding video and making video files, but it can also retrieve information from a video or audio file very easily. You can get the ID3 info from an mp3 very easily. Below is an example. I am getting album and artist information from an mp3 audio file. jason@jason-desktop:~/Music/Ludwig … Read more

How to have a completely blank new-tab screen in Firefox and remove the annoying messages.

The new tab screen in Firefox has annoying messages popping up at the bottom and this may not be to everyone’s taste. But this can be changed very easily. Just create a user.js in your Firefox profile directory and put this in it. This will give you a completely blank new tab screen. user.js1 2 … Read more

How to turn off the ondemand CPU governor on an Ubuntu Linux machine.

The default CPU governor on an Ubuntu machine sets it to use an ondemand CPU setting that will use the lowest CPU speed and then set it higher when it is needed, but it does not always work very well. But it can be fixed. Dsiable the ondemand CPU governor. ┌─[jason@darkstar]─[~] └──╼ $echo ‘GOVERNOR="performance"’ | … Read more

Leaked Intel files contain Intel Management Engine information and Linux test utilities.

The leaked Intel files contain a lot of information about the Intel Management Engine as well as a few Linux test utilities and source code. This is very interesting, I wonder how this was leaked. But the company`s image might be tainted by this leak, I mean how did it occur and how much damage … Read more

How to view and open a chm file on Linux easily.

Opening and reading chm files on Linux is very easy, they are compressed archives and can be opened with 7zip. This is how to extract a chm file on Linux with 7zip. Then open the index.html file in Firefox to view the contents easily. jason@jason-desktop:~/Documents/kabylakeplatform_3_7_9/KabylakePlatSamplePkg/Docs$ 7z x PlatApi.chm 7-Zip [64] 16.02 : Copyright (c) 1999-2016 … Read more

How to control your Pulseaudio sound volume using the command line.

Pulseaudio can easily be controlled with the command line. The pactl utility is used to control the sound volume of a Pulseaudio sink. List all sinks with this command. jason@jason-desktop:~$ pactl list sinksjason@jason-desktop:~$ pactl list sinks Then look through the list to see which is the device you wish to control, then use this command … Read more

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

Getting information about a video file on Linux with the command line is very easy. I will show how you can easily find the resolution of a video and the format. This example below will return the resolution of a video file. jason@jason-desktop:~/Videos$ ffprobe XR_3DA_2019_03_16_19_22_35_777.avi 2>&1 | grep -E ‘[[:digit:]]{3,}x[[:digit:]]{3,}’ | awk ‘{print $11}’ 1920x1080jason@jason-desktop:~/Videos$ … Read more

Play a movie from one Linux machine with MPV over a network with SSHFS.

SSH is amazing in that it can allow a user to access the resources of one machine from another over the network. But with fast gigabit Ethernet connections these days, playing movies from one machine from another is now possible. Install SSHFS on your machine. jason@jason-desktop:~/remote$ sudo apt install sshfsjason@jason-desktop:~/remote$ sudo apt install sshfs Create … Read more

Install the MATE desktop on Ubuntu and enjoy a nice reliable desktop environment.

To install the MATE desktop environment on Ubuntu 20.04, run this simple command. jason@jason-desktop:~/Documents$ sudo apt install mate-desktop-environment-extras mate-common mate-desktop-environmentjason@jason-desktop:~/Documents$ sudo apt install mate-desktop-environment-extras mate-common mate-desktop-environment Then you need to logout of the desktop session and restart the desktop login manager to allow it to detect MATE. Press Control-Alt-F2 and then login to a virtual … Read more

How to spawn a nuke explosion with a script in Arma 3 with RHS.

This is how to spawn a nuke explosion with a script in Arma 3. This only does damage in a small radius, but it still is a lot of fun. [getMarkerPos "respawn_west", 500] call rhs_fnc_ss21_nuke;[getMarkerPos "respawn_west", 500] call rhs_fnc_ss21_nuke; This section of code will spawn a HE SCUD missile on a certain location defined by … Read more

Another very useful way to get your public IP address from the Internet with the command line.

This useful one-liner will get your IP address from the command line very easily. This uses Google services and works very well. 4.4 Tue Jun 30 jason@Yog-Sothoth 0: $ dig TXT +short o-o.myaddr.l.google.com @ns1.google.com | sed -e ‘s/^"//’ -e ‘s/"$//’ 209.134.104.2004.4 Tue Jun 30 jason@Yog-Sothoth 0: $ dig TXT +short o-o.myaddr.l.google.com @ns1.google.com | sed -e … Read more

Microsoft Windows Defender available for Linux.

The Windows Defender anti-virus and anti-malware application is now available for Linux. This is very easy to install on Ubuntu. I am using Ubuntu 18.04 and it works a treat. Before installation, ensure you have the required packages installed. sudo apt install gpg apt-transport-https libplist-utilssudo apt install gpg apt-transport-https libplist-utils To begin the installation, we … 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 “username=*” putty To find a … 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 the Linux fbset(8) utility. This … Read more