1.dpkg: error: dpkg status database is locked by another process 解决办法:sudo rm -rf /var/lib/dpkg/lock2.在64位系统上安装ia32-libs后(Ubuntu执行:sudo apt-get instal...
分类:
系统相关 时间:
2014-06-26 23:10:00
阅读次数:
438
You can try this to install 32 lib(not all in ia32-libs):apt-get install program:i386.Or if you want to install the whole ia32-lib instead, try the fo...
分类:
移动开发 时间:
2014-06-26 18:09:51
阅读次数:
256
//载入核心文件include "./libs/Smarty.class.php";$smarty = new Smarty();//模版目录$smarty->template_dir = "template";//模版目录$smarty->compile_dir = "temp/compile";...
分类:
其他好文 时间:
2014-06-25 16:45:02
阅读次数:
184
QtCreator新建一个Qt Application,命名为ImageView在项目文件夹下添加gdal库,统一放在ImageView\gdal目录下。右键单击项目,选择添加库命令,添加gdal_i.lib和头文件路径,完成后可以再ImageView.pro文件中查看:win32: LIBS +=...
分类:
其他好文 时间:
2014-06-25 13:30:10
阅读次数:
290
如果遇到mysql-libs-5.1.73-3.el6_5.x86_64conflicts with file from package Percona-Server-server报错,有两种情况导致这个问题:
1)卸载操作系统预装的mysql-libs包
rpm -qa | grep -i libs | grep -i mysql
rpm -e mysql-libs
2)安装Percona-Server-shared-compat-5.5.33-rel31.1.566.rhel6.x86_64.rpm包(...
分类:
数据库 时间:
2014-06-24 18:23:49
阅读次数:
247
环境:一台window客户端192.168.1.100虚拟机上两台centOS:主DNS192.168.1.103从DNS192.168.1.104主DNS服务器一、软件安装查找与bind有关的软件包[root@instructornamed]#yumlistall|grep"^bind"
bind.i68632:9.8.2-0.23.rc1.el6_5.1
bind-libs.i68632:9.8.2-0.23.rc1.el6_5.1
..
分类:
其他好文 时间:
2014-06-24 16:18:56
阅读次数:
268
你要是看过basic_stream_socket的文档,里面提到async_write_some不能保证将所有要发送的数据都发出去。并且提到如果想这样做,需要使用boost asio的async_writehttp://www.boost.org/doc/libs/1_53_0/doc/html/b...
分类:
其他好文 时间:
2014-06-24 09:22:01
阅读次数:
282
只有看boost源码才能弄明白发生了什么。首先我是将vector里面写入了数据,然后用boost::asio::buffer将vector构造成了mutable_buffer_1对象。参考该文档的重载形式:http://www.boost.org/doc/libs/1_53_0/doc/html/b...
分类:
其他好文 时间:
2014-06-23 08:30:25
阅读次数:
446
公司做的电商APP,现在要加入联系客服功能,起初想的是做一个即时聊天系统,以前没做过,这两天开始恶补,后来需求变了,改成调用QQ开放平台,做一个临时会话就行了,这就省了不少力气,也不需要再去组件服务端了。
步骤:
1.引用QQ SDK源码文件。
创建一个工程,并把open-sdk.jar文件和mta_sdk_x.x.x.jar文件拷贝到libs(或lib)目录下,如下图所示:
选中op...
分类:
移动开发 时间:
2014-06-22 19:39:30
阅读次数:
298
一、 smarty引用把这段代码添加到zendframework根目录下的index.php里,include './library/Smarty/libs/Smarty.class.php';$smarty = new Smarty();$smarty -> template_dir = "./a...
分类:
其他好文 时间:
2014-06-21 14:13:59
阅读次数:
266