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
#!/bin/bash |
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
#!/bin/bash | |
# Colors | |
c1="\e[39m" # Normal | |
c2="\e[91m" # Red | |
c3="\e[92m" # Light Green | |
c4="\e[36m" # Cyan | |
c5="\e[31m" # Light Red | |
c6="\e[93m" # Yellow | |
c7="\e[32m" # Green |
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
#!/bin/bash | |
# Usage : | |
# Install a fresh Debian Jessie, then execute following shell command as root user | |
# wget --no-check-certificate -O - https://gist.githubusercontent.com/lspg/018425712d6d437def68922c2717f8af/raw | bash | |
############ | |
# Settings # | |
############ |
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
# -*- mode: ruby -*- | |
# vi: set ft=ruby : | |
Vagrant.configure(2) do |config| | |
config.vm.box = "deb/jessie-amd64" | |
# Create a forwarded port mapping which allows access to a specific port | |
# within the machine from a port on the host machine. In the example below, | |
# accessing "localhost:8080" will access port 80 on the guest machine. |
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
#!/bin/bash | |
setHostname() { | |
HOST=`hostname -f` && echo $HOST > /etc/hostname && /etc/init.d/hostname.sh start | |
} | |
export DEBIAN_FRONTEND=noninteractive | |
UH=$USER | |
if [ $USER != 'root' ]; then | |
UH="/home/"$USER |
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
#!/bin/bash | |
cd /tmp | |
wget http://www.parallelpython.com/downloads/pp/pp-1.6.4.zip | |
unzip -e pp-1.6.4.zip | |
cd pp-1.6.4 | |
sudo python setup.py install | |
cd .. | |
sudo rm -Rf pp-1.6.4* |
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
wget -Nnv https://gist.github.com/loispuig/7882950/raw/ecfd68c2f4aa306c123cb0fde16a7e334a88cdd8/wheezy-install-oc-stable.sh && bash wheezy-install-oc-stable.sh; rm -f wheezy-install-oc-stable.sh |
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
nano /etc/jailkit/jk_init.ini |