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
| PATH = /usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/local/games:/usr/games | |
| */2 * * * * galileo >> /home/pi/galileo.log 2>&1 | |
| 59 23 * * * rm /home/pi/galileo.log |
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/sh | |
| # WD Live Duplicity Back Up To Amazon S3 (and Glacier) | |
| # | |
| # Requires python-boto, duplicity, util-linux, and trickle to be installed | |
| # Install using: apt-get install python-boto duplicity util-linux trickle | |
| # | |
| # See this blog post for more info: | |
| # http://www.x2q.net/blog/2013/02/24/howto-backup-wd-mybook-live-to-amazon-s3-and-glacier/ |
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
| LogMeIn Hamachi for Linux User Guide | |
| ===================================== | |
| About LogMeIn Hamachi | |
| LogMeIn Hamachi is a virtual networking service that can be set up in | |
| minutes and enables secure remote access to your business network | |
| anywhere there is an Internet connection. | |
| Unlike traditional hardware and software based VPN systems, LogMeIn |
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/sh | |
| HAMACHI_DST=/opt/logmein-hamachi | |
| if [ -x /opt/logmein-hamachi/uninstall.sh ] ; then | |
| echo Removing previous version .. | |
| /opt/logmein-hamachi/uninstall.sh | |
| fi | |
| echo Copying files into $HAMACHI_DST .. |
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 https://secure.logmein.com/labs/logmein-hamachi-2.1.0.119-armhf.tgz |
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
| tar -zxvf logmein-hamachi-2.1.0.119-armhf.tgz | |
| cd logmein-hamachi-2.1.0.119-armhf | |
| wget https://raw.githubusercontent.com/mbmccormick/hamachi-wdmycloud/master/install.sh | |
| wget https://raw.githubusercontent.com/mbmccormick/hamachi-wdmycloud/master/uninstall.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
| ./install.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
| wget http://download.code42.com/installs/linux/install/CrashPlan/CrashPlan_3.6.3_Linux.tgz |
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
| tar -zxvf CrashPlan_3.6.3_Linux.tgz |
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
| apt-get update | |
| apt-get install default-jre | |
| apt-get install libjna-java |