Physical Address

304 North Cardinal St.
Dorchester Center, MA 02124

Category Ubuntu

Mount ZFS Pools on Boot

zfs on linux
We recently ran into a snag with a new ZFS installation, the darn thing wouldn't mount the pools we created on boot. The solution turned out to be pretty straight forward, Issue the following at shell and reboot to test:

Install Mariadb 10.1 – Ubuntu 16.04

Installing the latest stable version of Mariadb, v. 10.1, is pretty straight forward. Start off by heading over to the repo configurator and getting the links for your version of Ubuntu: LINK For us the commands were as follows, enter them…

Add / Modify Static IP Address on Ubuntu 16.04

To add /modify the static IP address of your ubuntu installation follow the steps below: Find out which interface is connected to the internet, issue the following: user@ubuntu:~$ ifconfig enp0s3 Link encap:Ethernet HWaddr 08:00:27:1d:33:18 inet addr:192.168.123.153 Bcast:192.168.123.255 Mask:255.255.255.0 inet6 addr:…

Install ImageMagick – Ubuntu 16.04

Let’s start off with a freshly installed server running Ubuntu 16.04 (server). This article assumes that you have Apache and PHP installed already. Issue the following command at shell to install the base ImageMagick library: sudo apt-get install imagemagick The…

Install Percona 5.6 – Ubuntu 16.04

Percona is a free, fully compatible and high performance drop-in replacement for MySQL server. Percona supports high performance hardware and provides improved reliability and performance. To install first we need to add the repo: wget (lsb_release -sc)_all.deb Next, install the…

Install Nginx – Ubuntu 16.04

Installing Nginx on Ubuntu 16.04 is pretty straight forward, start off by updating the sources on your box: sudo apt-get update Issue the following to install nginx: sudo apt-get install nginx Start nginx by issuing the following: sudo service nginx…