设置OPENWRT LUCI界面默认为简体中文
- 1、下载文档前请自行甄别文档内容的完整性,平台不提供额外的编辑、内容补充、找答案等附加服务。
- 2、"仅部分预览"的文档,不可在线预览部分如存在完整性等问题,可反馈申请退款(可完整预览的文档不适用该条件!)。
- 3、如文档侵犯您的权益,请联系客服反馈,我们会尽快为您处理(人工客服工作时间:9:00-18:30)。
设置LUCI为中文界面
进入~/openwrt/trunk/feeds/luci/modules/base/root/etc/config中,有个luci的文件,打开编辑
config core main
option lang auto
option mediaurlbase /luci-static/
option resourcebase /luci-static/resources
config extern flash_keep
option uci “/etc/config/”
option dropbear “/etc/dropbear/”
option openvpn “/etc/openvpn/”
option passwd “/etc/passwd”
option opkg “/etc/opkg.conf”
option firewall “/etc/er”
option uploads “/lib/uci/upload/”
config internal languages
config internal sauth
option sessionpath “/tmp/luci-sessions”
option sessiontime 3600
config internal ccache
option enable 1
config internal themes
原来的内容
修改为以下内容
config core main
option lang zh_cn
option mediaurlbase /luci-static/
option resourcebase /luci-static/resources
config extern flash_keep
option uci “/etc/config/”
option dropbear “/etc/dropbear/”
option openvpn “/etc/openvpn/”
option passwd “/etc/passwd”
option opkg “/etc/opkg.conf”
option firewall “/etc/er”
option uploads “/lib/uci/upload/”
config internal languages
option zh_cn ‘chinese’
option en ‘English’
config internal sauth
option sessionpath “/tmp/luci-sessions”
option sessiontime 3600
config internal ccache
option enable 1
config internal themes
红色加粗为修改后的内容,保存后打包回去即可。
注:一定要先make clean,然后再进行make V=99,编译完成之后下载到开发板