Physical Address

304 North Cardinal St.
Dorchester Center, MA 02124

Tag ubuntu 16.04

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…

Install SSH – Ubuntu 16.04

If you’ve installed Ubuntu 16.04 Desktop you won’t be able to remotely ssh in to the box until you install the ssh server. To do so, issue the following at the terminal: sudo apt-get install ssh That’s it, try ssh’ing…