├── .gitignore ├── README.md ├── all └── all.run ├── arm64 ├── OPS.run ├── OPSPVB.run ├── startarm64 └── tun.gz └── x86 ├── OPS.run ├── OPSPVB.run ├── finish ├── start └── tun.gz /.gitignore: -------------------------------------------------------------------------------- 1 | 2 | .DS_Store 3 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # allinone run script
2 | 使用门槛路由器本身能扶墙或者上一级路由能扶墙
3 | 本脚本用于软路由iStoreOS系统(x86_64、arm64)
4 | 执行这个脚本可以快速安装各类装机必备插件。
5 | 6 | 7 |
 8 | 
 9 |  █████╗ ██╗     ██╗         ██╗███╗   ██╗     ██████╗ ███╗   ██╗███████╗    ██╗  ██╗ █████╗  ██████╗ 
10 | ██╔══██╗██║     ██║         ██║████╗  ██║    ██╔═══██╗████╗  ██║██╔════╝    ╚██╗██╔╝██╔══██╗██╔════╝ 
11 | ███████║██║     ██║         ██║██╔██╗ ██║    ██║   ██║██╔██╗ ██║█████╗       ╚███╔╝ ╚█████╔╝███████╗ 
12 | ██╔══██║██║     ██║         ██║██║╚██╗██║    ██║   ██║██║╚██╗██║██╔══╝       ██╔██╗ ██╔══██╗██╔═══██╗
13 | ██║  ██║███████╗███████╗    ██║██║ ╚████║    ╚██████╔╝██║ ╚████║███████╗    ██╔╝ ██╗╚█████╔╝╚██████╔╝
14 | ╚═╝  ╚═╝╚══════╝╚══════╝    ╚═╝╚═╝  ╚═══╝     ╚═════╝ ╚═╝  ╚═══╝╚══════╝    ╚═╝  ╚═╝ ╚════╝  ╚═════╝ 
15 |                                                                                                      
16 |  
17 | 18 | # Features
19 | * 设置好自定义域名劫持(主机名映射),防止Android原生TV首次连接不到Wifi的情况。
20 | * 设置Emotn Store的域名代理,防止出现打不开Emotn Store的问题
21 | * 安装好软路由关机、定时设置等必备插件
22 | * 批量下载安装三大插件(OPS)
23 | * 自动识别软路由架构 24 | * 其他等功能 25 | 26 | # 提示:如何使用ssh ?参考如下图文 27 | https://github.com/wukongdaily/HowToUseSSH 28 | 29 | # How to Use 30 | ![Static Badge](https://img.shields.io/badge/all%20in%20one%20script-8A2BE2?logo=black&logoColor=black&label=%E7%BB%88%E7%AB%AF) GitHub Repo stars 31 | 32 |

33 |

方式一: 在软路由终端执行下列命令即可(不区分CPU架构)

34 |

35 |

36 | 37 | ``` 38 | wget -O /tmp/all.run https://raw.githubusercontent.com/wukongdaily/allinonescript/main/all/all.run && chmod +x /tmp/all.run && /tmp/all.run 39 | 40 | 41 | ``` 42 | 43 |

44 | 45 |

46 | 这个版本可以自动识别ARM或者x86平台,只需要执行上述命令,不需要担心架构问题。目前只适配了iStoreOS固件。其他固件后续看情况哈。 47 |

48 | 49 | 50 |

方式二: 下载release中的run文件。打开iStore商店,手动安装即可。


51 | GitHub all releases 52 | 下载地址:https://github.com/wukongdaily/allinonescript/releases
53 | 54 | 55 | 56 |

