|
| 1 | +# 软件包变更日志 |
| 2 | + |
| 3 | +## 移除了 ipv6helper |
| 4 | + |
| 5 | +请用 |
| 6 | + |
| 7 | +`opkg update && opkg install ipv6-helper` |
| 8 | + |
| 9 | +启用 IPV6 支持。 |
| 10 | + |
| 11 | +## 移除了一些软件包: |
| 12 | + |
| 13 | +由于各种原因,移除了一些软件包,移除的软件包均可通过 `opkg` 命令安装 (见下文) |
| 14 | + |
| 15 | +### 移除了一些不常用的软件包 |
| 16 | + |
| 17 | +| 包名: | | | |
| 18 | +| ---------------------- | ---------------------------- | ---------------------- | |
| 19 | +| luci-app-airplay2 | luci-app-music-remote-center | luci-app-udpxy | |
| 20 | +| luci-app-baidupcs-web | luci-app-mwan3 | luci-app-uugamebooster | |
| 21 | +| luci-app-familycloud | luci-app-mwan3helper | luci-app-verysync | |
| 22 | +| luci-app-filebrowser | luci-app-ps3netsrv | luci-app-xlnetacc | |
| 23 | +| luci-app-frps | luci-app-rclone | luci-udptools | |
| 24 | +| luci-app-haproxy-tcp | luci-app-shairplay | luci-proto-minieap | |
| 25 | +| luci-app-mentohust | luci-app-socat | bsdtar | |
| 26 | +| luci-app-minidlna | luci-app-syncthing | bzip2 | |
| 27 | +| luci-app-mjpg-streamer | luci-app-tinyproxy | zip | |
| 28 | + |
| 29 | +### 移除了部分不常用且容易产生歧义的软件包: |
| 30 | + |
| 31 | +| 包名 | | |
| 32 | +| ------------------------ | ------------------------------------------------------------ | |
| 33 | +| luci-app-v2ray-server | 可能会与客户端插件造成混淆 (客户端请用 ShadowSocks Plus+ / Passwall / OpenClash) | |
| 34 | +| luci-app-ssr-mudb-server | | |
| 35 | + |
| 36 | +### 移除了部分可能与其他插件产生冲突的软件包 |
| 37 | + |
| 38 | +| 包名 | 移除原因 | |
| 39 | +| --------------------------- | ------------------------------------------------------------ | |
| 40 | +| luci-app-dockerman / docker | Docker 会影响 UDP 转发 | |
| 41 | +| luci-app-kodexplorer | kodexplorer 中的 Nginx 会与 OpenWrt 的默认 Web 服务器 Uhttpd 产生端口冲突,打印大量错误日志 | |
| 42 | +| luci-app-mwan3 | | |
| 43 | +| luci-app-mwan3helper | 默认配置下 多线多拨/负载均衡 会与 IPV6 冲突 | |
| 44 | +| luci-app-syncdial | | |
| 45 | + |
| 46 | +### 因编译时长问题,移除了以下软件包 |
| 47 | + |
| 48 | +| 包名 | 移除原因 | |
| 49 | +| ---------------------------- | ---------------------------------------------------- | |
| 50 | +| luci-app-jd-dailybonus | 依赖 node 且编译时间过长,有一定可能导致固件编译超时 | |
| 51 | +| luci-app-unblockneteasemusic | 依赖 node 且编译时间过长,有一定可能导致固件编译超时 | |
| 52 | +| luci-app-qbittorrent | 依赖 qt5 且编译时间过长,有一定可能导致固件编译超时 | |
| 53 | + |
| 54 | +## 软件包安装指南 |
| 55 | + |
| 56 | +更新软件包索引: |
| 57 | + |
| 58 | +``` |
| 59 | +opkg update |
| 60 | +``` |
| 61 | + |
| 62 | +列出可安装的所有 LuCI APP : |
| 63 | + |
| 64 | +``` |
| 65 | +opkg list | grep luci-app | grep -v Translation |
| 66 | +``` |
| 67 | + |
| 68 | +安装软件包 (以 luci-app-ssr-plus 为例): |
| 69 | + |
| 70 | +``` |
| 71 | +opkg install luci-app-ssr-plus |
| 72 | +``` |
| 73 | + |
| 74 | +若发现此时新安装软件包界面为英文,则尝试查找该软件包的中文翻译包: |
| 75 | + |
| 76 | +``` |
| 77 | +opkg list | grep luci-app-ssr-plus | grep zh-cn |
| 78 | +``` |
| 79 | + |
| 80 | +此时可以得到该软件包的中文翻译包为 `luci-i18n-ssr-plus-zh-cn`,使用 `opkg install` 命令安装此翻译包即可: |
| 81 | + |
| 82 | +``` |
| 83 | +opkg install luci-i18n-ssr-plus-zh-cn |
| 84 | +``` |
| 85 | + |
| 86 | +可安装的 LuCI APP 列表: |
| 87 | + |
| 88 | +https://github.com/SuLingGG/OpenWrt-Mini/blob/main/doc/LuCI-App-List.md |
| 89 | + |
| 90 | +更多 opkg 使用方法请参考 OpenWrt Guide: |
| 91 | + |
| 92 | +https://openwrt.org/docs/guide-user/additional-software/opkg |
0 commit comments