上一页 1 ··· 31 32 33 34 35 36 37 38 39 ··· 77 下一页
摘要: U-boot的环境变量值得注意的有两个: bootcmd 和bootargs。u-bootcmd 前面有说过bootcmd是自动启动时默认执行的一些命令,因此你可以在当前环境中定义各种不同配置,不同环境的参数设置,然后设置bootcmd为你经常使用的那种参数。u-bootargs bootargs是环境变量中的重中之重,甚至可以说整个环境变量都是围绕着bootargs来设置的。bootargs的种类非常非常的多,我们平常只是使用了几种而已,感兴趣的可以看看这篇文章说的很全:http://blog.chinaunix.net/u2/79570/showart_1675071.html。boo.. 阅读全文
posted @ 2012-12-23 00:12 ahuo 阅读(263) 评论(0) 推荐(0) 编辑
摘要: 显示这个提示:CS8900 Ethernet chip not found ,表示不支持网络,对应驱动没有被移植替换dm9000x和smdk6410 重新编译u-boot既可http://files.cnblogs.com/ahuo/u-boot-Net.rar 阅读全文
posted @ 2012-12-22 23:07 ahuo 阅读(220) 评论(0) 推荐(0) 编辑
摘要: 查找:在当前目录下的.jsp文件中查找“alert”字符串grep "alert" *.jsp在当前目录及其多个子目录中查找文件portal.jspfind . -name "portal.jsp" -print在当前目录及其多个子目录下的.jsp文件中查找字符串"alert"find . -name "*.jsp" -print | xargs grep "alert"替换:在当前目录下的.jsp文件中把字符串"password"替换成"pwd"perl 阅读全文
posted @ 2012-12-22 00:31 ahuo 阅读(624) 评论(0) 推荐(0) 编辑
摘要: #include "stdafx.h"#include "windows.h"class CLock{private: CRITICAL_SECTION m_section;public: CLock(void) { InitializeCriticalSection(&m_section); } ~CLock(void) { DeleteCriticalSection(&m_section); } void lock() { EnterCriticalSection(&m_section); } void unLock() { 阅读全文
posted @ 2012-12-17 21:41 ahuo 阅读(1114) 评论(0) 推荐(0) 编辑
摘要: extern int __argc;extern TCHAR** __argv;修改为:调试,静态库 MFC 应用程序的"调试 Multithreaded"。发行版中,静态库的 MFC 应用程序的"Multithreaded"。 阅读全文
posted @ 2012-12-16 20:15 ahuo 阅读(480) 评论(0) 推荐(0) 编辑
摘要: Runtime Library四个选项的含义:(D表示Dll,而d表示debug版本)MT(Multi-threaded):多线程版本MTd(Multi-threaded debug):多线程调试版本MD(Multi-threaded Dll):多线程Dll版本MDd(Multi-threaded debugdebug):多线程调试Dll版本正常情况下,当我们用VC编译出一个Console/Win32类型项目的exe程序时(这里暂不考虑MFC程序),会依赖于msvcrxx.dll文件(xx为不同VC对应的版本号,VC2005为80,VC2008为90,VC2010为100),发布程序的时候,就 阅读全文
posted @ 2012-10-29 14:29 ahuo 阅读(579) 评论(0) 推荐(0) 编辑
摘要: http://files.cnblogs.com/ahuo/boost_asio.rar 阅读全文
posted @ 2012-10-08 15:35 ahuo 阅读(139) 评论(0) 推荐(0) 编辑
摘要: 1、 Linux中一些头文件的作用:<assert.h>:ANSI C。提供断言,assert(表达式)<glib.h>:GCC。GTK,GNOME的基础库,提供很多有用的函数,如有数据结构操作函数。使用glib只需要包含<glib.h><dirent.h>:GCC。文件夹操作函数。struct dirent,struct DIR,opendir(),closedir(),readdir(),readdir64()等<ctype.h>:ANSI C。字符测试函数。isdigit(),islower()等<errno.h>: 阅读全文
posted @ 2012-09-18 23:51 ahuo 阅读(2103) 评论(0) 推荐(0) 编辑
摘要: man -f openopen (3tcl) - 打开基于文件或命令管道的一个通道open (2) - 用来 打开和创建 一个 文件或设备open (n) - Open a file-based or command pipeline channelopen (1) - start a program on a new virtual terminal (VT).man -k openfdopen (3) - 打开流fopen (3) - 打开流freopen (3) - 打开流iconv_open (3) - 分配... 阅读全文
posted @ 2012-09-17 14:38 ahuo 阅读(287) 评论(0) 推荐(0) 编辑
摘要: kill -l1) SIGHUP 2) SIGINT 3) SIGQUIT 4) SIGILL 5) SIGTRAP6) SIGABRT 7) SIGBUS 8) SIGFPE 9) SIGKILL 10) SIGUSR111) SIGSEGV 12) SIGUSR2 13) SIGPIPE 14) SIGALRM 15) SIGTERM16) SIGSTKFLT 17) SIGCHLD 18) SIGCONT 19) SIGSTOP 20) SIGTSTP21) SIGTTIN 22) SIGTTOU 23) SIGURG 24) SIGXCPU 25) SIGXFSZ26) ... 阅读全文
posted @ 2012-09-13 10:52 ahuo 阅读(401) 评论(0) 推荐(0) 编辑
摘要: 执行命令WSDL http://www.wsdl.com/dddd?wsdl生产对于的C#类文件,加入工程既可以使用 阅读全文
posted @ 2012-09-12 13:46 ahuo 阅读(633) 评论(0) 推荐(0) 编辑
摘要: /*server.c*/#include<signal.h>#include<sys/wait.h>#include"inet.h"#include<stdlib.h>intinit_ser(int);intmax(inta,intb){intthemax;if(a>b)themax=a;elsethemax=b;returnthemax;}voidset_name(char*line,char*name){strcpy(name,&line[1]);sprintf(line,"%sjointheroom\n&qu 阅读全文
posted @ 2012-09-05 16:47 ahuo 阅读(2728) 评论(0) 推荐(0) 编辑
摘要: 下载地址:http://sourceforge.net/projects/gsoap2官方网站:http://genivia.com/Products/gsoap/index.html工程: http://files.cnblogs.com/ahuo/gsoap.rar生成代码:soapcpp2.exe add.h 阅读全文
posted @ 2012-08-28 18:07 ahuo 阅读(234) 评论(0) 推荐(0) 编辑
摘要: ssize_t ret; while(len!=0&&(ret=read(fd,buf,len))!=0){if(ret==-1){if(errno==EINTR)continue;perror("read");break;}len-=ret;buf+=ret;}#include <stdio.h>#include <errno.h>#include <string.h>#include <sys/types.h>#include <fcntl.h>intmain (int argc, char * 阅读全文
posted @ 2012-08-27 16:15 ahuo 阅读(264) 评论(0) 推荐(0) 编辑
摘要: ifconfig eth0 ip 更改IP 网关可以用 route命令查看修改添加网关route add default gw 网关地址 删除网关route del default gw 网关地址用这两个命令改`只能保证在电脑开着的时候用` 而且你一重新启动 这俩地址就会还原到以前的`不想还原可以改配置文件网关IP都在 /etc/sysconfig/network-scripts/ifcfg-eth0 这个文件里改 可以永久保存 DNS是在/etc/resolv.conf 这个配置文件里修改 修改后也是永久保存 阅读全文
posted @ 2012-08-27 14:37 ahuo 阅读(247) 评论(0) 推荐(0) 编辑
上一页 1 ··· 31 32 33 34 35 36 37 38 39 ··· 77 下一页