57 |
58 | 59 | ![image](https://github.com/wukongdaily/allinonescript/assets/143675923/885169e1-68b6-4edf-8ece-ca6881d22faf) 60 |
61 | 62 | 63 | 64 | 65 | 66 | # 其他OpenWrt系统的通用脚本(非iStoreOS系统) 67 | https://github.com/wukongdaily/commonscript
68 | 69 | # 便携路由器 GL-iNet MT-3000/MT2500 70 | https://github.com/wukongdaily/gl-inet-onescript 71 | 72 | # Refers to 73 | https://github.com/linkease/istore
74 | https://op.dllkids.xyz/packages
75 | 76 | 77 | 78 | -------------------------------------------------------------------------------- /all/all.run: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wukongdaily/allinonescript/b9d02cfc3c2699aa6fd82db59ccc029403ca9903/all/all.run -------------------------------------------------------------------------------- /arm64/OPS.run: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wukongdaily/allinonescript/b9d02cfc3c2699aa6fd82db59ccc029403ca9903/arm64/OPS.run -------------------------------------------------------------------------------- /arm64/OPSPVB.run: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wukongdaily/allinonescript/b9d02cfc3c2699aa6fd82db59ccc029403ca9903/arm64/OPSPVB.run -------------------------------------------------------------------------------- /arm64/startarm64: -------------------------------------------------------------------------------- 1 | 2 | _ _ _ _ 3 | __ _| | | (_)_ __ ___ _ __ ___ / \ _ __ _ __ ___ 4 | / _` | | | | | '_ \ / _ \| '_ \ / _ \ / _ \ | '__| '_ ` _ \ 5 | | (_| | | | | | | | | | (_) | | | | __/ / ___ \| | | | | | | | 6 | \__,_|_|_| |_|_| |_| \___/|_| |_|\___| /_/ \_\_| |_| |_| |_| 7 | 8 | -------------------------------------------------------------------------------- /arm64/tun.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wukongdaily/allinonescript/b9d02cfc3c2699aa6fd82db59ccc029403ca9903/arm64/tun.gz -------------------------------------------------------------------------------- /x86/OPS.run: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wukongdaily/allinonescript/b9d02cfc3c2699aa6fd82db59ccc029403ca9903/x86/OPS.run -------------------------------------------------------------------------------- /x86/OPSPVB.run: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wukongdaily/allinonescript/b9d02cfc3c2699aa6fd82db59ccc029403ca9903/x86/OPSPVB.run -------------------------------------------------------------------------------- /x86/finish: -------------------------------------------------------------------------------- 1 | 2 | ███████╗██╗███╗ ██╗██╗███████╗██╗ ██╗ 3 | ██╔════╝██║████╗ ██║██║██╔════╝██║ ██║ 4 | █████╗ ██║██╔██╗ ██║██║███████╗███████║ 5 | ██╔══╝ ██║██║╚██╗██║██║╚════██║██╔══██║ 6 | ██║ ██║██║ ╚████║██║███████║██║ ██║ 7 | ╚═╝ ╚═╝╚═╝ ╚═══╝╚═╝╚══════╝╚═╝ ╚═╝ 8 | 9 | 10 | -------------------------------------------------------------------------------- /x86/start: -------------------------------------------------------------------------------- 1 | 2 | 3 | █████╗ ██╗ ██╗ ██╗███╗ ██╗ ██████╗ ███╗ ██╗███████╗ ██╗ ██╗ █████╗ ██████╗ 4 | ██╔══██╗██║ ██║ ██║████╗ ██║ ██╔═══██╗████╗ ██║██╔════╝ ╚██╗██╔╝██╔══██╗██╔════╝ 5 | ███████║██║ ██║ ██║██╔██╗ ██║ ██║ ██║██╔██╗ ██║█████╗ ╚███╔╝ ╚█████╔╝███████╗ 6 | ██╔══██║██║ ██║ ██║██║╚██╗██║ ██║ ██║██║╚██╗██║██╔══╝ ██╔██╗ ██╔══██╗██╔═══██╗ 7 | ██║ ██║███████╗███████╗ ██║██║ ╚████║ ╚██████╔╝██║ ╚████║███████╗ ██╔╝ ██╗╚█████╔╝╚██████╔╝ 8 | ╚═╝ ╚═╝╚══════╝╚══════╝ ╚═╝╚═╝ ╚═══╝ ╚═════╝ ╚═╝ ╚═══╝╚══════╝ ╚═╝ ╚═╝ ╚════╝ ╚═════╝ 9 | 10 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /x86/tun.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wukongdaily/allinonescript/b9d02cfc3c2699aa6fd82db59ccc029403ca9903/x86/tun.gz --------------------------------------------------------------------------------