<?xml version="1.0" encoding="gbk"?>
<rss version="2.0">
  <channel>
    <title>曲径通幽论坛 - LUCI</title>
    <link>http://www.groad.net/bbs/forum.php?mod=forumdisplay&amp;fid=257</link>
    <description>Latest 20 threads of LUCI</description>
    <copyright>Copyright(C) 曲径通幽论坛</copyright>
    <generator>Discuz! Board by Comsenz Inc.</generator>
    <lastBuildDate>Mon, 25 May 2026 22:17:39 +0000</lastBuildDate>
    <ttl>60</ttl>
    <image>
      <url>http://www.groad.net/bbs/static/image/common/logo_88_31.gif</url>
      <title>曲径通幽论坛</title>
      <link>http://www.groad.net/bbs/</link>
    </image>
    <item>
      <title>重启按钮失效的解决办法</title>
      <link>http://www.groad.net/bbs/forum.php?mod=viewthread&amp;tid=8962</link>
      <description><![CDATA[一般情况下，从主导航栏下的 \&quot;System\&quot; --&gt; \&quot;Reboot\&quot; ，单击 “Perform reboot” 时，系统会自动重启。查看 LUCI 代码，执行的是 luci.sys.reboot() 函数，但有时会失效，具体原因我暂时也没发现，不过解决办法是将 luci.sys.reboot() 替换成 luci.sys.call(\&quot;reboot -f\&quot;) ...]]></description>
      <category>LUCI</category>
      <author>beyes</author>
      <pubDate>Mon, 20 Jul 2015 09:33:18 +0000</pubDate>
    </item>
    <item>
      <title>关于 LUCI2</title>
      <link>http://www.groad.net/bbs/forum.php?mod=viewthread&amp;tid=8916</link>
      <description><![CDATA[相关地址：



1. Add new feed into \&quot;feeds.conf\&quot;:


2. 安装 LuCI2：


3. make menuconfig 选择

4. 完成]]></description>
      <category>LUCI</category>
      <author>beyes</author>
      <pubDate>Mon, 11 May 2015 01:22:42 +0000</pubDate>
    </item>
    <item>
      <title>Dropbear 的配置位置</title>
      <link>http://www.groad.net/bbs/forum.php?mod=viewthread&amp;tid=8876</link>
      <description><![CDATA[Dropbear 的配置位置：]]></description>
      <category>LUCI</category>
      <author>beyes</author>
      <pubDate>Fri, 03 Apr 2015 03:21:12 +0000</pubDate>
    </item>
    <item>
      <title>获取提交的表单</title>
      <link>http://www.groad.net/bbs/forum.php?mod=viewthread&amp;tid=8802</link>
      <description><![CDATA[使用 luci.http.formvalue() 函数可以获取用户提交（POST）的表单，然后可以依次决定来执行自定义的脚本（luci.sys.call() 函数）。

比如判断是否按下 “保存&amp;提交” 按钮，那么可以：


如果你做了一个单选框，其名为 (enable)，那么可以：

注意，单选框是 cb ...]]></description>
      <category>LUCI</category>
      <author>beyes</author>
      <pubDate>Fri, 19 Dec 2014 04:06:58 +0000</pubDate>
    </item>
    <item>
      <title>简单介绍一下如何汉化</title>
      <link>http://www.groad.net/bbs/forum.php?mod=viewthread&amp;tid=8801</link>
      <description><![CDATA[写了个简单的小插件，突然想将其中一些内容汉化，网上所找资料比较零散，后来折腾了一下，却突然发现有了效果，这里简单做下记录。

在 LUCI 官网得知，*.po 文件用来翻译源程序代码中的字符串。由于我编译过 Openwrt 的源码，于是在某个目录下看到许多 *.po 文件，打 ...]]></description>
      <category>LUCI</category>
      <author>beyes</author>
      <pubDate>Wed, 17 Dec 2014 12:56:18 +0000</pubDate>
    </item>
    <item>
      <title>luci compilation error:iwinfo.h: No such file or directory</title>
      <link>http://www.groad.net/bbs/forum.php?mod=viewthread&amp;tid=8800</link>
      <description><![CDATA[在最新稳定版 LUCI 0.12 源码下执行 sudo make runuhttpd 时出现编译错误：


解决办法是，找到

contrib/package/luci/Makefile 和 modules/admin-full/src/luci-bwc.c 这两个文件，并按照 http://luci.subsignal.org/trac/changeset/10377 中将其还原到老版本（9 ...]]></description>
      <category>LUCI</category>
      <author>beyes</author>
      <pubDate>Tue, 16 Dec 2014 16:42:42 +0000</pubDate>
    </item>
    <item>
      <title>Luci 实现框架</title>
      <link>http://www.groad.net/bbs/forum.php?mod=viewthread&amp;tid=8799</link>
      <description><![CDATA[上一篇总结了 uhttpd 的工作方式，openwrt中利用它作为web服务器，实现客户端web页面配置功能。对于request处理方式，采用的是 cgi，而所用的 cgi 程序就是luci，工作框架如下图所示： 



Client 端和 serv 端采用 cgi 方式交互，uhttpd 服务器的 cgi 方式中，fork ...]]></description>
      <category>LUCI</category>
      <author>easy</author>
      <pubDate>Tue, 16 Dec 2014 03:04:55 +0000</pubDate>
    </item>
    <item>
      <title>在LUCI中调用系统命令及脚本</title>
      <link>http://www.groad.net/bbs/forum.php?mod=viewthread&amp;tid=8795</link>
      <description><![CDATA[在 LUCI 中调用系统命令及脚本使用函数 luci.sys.call() ，比如：

这样就会在 /tmp 下生成含有 hello 字串的 test.txt 文件。

luci.sys.call() 返回值是命令的错误代码，比如：

一般 shell 命令执行成功时返回值为 0，那么上面代码中，若正常生成了 /tmp/test. ...]]></description>
      <category>LUCI</category>
      <author>beyes</author>
      <pubDate>Mon, 15 Dec 2014 13:33:37 +0000</pubDate>
    </item>
    <item>
      <title>UCI 方式开发 LUCI 模块</title>
      <link>http://www.groad.net/bbs/forum.php?mod=viewthread&amp;tid=8783</link>
      <description><![CDATA[开发 LUCI 配置模块有多种方式，比较方便的是 UCI 方式。使用 UCI 接口使得在 LUCI 中无需考虑配置文件如何存储和读取，且在该方式下也会自动创建 “保存&amp;应用”，“保存” 和 “复位” 3 个按钮，同时在 Bash 文件中也可以非常方便的存储和读取。


下面以只有一个 ...]]></description>
      <category>LUCI</category>
      <author>beyes</author>
      <pubDate>Sat, 06 Dec 2014 03:06:17 +0000</pubDate>
    </item>
  </channel>
</rss>