Category Archives: Linux

How to change the web server identification string of your OpenVPN AS Server on Ubuntu 22.04

The default web server identification string of your OpenVPN Server can be one way to identify it in automated vulnerability scanners such as nmap. To change it to an arbitrary value to reduce the chance of being identified by vulnerability … Continue reading

Posted in Linux | Tagged , | Leave a comment

Search for files with certain size and extension

I was looking for a large PDF file that was above 100 MB. The file was inside thousands of other files and folders, so I used this command to find it: find . -type f -size +100M | grep -i … Continue reading

Posted in Linux | Tagged , , , | Leave a comment

How to get rid of GLib-GIO-ERROR **: Settings schema ‘***’ does not contain a key on Gnome 40+

In case you mess up the schema for any reason and you are no longer able to open the Gnome settings, e.g. gnome-control-center, just do the following and then logout and back in (or simply reboot): rm .config/dconf/user That’s it! … Continue reading

Posted in Linux | Tagged , , , , | Leave a comment

Cracking WiFi keys with Aircrack-ng and hashcat using GPU

Disclaimer This post is for educational purposes only and should NOT be used otherwise. The primary aim is to understand how a weak WiFi password can be compromised in a few minutes, if not less. Introduction In this post I … Continue reading

Posted in Linux | Tagged , , , , , , , , , , , | Leave a comment

How to reset displays (monitors) settings for KDE Plasma and GNOME

Originally posted on Just Some Techie Notes!:
In case your display arrangement or settings, e.g. when you have 3 screens and you are for some reason unable to reorganize them or change their settings, just reset your display settings: For…

Posted in Linux | Leave a comment