Skip to content

Instantly share code, notes, and snippets.

View swanwish's full-sized avatar

Stephen swanwish

View GitHub Profile
@swanwish
swanwish / install.bash
Created November 11, 2017 12:37 — forked from nowakowski-damian/install.bash
Raspberry Pi Install PHP7 + Nginx + MySQL + PhpMyAdmin (last versions)
if [ "$(whoami)" != "root" ]; then
echo "root required!"
exit
fi
apt-get update
apt-get upgrade
apt-get dist-upgrade
@swanwish
swanwish / LC_CTYPE.txt
Created October 31, 2016 14:43 — forked from jampajeen/LC_CTYPE.txt
Centos warning: setlocale: LC_CTYPE: cannot change locale (UTF-8): No such file or directory
vi /etc/environment
add these lines...
LANG=en_US.utf-8
LC_ALL=en_US.utf-8