发布时间:2016-06-01 11:04:10
Linux 2.6内核配置说明 (国嵌) Code maturity level options 代码成熟度选项 Prompt for development .........【阅读全文】
发布时间:2016-06-01 10:18:46
如果使用make menuconfig的方式配置内核,又碰巧系统没有安装ncurses库(ubuntu系统默认就没有安装此库),就会出现错误,错误信息大体上如下:*** Unable to find the ncurses libraries or the*** required header files.*** 'make menuconfig' requires the ncurses libraries.****** Install ncurse.........【阅读全文】
发布时间:2016-06-01 10:13:06
xz这个压缩可能很多都很陌生,不过您可知道xz是绝大数linux默认就带的一个压缩工具。之前xz使用一直很少,所以几乎没有什么提起。我是在下载phpmyadmin的时候看到这种压缩格式的,phpmyadmin压缩包xz格式的居然比7z还要小,这引起我的兴趣。最新一段时间会经常听到xz被采用的声音,像是最新的archlinux.........【阅读全文】
发布时间:2016-05-28 17:20:34
1 #include 2 ssize_t recv(int sockfd, void *buff, size_t nbytes, int flags); 3 ssize_t send(int sockfd, const void *buff, size_t nbytes, int flags);recv 和send的前3个参数等同于read和write。flags参数值为0或: flags说明recv.........【阅读全文】
发布时间:2016-05-17 14:00:15
头文件 #include<stdio.h> #include<stdlib.h>//注意 不可以掉了这个头文件,perror是包含在这个文件里的//编辑本段perror表头文件完善版定义函数 void perror(const char *s); perror ("open_port");函数说明 perror ( )用 来 将 上 一 个 函 数 发 生 .........【阅读全文】