On CentOS 7 MariaDB has (quite rightfully IMHO) replaced MySQL in the repositories however this has caused me a few problems. Since MySQL was so widely used there are other things that have MySQL as a requirement/dependency. Mainly my problem was some... » More
I wanted to set up a local repository for DEB packages I create to be installed among a number of cluster nodes. After building the deb package I added it to my home folder as follows and created the Packages.gz file: apt-get install dpkg-dev mkdir -p... » More
An update to a plugin was causing me problems so I did not want to update the plugin until a fix was released. To exclude the plugin (or a theme) from notifying that there is an update I performed the following (dirty) hack. Just remember to fix... » More
Using CentOS 6 I installed Nginx with: yum install nginx and amended the config file for the default website i.e. vi /etc/nginx/conf.d/default.conf With the following content: upstream backend_st { server st.domain.co.uk:80; } server { listen... » More
Normally to check the disk usage of directories on a linux system I would run: du -sh * However, occasionally I want to exclude particular directories that take a long time to check and/or that I am not interested in anyway. The example below run from... » More
So I ordered a FIDO U2F Security Key from a French company 'Plug-Up' to have a little play. It is used in 2-factor authentication so when logging in to a service you first enter your username and password and if correct your are prompted for your... » More
Environment Modules allow for management of environment variables when using multiple compilers, multiple libraries, or even versions of applications that you might need to run. Rather than change $PATH, $LD_LIBRARY_LOAD, or $MANPATH for each you can... » More
I was asked by a relative if a live video stream could be saved for later viewing. I found the (m3u8) address for the live video stream by right-clicking the link on the website and used this in VLC. VLC is freedom software available from the VLC... » More
A few notes for future reference. I am playing with a power distribution unit from Server Technology - Model CW-16VE-P32M Initially to configure the device I plugged both the Cabinet Distribution Unit (CDU) unit and a laptop into a switch, setting... » More