Skip to content

Instantly share code, notes, and snippets.

@Webist
Webist / PHP7_installer.sh
Created December 6, 2015 12:26
Install PHP7 on Raspberry PI or Debian or Ubuntu
#!/bin/bash
wget http://de1.php.net/get/php-7.0.0.tar.bz2/from/this/mirror
tar -xvjf mirror
cd php-7.0.0/
./configure \
--with-readline \
--enable-pcntl \
--with-gettext \
--enable-phpdbg \
--enable-phpdbg-webhelper \
@Jamp
Jamp / build_mysql.sh
Last active November 14, 2023 17:19 — forked from shichao-an/build_mysql.sh
Build and install MySQL 5.1 from source on Ubuntu 16.04
#!/bin/bash
# Run as root
set -e
apt-get update
apt-get install -y build-essential
apt-get install -y libncurses5-dev
useradd mysql