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/bin/env python3 | |
import subprocess, os, sys, math | |
####################### | |
def usage(): | |
print("Usage: sudo sd2img /dev/sdx /path/to/image.img") | |
def b_size(size_bytes): |
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 | |
# | |
# Tailscale install script on GL.iNet devices | |
# Tested on BERYL (MT1300), should work on MANGO (GL-MT300N) | |
# and probably other mipsel devices, as long as external storage (microSD/USB) | |
# is available. | |
# | |
# Written by Thomas BOHL for Hemisphere-Project - 2022 | |
# Free to use - No warranty provided |
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/bin/env python3 | |
import sys, os | |
# total arguments | |
n = len(sys.argv) | |
if n < 2: | |
print("ERROR: please specify the release URL") | |
exit(2) |
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
## | |
# DYNHOST SCRIPT | |
## | |
> nano /root/dynhost.sh | |
#!/bin/bash | |
name=rpi | |
source /boot/config.txt | |
hostnamectl set-hostname "$name" |
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 | |
# This script is called from our systemd unit file to mount or unmount | |
# a USB drive. | |
usage() | |
{ | |
echo "Usage: $0 {add|remove} device_name (e.g. sdb1)" | |
exit 1 | |
} |
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
<?php | |
// the shared secret, used to sign the POST data (using HMAC with SHA1) | |
$secret = '----------------'; | |
$command = "cd wp-content/themes/mytheme/ && git stash && git pull"; | |
// receive POST data for signature calculation, don't change! | |
$post_data = file_get_contents('php://input'); | |
$signature = hash_hmac('sha1', $post_data, $secret); |
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 | |
./HPlayer/HPlayer --path /home/pi/media --start 1 --loop 1 --gl 1 --info 1 | |
sudo poweroff |
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
# libass dependencies | |
sudo apt install libfreetype6-dev libfribidi-dev libfontconfig1-dev | |
# ffmpeg dependencies | |
sudo apt install yasm libx264-dev | |
# mpv dependencies | |
sudo apt install libvdpau-dev libva-dev libxv-dev libjpeg-dev libxkbcommon-dev libxinerama-dev libxrandr-dev libgles2-mesa-dev libgles1-mesa-dev libv4l-dev libxss-dev libgl1-mesa-dev libgl2-mesa-dev | |
# lua |
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 apt update && sudo apt upgrade -y | |
sudo apt install git libtool build-essential pkg-config autoconf libfribidi-dev liblua5.1-0-dev libluajit-5.1-dev libv4l-dev libvdpau-dev libva-dev libxv-dev libxcb-xfixes0-dev libsdl1.2-dev libjpeg-dev libenca-dev libxcb-render0-dev libwayland-dev libwayland-client0 libwayland-cursor0 libwayland-egl1-mesa libxkbcommon-dev libxinerama-dev libxrandr-dev libxss-dev libgl1-mesa-dev fonts-dejavu-core libaacs-dev libass-dev libbluray-dev libbs2b-dev libcdio-cdda-dev libcdio-paranoia-dev libfontconfig1-dev libcaca-dev libx264-dev libasound2-dev libegl1-mesa-dev libgles2-mesa-dev libgles1-mesa-dev libx11-dev -y | |
git clone https://github.com/mpv-player/mpv-build.git | |
cd mpv-build | |
echo --enable-libmpv-shared > mpv_options | |
echo --enable-mmal >> ffmpeg_options | |
./rebuild -j4 | |
sudo ./install |
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 | |
# UPDATE RPI | |
sudo pacman -Syu --noconfirm | |
sudo pacman -S --needed base-devel --noconfirm | |
sudo pacman -S git --noconfirm | |
# COMPILE FLAGS | |
export MAKEFLAGS=-j4 PLATFORM_ARCH=armv7l PLATFORM_VARIANT=raspberry2 |
NewerOlder