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 | |
version="0.9.4 from 2010-09-13" | |
# Always download the latest version here: http://www.eurosistems.ro/back-res | |
# Thanks or questions: http://www.howtoforge.com/forums/showthread.php?t=41609 | |
# | |
# CHANGELOG: | |
# ----------------------------------------------------------------------------- | |
# version 0.9.4 - 2010-09-13 | |
# -------------------------- | |
# Small fix: - Corrected small bug replaced tar with $TAR in the recovery line |
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 | |
#install required things from apt | |
#updated for Ubuntu 18.04 and added YASM, SSL-support, SRT, AOM, X265, Patched X264 to get rid of keyintmin becoming "keyint/2+1" | |
# NOTE: This is currently not doing it's job so unless this message disappears don't try it :) | |
#forked from original here - https://gist.github.com/Brainiarc7/3f7695ac2a0905b05c5b | |
whoami="$(whoami)" | |
checkubuntuversion(){ | |
. /etc/os-release | |
ubunturequirement="18.04" | |
version=$(echo $VERSION_ID) |