简介
该用户还未填写简介
擅长的技术栈
可提供的服务
暂无可提供的服务
搞了我一天,终于在linux下成功安装了Qt,我用的系统是Fedora 9。首先下载qt-x11-opensource-src-4.3.2.tar.gz源码包(地址是:http://down1.chinaunix.net/distfiles/qt-x11-opensource-src-4.3.2.tar.gz,将这个地址直接粘贴到迅雷的新建任务中进行下载)。下载好源码包后,我们来一步一步地操作
#includevoid write_data2file(){FILE *fp;char buffer[100];memset(buffer,0,sizeof(buffer));fp=fopen("data.log","a+");if( NULL != fp ){sprintf(buffer,"I want to
int CreateDir(constchar*sPathName){charDirName[256];strcpy(DirName,sPathName);inti,len=strlen(DirName);if(DirName[len-1]!='/')strcat(DirName,"/
#include#include#includechar* GetLocalIp(){int MAXINTERFACES=16;char *ip = NULL;int fd, intrface, retn = 0;struct ifreq buf[MAXINTERFACES];struct
最近由于项目中需要用到zookeeper,仔细的研究了一下,将持续更新zookeeper相关文章,留个痕迹。本文以及后续zookeeper相关的文章都是以Linux环境环境为基础的,代码是基于C语言。zookeeper是Hadoop下的一个子项目,主要用来解决同步服务,配置管理,集群管理,分布式调度等一些分布式应用中的问题,具体的zookeeper的详细介绍网上很多,在此不再赘述。zo
我的Fedora14是自己安装的,安装的时候基本上把可选的安装包都安装了。一,Linux上Qt开发环境的安装1. 首先安装Fedora14上安装Qt Creator,需要的安装包为【qt-sdk-linux-x86-opensource-2009.05.bin】,下载地址为【http://get.qt.nokia.com/qtsdk/qt-sdk-linux-x86-opensource-
服务器端程序: #include #include #include #include #include #include #include #include #include #include #define PORT 2370 #defi
原文链接地址:http://www.jb51.net/LINUXjishu/43356.htmlLinux下最常用的打包程序就是tar了,使用tar程序打出来的包我们常称为tar包,tar包文件的命令通常都是以.tar结尾的。生成tar包后,就可以用其它的程序来进 行压缩了,所以首先就来讲讲tar命令的基本用法: tar命令的选项有很多(用man tar可以查看到),但常用的就那么
void get_sys_time(char buf[]){time_t now;struct tm *timenow;time(&now);timenow=localtime(&now);memset(buf,0,sizeof(buf));sprintf(buf,"%d-%d-%d %d:%d:%d",timenow->tm_year+1900, timenow->tm_mon+1, timen
#include#include#include#include#includeint main(void){int result=-1;int fd[2],nbytes;//数组用来存放管道两端的文件描述符pid_t pid;char string[]="hello , pipe";//要发送的内容char readbuffer[80];