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

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

How to search a file with grep for certain hexadecimal values.

The grep utility is very useful for searching for files and text snippets. It can also be used to search a file for certain values in hexadecimal. In the example below, I am searching for the text “JFIF” in hexadecimal in certain files. This will tell me that they are jpg image files. The hexadecimal … Read more

Microsoft Windows 10 updates still an embarrassment.

Microsoft have been plagued by many issues regarding the quality control and testing within the organisation. The main problem is that there are different testing teams for each section of the operating system, and this has lead to problems slipping through the cracks into mainstream releases. This has caused a lot of embarrassment for Microsoft, … Read more

Export a database from MySQL when it is using the secure file privilege setting.

MySQL can be a pain to use when it is is running with the –secure-file-priv option and it cannot export a database to your home folder. But there is a way around this. Execute this query in MySQl. 4.4 Mon Aug 19 jason@Yog-Sothoth 0: $ mysql -uroot -p Enter password: Welcome to the MySQL monitor. … Read more

Copy files from one place to another with dd. This is a good way to write an ISO to a USB drive or just to another place.

The dd utility may be used to copy a file from one place to another, this is good to copy a ISO file to a USB thumb drive. This parameter is good for getting feedback about how long a file copy is taking, this is good if it is a big file. bs=4M oflag=direct,dsyncbs=4M oflag=direct,dsync … Read more

Original Windows NT4.0 file manager available for modern Windows releases.

The original file manager that was featured in Windows NT 4.0 is now available for a modern 64-bit operating system. This is a Visual Studio solution and will build on a modern Windows operating system. Microsoft are gradually open-sourcing old parts of Windows. This is a good thing I think. This would be very interesting … Read more