More very useful Linux tricks and tips.

If you wish to find files larger than a certain size on a Linux hard disk, this is a very useful tip. This uses backticks to feed the output of the find command as a parameter to ls. This allows listing the few largest files in a directory. ┌──[[email protected]]─[/media/jason/More Media]…

Read More

Performing forensics on files with Linux.

There are many ways to find files embedded inside other files, one way is using binwalk to find embedded files inside another file. This is how to use binwalk to list all embedded files inside a larger one. This takes a while with a multi-gigabyte file, but it does work….

Read More

Easily change files on your Linux system with a simple command.

This command will change the default port for the SSH server on your Linux machine. jason@jason-desktop:~$ perl -pi -e ‘s/^#?Port 22$/Port 443/’ /etc/ssh/sshd_configjason@jason-desktop:~$ perl -pi -e ‘s/^#?Port 22$/Port 443/’ /etc/ssh/sshd_config Then run this command to restart the SSH server. jason@jason-desktop:~$ sudo service ssh restartjason@jason-desktop:~$ sudo service ssh restart This will…

Read More

Windows 10 KB4532693 update causing headaches for users.

Reports are increasing across Twitter and Microsoft forums that following the most recent Patch Tuesday update (KB4532693), users are complaining that their profiles and desktop files are missing, and that custom icons and wallpaper have all been reset to their default state. The KB4532693 update is allegedly causing much more…

Read More

Renaming folders with a loop in bash is easy.

Renaming folders is very easy. I have a folder with subdirectories named from 1 to 9. And I wish to rename them folder1 to folder9. This can be easily done with bash. This example will take care of this problem easily. 4.4 Fri Jan 31 jason@Yog-Sothoth 0: $ for i…

Read More

How to create thumbnails of dds files in Ubuntu or Mint.

Thumbnailing for the DirectDraw Surface file format is not supported in Linux with the Caja file manager, but this is easy to fix. The /usr/share/thumbnailers/ directory contains all of the thumbnailer files that automatically create thumbnails in the file manager for Caja. Just create a file named dds.thumbnailer and put…

Read More

Playing around with old stalker versions.

I have been playing around with old Stalker Shadow of Chernobyl builds. Build 1935 and build 2571. Firstly, I looked at build 2571. I cannot run this, but it is fun to look inside the game files and see what is inside. I used this utility to extract the game…

Read More