Carlos Sura

Linux

RDP to Azure VM from Linux

Recently, I needed to access an Azure VM from my Linux machine. I initially tried using standard Remote Desktop clients like Remmina and KRDC, but none of them could successfully connect. The core …

Ghostty Transparency

I have been using this terminal, Ghostty and I really love it! If you are looking for a way to set transparency, I found this setting: background-opacity = 0.9 You can play with the values until you …

Setup and Configure Lsyncd

I was looking for my options to sync files from Server A to Server B so I found Lsyncd For the installation sudo apt update sudo apt install lsyncd We need to create the configuration sudo mkdir …

Parallels Ubuntu Emulation With Rosetta

I’ve been using Ubuntu in Parallels for a while now, everything has been working “fine” at least for what I have been using Ubuntu, my workflow runs “OK”, until a few …

Dotnet Self-Signed Certificate

When building a dotnet project and you need to make HTTPS for your project your quickest option is to generate a self-signed certificate, for that, you can run the following commands: openssl req -new …

Dotnet Host FXR Does Not Exist

I was working with Ubuntu 22.04 and I found an issue installing dotnet basically, I was getting an error message: /usr/share/dotnet/host/fxr does not exist After spending some time in Google, I found …

PHP script timed out before returning headers

I was working with DirectAdmin and this time it was set to use suPHP (for some weird reason). Anyway, when trying to run a PHP script from the Drupal site, it returned an error: “Script timed …

Custom Apache Handler Multiple PHP Versions

I needed to install PHP 7.4.x on CentOS 6 aside from the existing version on the server. It was quite a challenge but I made it work, the other issue I had to work with was because of the Apache 2.2 …