- Install the ZSH shell from SynoCommunity packages
- Connect to your Synology over SSH
- Switch over to your new ZSH shell
zsh
- Set following parameter to allow detaching of our shell
setopt NO_HUP
- Run your command using nohup and ampersand
nohup <command> &
- Detach using CTRL+D or likewise
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/bash | |
function downloadFile { | |
releases=`curl -s -L https://github.com/irtimmer/moonlight-embedded/releases/latest` | |
echo "$releases" | egrep -o "/irtimmer/moonlight-embedded/releases/download/v([0-9]\.*)+/$1" | wget --base=http://github.com/ -i - -O "$1" | |
} | |
downloadFile libopus.so | |
downloadFile limelight.jar |
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
function version { echo "$@" | gawk -F. '{ printf("%03d%03d%03d\n", $1,$2,$3); }'; } | |
function downloadFile { | |
echo "$1" | egrep -o "/irtimmer/moonlight-embedded/releases/download/v([0-9]\.*)+/$2" | wget -q --base=http://github.com/ -i - -O "$2" | |
} | |
function updateMoonlight { | |
FILE=version | |
releases=`curl -s -L https://github.com/irtimmer/moonlight-embedded/releases/latest` | |
current_version=`cat $FILE` |
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
ssh xbian@IP_OF_YOUR_XBIAN | |
sudo apt-get install xboxdrv | |
mkdir xbox | |
nano xbox/mapping | |
``` | |
[xboxdrv] | |
silent = true | |
ui-clear = true |
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
sudo modprobe bcm2835-thermal | |
/opt/vc/bin/vcgencmd measure_temp |
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 | |
IN_DIR=/volume1/Media/Films | |
OUT_DIR=/mnt/media/movies | |
[email protected] | |
if [ ! -z "$1" ]; then | |
IN_DIR="$1" | |
fi | |
if [ ! -z "$2" ]; then |
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
wget \ | |
--recursive \ | |
--no-clobber \ | |
--page-requisites \ | |
--html-extension \ | |
--convert-links \ | |
--restrict-file-names=windows \ | |
--domains website.org \ | |
--no-parent \ | |
www.website.org/foobar/ |
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
address="vps.tv" | |
sudo apt-get install -y apache2 | |
sudo mkdir /var/log/httpd | |
sudo a2enmod headers | |
sudo a2enmod dav | |
sudo a2enmod dav_fs | |
sudo a2enmod rewrite | |
sudo a2enmod ssl | |
sudo a2enmod auth_digest |
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/bash | |
#set -e | |
#set -x | |
# where to log | |
log="/var/log/uploader.log" | |
# where to keep our PIDs | |
tmp="/tmp/uploader" | |
# where is the unencrypted encfs |
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/bash | |
export ENCFS6_CONFIG="/home/media/data/.encfs.xml" | |
crypt_mount="/tmp/.media" | |
uncrypt_mount="/tmp/media" | |
uploadcrypt="/home/media/data/uploading" | |
upload="/home/media/data/uploadme" | |
user="media" | |
group="media" |
OlderNewer