How To Install PHP (7.4, 7.3 & 5.6) on Debian 9 Stretch

Prerequisites#

Login to your Debian 9 system using shell access. For remote systems connect with SSH. Windows users can use Putty or other alternatives applications for SSH connection.

ssh root@debian9

Run below commands to upgrade the current packages to …

Thumbnail

How to run VLC player as root user

sed -i 's/geteuid/getppid/' /usr/bin/vlc

Explanation: The initialization script check if the UID is equals to zero. Zero is reserved for the root user. Using sed to replace geteuid for getppid fools the initialization script because it is always …

Thumbnail

A lawyers christmas greeting

Please accept with no obligation, implied or implicit, my best wishes for an environmentally conscious, socially responsible, low stress, non-addictive, gender neutral celebration of the winter solstice holiday, practiced within the most enjoyable …

Thumbnail

List all Azure VM extensions

az vm extension image list
[

  {

    "name": "AcronisBackup",

    "publisher": "Acronis.Backup",

    "version": "1.0.33"

  },

  {

    "name": "AcronisBackupLinux", …
Thumbnail