易截截图软件、单文件、免安装、纯绿色、仅160KB

Linux编程

一、Linux设计特点:多用户(多个用户可以同时登录,同一用户可以登录多次);多任务(同一程序可以有多个线程或进程并发执行);分时。
二、C开发环境:开发工具(包括编译器、连接器、gcc)、工程管理软件(make)、编辑器、分析调试工具gdb、函数库、版本控制系统CVS。(Perl不需要编译)。
三、在线文档:
1.manpage手册页,共8个部分,可用man ls命令查看。要查看某部分介绍,用man sectionNum。要查看某个命令的解释,用man commandName。要查看man命令各参数的含义,用man man。
2.Info页:以超文本格式提供信息,可在info浏览器或Emacs下阅读。Ctrl+H+i,进入info浏览器。
3.Perl文档:perlfunc(1),以POD格式提供各模块文档,用perldoc moduleName查看。
4.程序文档:/usr/doc/程序名 下。/usr/include下存放源文件,比较重要的有asm、linux、sys。找头文件或内核代码中的条目时,进入/usr/include或/usr/src/linux目录,用grep sigaction find -type f,可在当前目录下的所有文件中找需要的字符串。
5.Internet资源:
   Linux Document Project(LDP)--http://www.linuxdoc.org,其中的文档主要针对系统管理员和用户。
   开发方面:/usr/doc/HOWTO,或/usr/share/doc/HOWTO.
   http://www.linux.com,  http://www.linuxlinks.com


相关文档:

实战Linux Bluetooth编程(六) L2CAP编程实例

例一:发送Signaling Packet:
Signaling Command是2个Bluetooth实体之间的L2CAP层命令传输。所以得Signaling Command使用CID 0x0001.
多个Command可以在一个C-frame(control frame)中发送。
 如果要直接发送Signaling Command.需要建立SOCK_RAW类型的L2CAP连接Socket。这样才有机会自己填充Command Code,Identi ......

4.1. Introduction to Linux Routing


4.1. Introduction to Linux Routing
The design of IP routing allows for very simple route definitions for small networks, while not hindering the flexibility of routing in complex environments. A key concept in IP routing is the ability to define what addresses are locally reachable as oppose ......

linux学习指南

前言,Linux/Unix 社区的版块不热闹,新手太多,高手太忙,偶把自己这几年的Linux学习的过程讲讲,希望能给大家有点帮助,
引导初学者学习的方向,少走弯路,事半功倍,同时也是抛砖引玉,请过来人热烈发言。

1. 首先熟悉 Linux

建议在 Windows 上安装 VMware Workstation 6.5.0(以下简称VM), 下载种子在 ......

linux c mkdir创建递归目录

#include <unistd.h>
#include <stdlib.h>
#include <stdio.h>
#include <string.h>
#define err(msg) perror(msg)
static void mkdirs(const char *dir)
{
        char tmp[1024];
        char *p;
 &nbs ......

linux下c语言关机程序

/* Offtimer.c.For auto halt. */
#include <time.h>
#include <stdlib.h>
#include <unistd.h>
#define DELAY 60/* Time of sleeping */
int main()
{
  time_t now;
  struct tm *p;
  
  while(1)
  {
  now = time(NULL);
&n ......
© 2009 ej38.com All Rights Reserved. 关于E健网联系我们 | 站点地图 | 赣ICP备09004571号