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 | |
###AUTHOR### | |
#Harry Dove-Robinson 2019-06-07 | |
#[email protected] | |
#https://gist.github.com/hdoverobinson | |
#https://github.com/hdoverobinson | |
###NOTES### | |
#Packages required: cmp, pigz, md5sum (Mac users should also install findutils and gnu-tar via Brew) | |
#This script will do the following: |
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 | |
MBEDVERSION="2.16.2" | |
OVPNVERSION="2.4.7" | |
COREPACKAGES="openvpn" | |
BUILDPACKAGES="cmake net-tools python wget" | |
MBEDURL="https://tls.mbed.org/download/mbedtls-${MBEDVERSION}-apache.tgz" | |
OVPNURL="https://swupdate.openvpn.org/community/releases/openvpn-${OVPNVERSION}.tar.gz" |
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 | |
RTKPACKAGES="automake build-essential checkinstall git libblas3 libblas-common libgfortran3 liblapack3" | |
RTKURL="https://github.com/tomojitakasu/RTKLIB.git -b rtklib_2.4.3" | |
###INSTALL RTKLIB PACKAGES### | |
apt-get update && | |
apt-get install -y $RTKPACKAGES && | |
###PREPARE RTKLIB SOURCE### |
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 | |
###Installs a minimal NTP on Debian/Ubuntu with ACTS, PPS, and NMEA clock drivers and disables timesync.d### | |
###Installs useful packages for working with PPS and i2c clocks### | |
NTPVERSION_MAJOR="4.2" | |
NTPVERSION_MINOR="8p12" | |
ADDPACKAGES="adjtimex i2c-tools pps-tools" | |
COREPACKAGES="ntp" | |
NTPURL="https://www.eecis.udel.edu/~ntp/ntp_spool/ntp4/ntp-4.2/ntp-4.2.8p12.tar.gz" |
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 | |
GOESTOOLS_DIR="/usr/src/goestools" | |
GOESTOOLS_REPO="https://github.com/pietern/goestools.git" | |
BUILD_PACKAGES="apt-utils build-essential ca-certificates cmake git libairspy-dev libopencv* librtlsdr-dev pkg-config" | |
if [ "$EUID" -ne 0 ] | |
then echo "This script must be run as root!" | |
exit 1 | |
fi && |
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 | |
LUT="$1" | |
cp "$LUT" /root/osp-build/build/goesdump/XRIT/LUT/falsecolor.png && | |
cd /root/osp-build/build/goesdump/ && | |
rm -rf goesdump/bin/* && | |
msbuild /p:Configuration=Release goesdump.sln && | |
cd goesdump/bin/Release && | |
mkbundle --simple *.exe XRIT.dll -o goesdump && |
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 | |
###AUTHOR### | |
#Harry Dove-Robinson 2018-02-04 | |
#[email protected] | |
#https://gist.github.com/hdoverobinson | |
#https://github.com/hdoverobinson | |
###CONTENTS OF TARGET_DIR WILL BE CLEARED AT EACH RUN### | |
DOCKER="$1" | |
TARGET_DIR="/root/osp-build" |
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 | |
###AUTHOR### | |
#Harry Dove-Robinson 2018-02-08 | |
#[email protected] | |
#https://gist.github.com/hdoverobinson | |
#https://github.com/hdoverobinson | |
###NOTES### | |
#Used by wx-star.com for 24/7 operation of Open Satellite Project software for HRIT/EMWIN direct readout | |
#Manages OSP processes inside GNU Screen sessions, performs daily backups and rotation of OSP output data |
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 | |
###AUTHOR### | |
#Harry Dove-Robinson 7/27/2017 | |
#[email protected] | |
#https://gist.github.com/hdoverobinson | |
#https://github.com/hdoverobinson | |
###USAGE### | |
#This is a script used for out-of-band management by way of DTMF tones over voice calls to a SIMCom cellular modem. |
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 | |
###AUTHOR### | |
#Harry Dove-Robinson 12/14/2017 | |
#[email protected] | |
#https://gist.github.com/hdoverobinson | |
#https://github.com/hdoverobinson | |
###CONTENTS OF TARGET_DIR WILL BE CLEARED AT EACH RUN### | |
TARGET_DIR="/root/osp-build" |
NewerOlder