Skip to content

Instantly share code, notes, and snippets.

# For ubuntu 16.04, ppa:ondrej/php repository also includes openssl > 1.1.0 which is incompatible with virtuoso.
# To build virtuoso, version 1.0.2 is needed which exists in the default ubuntu repos.
# Remove the repo above with
# sudo add-apt-repository --remove ppa:ondrej/php
# and re install openssl 1.0.2. After the compilation of virtuoso, you can upgrade the openssl version without breaking
# Virtuoso.
sudo apt-get update
sudo apt-get install autoconf automake libtool flex bison gperf gawk m4 make openssl libssl-dev
sudo apt-get install git wget curl libreadline-dev
@idimopoulos
idimopoulos / mysql_create_user_db
Last active September 17, 2017 11:49 — forked from ainsofs/drupal mysql commands
Usefull scripts
#!/bin/bash
# Creates a database and a user and grants all previleges
# to the user. The name of the database, the user and the
# password are all passed as the first argument in the
# script.
# In order to run the script below, the root user must
# be able to login without password or the password
# must be set in the ~/.my.cnf file of the user that