Skip to content

Instantly share code, notes, and snippets.

View rexlManu's full-sized avatar
🔧
Building a new project!

Emmanuel Lampe rexlManu

🔧
Building a new project!
View GitHub Profile
@rexlManu
rexlManu / mono-install.sh
Created June 16, 2019 16:32
mono-install.sh
apt install sudo -y
sudo apt install apt-transport-https dirmngr gnupg ca-certificates -y
sudo apt-key adv --keyserver hkp://keyserver.ubuntu.com:80 --recv-keys 3FA7E0328081BFF6A14DA29AA6A19B38D3D831EF
echo "deb https://download.mono-project.com/repo/debian stable-stretch main" | sudo tee /etc/apt/sources.list.d/mono-official-stable.list
sudo apt update
sudo apt install mono-complete -y
@rexlManu
rexlManu / openvpn.sh
Created April 16, 2019 03:50
install openvpn
#!/bin/bash
# Secure OpenVPN server installer for Debian, Ubuntu, CentOS and Arch Linux
# https://github.com/Angristan/OpenVPN-install
if [[ "$EUID" -ne 0 ]]; then
echo "Sorry, you need to run this as root"
exit 1
fi