Openwrt移除Alist

1.移除

1.构建移除

  • 取消menuconfig中 LUCI -> Applications -> luci-app-alist

  • 注释掉config文件中luci-app-alist相关项目

2.固件中移除

opkg remove luci-i18n-alist-zh-cn --autoremove
opkg remove luci-app-alist --autoremove
opkg remove alist --autoremove

如果是通过istoreos安装的还需要移除

opkg remove app-meta-alist --autoremove
# 先查找相关配置文件
find / -name "*alist*" 2>/dev/null
# 检查无误可以批处理移除
find / -name "*alist*" -exec rm -rf {} \; 2>/dev/null

2.添加OpenAlist

1.构建添加

  • 添加menuconfig中 LUCI -> Applications -> luci-app-openlist

  • 添加config文件中luci-app-openlist相关项目

2.固件中安装

1.确定架构

确定固件的DISTRIB_ARCH。可在OpenWrt文件系统的/etc/openwrt_release中查询

cat /etc/openwrt_release | grep DISTRIB_ARCH

2.下载相关IPK文件

https://github.com/sbwml/luci-app-openlist/releases/

根据系统的DISTRIB_ARCH搜索下载,例如我的是aarch64_cortex-a53,因此下载openwrt-24.10-aarch64_cortex-a53.tar.gz

3.安装

可以通过Web后台 -> 系统 -> 软件包进行上传安装。

也可以通过FTP上传到 /tmp 后使用opkg命令进行安装

注意安装顺序

opkg install /tmp/openlist_2025.06.19~70b937e0-r1_aarch64_cortex-a53.ipk
opkg install /tmp/luci-app-openlist_1.0.0-r1_all.ipk
opkg install /tmp/luci-i18n-openlist-zh-cn_25.165.67873~9391fcb_all.ipk

istoreos的app-meta位于https://repo.istoreos.com/repo/all/meta 下,当然如果istoreos提供了,也就简单了

posted @ 2025-06-21 17:54  SpringCore  阅读(336)  评论(0)    收藏  举报