From time to time, the yum package manager may encounter issues with duplicate packages that are erroneously installed on a system. This manifests in a yum update going awry, telling us something along the...
Learn MoreIn this video I’ll show you how to manage Git repositories from Plesk Onyx, using the new Git Extension. We’ll setup a new repo in Plesk, check it out via the command line and make subsequent...
Learn MoreIn this video I’ll explain how to add a free SSL Certificates for web traffic in Plesk Onyx. First we’ll enable the Let’s Encrypt extension in Plesk, then we’ll create the certificate...
Learn MoreSometimes it’s useful to print the current time and date in a BASH script. We can make use of the date command for that. By default, and if called without any parameters, it’ll print something...
Learn MoreBASH can deal with simple functions, and they are defined like this: # this defines the function function testing { echo "Hi there!" } # this calls our function testing As far as I know, BASH...
Learn MoreHere’s how to use simple variables in BASH shell scripts. It appears there are no data types, and everything’s a string (correct me if I’m wrong). We can define a variable by first setting...
Learn More