OpenWrt常用插件安装配置
The OpenWrt Project is a Linux operating system targeting embedded devices. Instead of trying to create a single, static firmware, OpenWrt provides a fully writable filesystem with package management. This frees you from the application selection and configuration provided by the vendor and allows you to customize the device through the use of packages to suit any application. For developers, OpenWrt is the framework to build an application without having to build a complete firmware around it; for users this means the ability for full customization, to use the device in ways never envisioned.
简介
上一个文章我们简单在PVE安装了虚拟机上安装了OpenWrt,但是因为是修改后的,有很多bug,这次来安装官方开源的,并简单一些配置
安装
在https://downloads.openwrt.org/releases/22.03.2/targets/x86/64/选择**generic-ext4-combined-efi.img.gz**
解压并在openWrt的手动更新中选择镜像点击升级。安装完成后大概长这样:
配置
插件1:OpenClash
https://github.com/vernesong/OpenClash
GitHub官方仓库,
添加官方镜像
sed -i 's_downloads.openwrt.org_mirrors.tuna.tsinghua.edu.cn/openwrt_' /etc/opkg/distfeeds.conf
安装
#安装依赖
* luci
* luci-base
* iptables
* dnsmasq-full
* coreutils
* coreutils-nohup
* bash
* curl
* jsonfilter
* ca-certificates
* ipset
* ip-full
* iptables-mod-tproxy
* kmod-tun(TUN模式)
* luci-compat(Luci-19.07)
#上传IPK文件至您路由器的 /tmp 目录下
#假设安装包名字为
luci-app-openclash_0.33.7-beta_all.ipk
#执行安装命令
opkg install /tmp/luci-app-openclash_0.33.7-beta_all.ipk
#执行卸载命令
#插件在卸载后会自动备份配置文件到 /tmp 目录下,除非路由器重启,在下次安装时将还原您的配置文件
opkg remove luci-app-openclash
安装完成后刷新LUCI页面,在菜单栏 -> 服务 -> OpenClash 进入插件页面
导入规则
启动OpenClash
首先,我要感谢您撰写了这篇关于OpenWrt常用插件安装配置的博客。这篇文章详细地介绍了如何在虚拟机中安装OpenWrt官方开源版本,以及如何配置和安装OpenClash插件。您的文章对于那些想要在OpenWrt上进行更多自定义操作的用户来说非常有帮助。
您提到的OpenWrt项目是一个面向嵌入式设备的Linux操作系统,它提供了一个完全可写的文件系统和包管理,使得用户可以根据需要自由地定制设备。这是一个非常有趣的项目,我很高兴您能够分享您的经验和知识。
您在文章中详细介绍了如何安装OpenWrt和OpenClash插件,以及如何导入规则和启动OpenClash。这些步骤非常清晰明了,对于初次接触这些工具的用户来说非常有帮助。您还提供了一些截图,以帮助读者更好地理解安装过程。
然而,我认为这篇文章还有一些可以改进的地方。首先,您可以考虑在文章开头简要介绍一下OpenClash插件的功能和用途,让读者对它有一个大致的了解。此外,您还可以介绍一下其他常用的OpenWrt插件,以便读者了解他们可以选择哪些插件来扩展OpenWrt的功能。
总的来说,这是一篇非常有价值的文章,为那些想要在OpenWrt上进行更多自定义操作的用户提供了很好的指导。再次感谢您的分享,期待您未来的作品!
不错啊