library列表
<h3>libnl</h3>
<ul>
<li>描述:The libnl suite is a collection of libraries providing APIs to netlink protocol based Linux kernel interfaces. Netlink is a IPC mechanism primarly between the kernel and user space processes. It was designed to be a more flexible successor to ioctl to provide mainly networking related kernel configuration and monitoring interfaces.
<a href="http://www.infradead.org/~tgr/libnl/">http://www.infradead.org/~tgr/libnl/</a></li>
</ul>
<h3>dropbear</h3>
<p>嵌入式平台下<code>ssh</code>服务器占用资源较少</p>
<h3>socketcand</h3>
<p>socketcand提供通过网路接口访问硬件CAN接口的守护进程。 通讯协议使用了TCP/IP和特定协议传输CAN帧和控制命令。</p>
<h3>start-stop-daemon</h3>
<p>start-stop-daemon是一个Debian体系里的一个守护进程管理软件,可以用指定的用户启停软件。CentOS有自己的daemon()机制(在/etc/init.d/functions)。但是如果你手上有一个脚本,必须使用start-stop-daemon在CentOS上启停,则需要安装start-stop-daemon工具才可以使用。</p>
<pre><code># 开启一个daemon进程
start-stop-daemon --start --background --exec /root/proxy.py
# 关闭一个daemon进程
start-stop-daemon --stop --name proxy.py</code></pre>