# 禁用网络接口 IPv6
uci set network.lan.ipv6='0'
uci set network.wan.ipv6='0'
uci set network.lan.delegate='0'
# 完全禁用 WAN6 接口的协议
uci set network.wan6.proto='none'
# 禁用 DHCPv6 和 RA
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
@echo off | |
cd /d "%~dp0" | |
mkdir soundmodem | |
cd soundmodem | |
curl -fROL http://uz7.ho.ua/binar2.zip | |
curl -fROL http://uz7.ho.ua/hydrat.zip | |
curl -fROL http://uz7.ho.ua/beesat1.zip | |
curl -fROL http://uz7.ho.ua/genesis200.zip | |
curl -fROL http://uz7.ho.ua/dora.zip |
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
diff --git a/cmake/search-dirs.cmake b/cmake/search-dirs.cmake | |
index 0eacd81a2..009e849a5 100644 | |
--- a/cmake/search-dirs.cmake | |
+++ b/cmake/search-dirs.cmake | |
@@ -2,34 +2,35 @@ | |
# libs. You can specify the path also using -D<VAR> from commandline. | |
# The location, where the bison executable can be found | |
-#SET (BISON_EXECUTABLE "${CMAKE_SOURCE_DIR}/../win_flex_bison-latest/win_bison.exe") | |
+SET (BISON_EXECUTABLE "${CMAKE_SOURCE_DIR}/../win_flex_bison-latest/win_bison.exe") |
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
@echo off | |
cd /d "%~dp0" | |
del /q TLE.txt 2>nul | |
rem c:\cmdtool64\curl.exe -# "https://celestrak.org/NORAD/elements/gp.php?GROUP=active&FORMAT=tle" >> TLE.txt | |
c:\cmdtool64\curl.exe -# "https://amsat.org/tle/current/nasabare.txt" >> TLE.txt | |
c:\cmdtool64\curl.exe -# "https://celestrak.org/NORAD/elements/gp.php?GROUP=amateur&FORMAT=tle" >> TLE.txt | |
c:\cmdtool64\curl.exe -# "https://celestrak.org/NORAD/elements/gp.php?GROUP=cubesat&FORMAT=tle" >> TLE.txt | |
rem c:\cmdtool64\curl.exe -# "https://celestrak.org/NORAD/elements/gp.php?GROUP=education&FORMAT=tle" >> TLE.txt | |
rem c:\cmdtool64\curl.exe -# "https://celestrak.org/NORAD/elements/gp.php?GROUP=engineering&FORMAT=tle" >> TLE.txt |
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
#!/usr/bin/env bash | |
[ $# -eq 0 ] && { echo "No input file given"; exit 1; } | |
[ ! -f "$1" ] && { echo "File $1 not found"; exit 1; } | |
tail -c +5 "$1" > /tmp/data.raw | |
ffmpeg -f s16le -ac 1 -ar 11025 -i /tmp/data.raw -y "${1%.mmv}.wav" |
NewerOlder