# 禁用网络接口 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
| AO-7 | |
| 1 07530U 74089B 26051.87876834 -.00000051 00000-0 -28305-4 0 9998 | |
| 2 07530 101.9974 63.8876 0012134 354.5706 72.3443 12.53695969345940 | |
| GO-32 | |
| 1 25397U 98043D 26064.94689580 .00000100 00000-0 63444-4 0 9993 | |
| 2 25397 99.0023 55.1278 0001952 125.5048 234.6312 14.24404795436634 | |
| ISS | |
| 1 25544U 98067A 26051.79705790 .00009624 00000-0 18780-3 0 9996 | |
| 2 25544 51.6323 155.8543 0008571 116.6604 243.5263 15.48167199553715 | |
| KKS-1 |
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 | |
| c:\cmdtool64\curl.exe -# -f "https://tle.xanyi.eu.org/https://celestrak.org/NORAD/elements/gp.php?GROUP=active&FORMAT=tle" >> tle.txt | |
| c:\cmdtool64\curl.exe -# -f "https://tle.xanyi.eu.org/https://celestrak.org/NORAD/elements/gp.php?GROUP=amateur&FORMAT=tle" >> tle.txt | |
| c:\cmdtool64\curl.exe -# -f "https://tle.xanyi.eu.org/https://celestrak.org/NORAD/elements/gp.php?GROUP=visual&FORMAT=tle" >> tle.txt | |
| c:\cmdtool64\curl.exe -# -f "https://tle.xanyi.eu.org/https://celestrak.org/NORAD/elements/gp.php?GROUP=cubesat&FORMAT=tle" >> tle.txt | |
| c:\cmdtool64\curl.exe -# -f "https://tle.xanyi.eu.org/https://celestrak.org/NORAD/elements/gp.php?GROUP=education&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