Last active
July 9, 2016 08:27
-
-
Save stephen-hill/fe01a07de0daace01e14 to your computer and use it in GitHub Desktop.
MariaDB on Ubuntu 14.04 Minimal
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Essential | |
apt-get update | |
apt-get upgrade | |
apt-get install dialog bsdutils software-properties-common | |
# MariaDB | |
apt-key adv --recv-keys --keyserver hkp://keyserver.ubuntu.com:80 0xcbcb082a1bb943db | |
add-apt-repository 'deb http://lon1.mirrors.digitalocean.com/mariadb/repo/10.0/ubuntu trusty main' | |
apt-get update | |
apt-get install mariadb-server | |
# Optional | |
apt-get install sudo fish |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment