logo
publist
写文章

简介

该用户还未填写简介

擅长的技术栈

可提供的服务

暂无可提供的服务

Linux下Qt安装之qt-x11-opensource-src-4.3.2的安装与配置

搞了我一天,终于在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,将这个地址直接粘贴到迅雷的新建任务中进行下载)。下载好源码包后,我们来一步一步地操作

#qt#linux
Linux C写数据到文件中

#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

Linux下递归创建目录

int CreateDir(constchar*sPathName){charDirName[256];strcpy(DirName,sPathName);inti,len=strlen(DirName);if(DirName[len-1]!='/')strcat(DirName,"/

Linux下C语言获取本机IP地址

#include#include#includechar* GetLocalIp(){int MAXINTERFACES=16;char *ip = NULL;int fd, intrface, retn = 0;struct ifreq buf[MAXINTERFACES];struct

zookeeper环境的搭建

最近由于项目中需要用到zookeeper,仔细的研究了一下,将持续更新zookeeper相关文章,留个痕迹。本文以及后续zookeeper相关的文章都是以Linux环境环境为基础的,代码是基于C语言。zookeeper是Hadoop下的一个子项目,主要用来解决同步服务,配置管理,集群管理,分布式调度等一些分布式应用中的问题,具体的zookeeper的详细介绍网上很多,在此不再赘述。zo

嵌入式之Fedora14+Tiny6410上Qt4.7开发环境的搭建

我的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-

#qt#嵌入式#linux
linux下基于TCP简单的socket通信程序

服务器端程序: #include     #include     #include     #include     #include     #include     #include     #include     #include     #include     #define PORT 2370      #defi

#linux
linux下tar.gz、tar、bz2、zip等解压缩、压缩命令小结

原文链接地址:http://www.jb51.net/LINUXjishu/43356.htmlLinux下最常用的打包程序就是tar了,使用tar程序打出来的包我们常称为tar包,tar包文件的命令通常都是以.tar结尾的。生成tar包后,就可以用其它的程序来进 行压缩了,所以首先就来讲讲tar命令的基本用法:   tar命令的选项有很多(用man tar可以查看到),但常用的就那么

Linux下获取系统时间

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

linux下父子进程间的通信——管道

#include#include#include#include#includeint main(void){int result=-1;int fd[2],nbytes;//数组用来存放管道两端的文件描述符pid_t pid;char string[]="hello , pipe";//要发送的内容char readbuffer[80];

#linux
到底了