Physical Address
304 North Cardinal St.
Dorchester Center, MA 02124
One of our machines threw this error when we tried to install the latest Intel display driver from their website. This happens when your computer manufacturer changes a setting in the bundled driver indicating that drivers only obtained from the…
We’ll be looking into how to install Node.js on Ubuntu versions 16.04 LTS, 18.04 LTS and 19.04. We’ll install Node.js with NVM (Node Version Manager). This lets us install any version of Node.js and then switch between them with one command.…
Ran into this rather peculiar error recently while installing Varnish Cache on CentOS 7. Resolving Dependencies –> Running transaction check —> Package varnish-devel.x86_64 0:5.2.1-1.el6 will be installed –> Processing Dependency: varnish = 5.2.1-1.el6 for package: varnish-devel-5.2. 1-1.el6.x86_64 –> Running transaction…
Windows Subsystem for Linux (WSL) let’s you do a lot of interesting stuff inside Windows, biggest of which is installing Linux applications. We’ll look into installing MariaDB on Ubuntu running inside WSL. Before we start, make sure you have WSL…
Running a headless (terminal only) server is great and all but sometimes a GUI helps. We’ll be installing GNOME 3.28 on CentOS 7.4. This comes really handy when you want to remotely administer a server and keep the bloat to an…
With the EOL of the free tier of NewRelic’s Server monitoring service, we tried going commando for a while, meaning no server monitoring. We know bad – bad, idea. NewRelics Server monitoring service was great but the free tier came…
Ubuntu isn’t bundled with exFAT read/write support out of the box, scouring the internet revealed we needed to install two packages. exfat-fuse exfat-utils This threw a very ugly error Reading package lists… Done Building dependency tree Reading state information… Done Package…
Yet another error while trying to compile nginx from source. ./configure: error: the GeoIP module requires the GeoIP library The fix is simple, issue the following at shell: yum install geoip-devel
If you run into the following error while compiling nginx from source, follow the steps below: ./configure: error: perl module ExtUtils::Embed is required Issue the following at shell: yum install perl-ExtUtils-Embed That’s it.