发布时间:2013-04-24 09:21:58
1.下载platform-tools-linux.tar.gz工具, #root$:tar -zxvf platform-tools-linux.tar.gz 解压到当前位置。 2.在/etc/profile配置环境变量 #root$ :vim /etc/profile 加入如下: ADB_HOM.........【阅读全文】
发布时间:2013-04-08 13:30:39
http://www.ibm.com/developerworks/cn/linux/l-cn-sysfs/......【阅读全文】
发布时间:2013-04-02 13:10:12
linux下的文件结构,看看每个文件夹都是干吗用的/bin 二进制可执行命令 /dev 设备特殊文件 /etc 系统管理和配置文件 /etc/rc.d 启动的配置文件和脚本 /home 用户主目录的基点,比如用户user的主目录就是/home/user,可以用~user表示 /lib 标准程序设计库,又叫动态链接共享库,作用类似wind.........【阅读全文】
发布时间:2013-04-01 18:10:11
Test demo as follow: using system common#include <stdio.h>#include <string.h>#include<unistd.h> int main(int argc ,char *argv[]){ printf("system_test \n"); system("chmod 777 ~/test/system_test/a");}zhuang@ubuntu:~/test/system_test$ ls -l.........【阅读全文】
发布时间:2013-04-01 17:30:58
/usr/include/asm-generic/errno-base.h#ifndef _ASM_GENERIC_ERRNO_BASE_H#define _ASM_GENERIC_ERRNO_BASE_H#define EPERM 1 /* Operation not permitted */#define ENOENT 2 /* No such file or directory */#define ESRCH 3 /* No such process */#define EINTR 4 /* Interrupted system call */#define EIO 5.........【阅读全文】