This file contains 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/sh | |
## Creates bootable USB key of Sophos UTM ISO. Takes destination block device as argument | |
TARGET=$1 | |
curl -OL http://download.astaro.com/UTM/v9/software_appliance/iso/asg-9.207-19.1.iso | |
curl -OL http://download.astaro.com/UTM/v9/software_appliance/iso/asg-9.207-19.1.iso.md5 | |
md5sum -c $VERSION.md5 | grep 'OK' &> /dev/null |
This file contains 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
+--[ RSA 4096]----+ | |
| | | |
| | | |
| | | |
| o . .. | | |
| = S+ o | | |
| . =E.+ | | |
| +o+o | | |
| BB . | | |
| +=ooo | |
This file contains 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
#!/usr/local/bin/bash | |
WORD="Bird" | |
SANDWICH="Grilled cheese" |
This file contains 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
#!/usr/local/bin/bash | |
source ./first.sh | |
echo $WORD |
This file contains 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/sh | |
## Example comparison of bash's source and sh "." | |
. ./first.sh | |
echo $WORD |
This file contains 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
{% gist RubenSchade/3f8e385647c1ded6bfe6 %} |
This file contains 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
## /etc/apt/sources.list for Ubuntu 14.04 LTS | |
## Using mirror.txt pool for geographically-close servers | |
deb mirror://mirrors.ubuntu.com/mirrors.txt trusty main restricted universe multiverse | |
deb mirror://mirrors.ubuntu.com/mirrors.txt trusty-updates main restricted universe multiverse | |
deb mirror://mirrors.ubuntu.com/mirrors.txt trusty backports main restricted universe multiverse | |
deb mirror://mirrors.ubuntu.com/mirrors.txt trusty-security main restricted universe multiverse |
This file contains 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
http://mirror.optus.net/ubuntu/ | |
http://ubuntu.mirror.serversaustralia.com.au/ubuntu/ | |
http://mirror.netspace.net.au/pub/ubuntu/ | |
http://ftp.iinet.net.au/pub/ubuntu/ | |
http://mirror.overthewire.com.au/ubuntu/ | |
http://ubuntu.mirror.crucial.com.au/ | |
http://mirror.as24220.net/pub/ubuntu-archive/ | |
http://mirror.internode.on.net/pub/ubuntu/ubuntu/ | |
http://ubuntu.mirror.uber.com.au/archive/ | |
http://mirror.as24220.net/pub/ubuntu/ |
This file contains 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
+--[ RSA 4096]----+ | |
| | | |
| o .| | |
| . . . ++| | |
| . o o +.E| | |
| . + . S o. o ..| | |
| = o o .. o .| | |
| . . . . o | | |
| .. . . | | |
| .. . | |
This file contains 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/sh | |
## Script for running private ServerBear tests on Debian | |
PLAN="Some Hosting Plan" | |
EMAIL="[email protected]" | |
sudo -s | |
apt-get update | |
apt-get dist-upgrade |
OlderNewer