Tag Archives: Linux

How to install multiple CUDA versions on a single Linux server

After you installed the first CUDA toolkit (preferably the latest stable version), and you want to install others beside it, due to some compatibililty issues for example, just do the following: Download the standalone file installer, e.g. https://developer.download.nvidia.com/compute/cuda/11.7.0/local_installers/cuda_11.7.0_515.43.04_linux.run chmod +x … Continue reading

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

Kali Desktop in a VM: Have a better desktop experience

Well, this issue has been bothering me for a while. If you have Kali Linux Desktop on a Virtual Machine (VMware Workstation or VirtualBox for example), and you have a low-resolution screen, you won’t feel that much, however, if you … Continue reading

Posted in kali, 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

How to reset root user password in MySQL 5.7+

Was too busy and haven’t written anything for quite a while! Anyway, here is how to reset the root user password in MySQL 5.7 and later in a nutshell! service mysql stop mkdir -p /var/run/mysqld chown mysql:mysql /var/run/mysqld mysqld_safe –skip-grant-tables … Continue reading

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

Create a filesystem report with Python

In many cases, data accumulates over time, and a lot of this data is not being accessed at all, sometimes for years. Accordingly, it would be great if you could create a report that shows which data, the last access … Continue reading

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