- 博客(31)
- 资源 (2)
- 收藏
- 关注
原创 字节对齐原则
一 简单类型char 偏移量必须为sizeof(char) 即1的倍数,可以任意地址开始存储 short 偏移量必须为sizeof(short) 即2的倍数,只能从0,2,4...等2的倍数的地址开始存储 int 偏移量必须为sizeof(int) 即4的倍数,只能从0,4,8...等4的倍数的地址开始存储 float 偏移量必须为sizeof(float) 即4的倍数,只能从0,4,8...等4的倍数的地址开始存储 double 偏移量必须为sizeof(double)即8的倍数,只能从0,8
2020-05-28 16:48:26 330
原创 libxml2使用xmlNewChild新增节点时不换行
使用函数xmlNewChild新增没有prop的节点时,参数content不能传空字符串,用NULL即可xmlNodePtr xmlNewChild(xmlNodePtr parent, xmlNsPtr ns, const xmlChar *name, const xmlChar *content)...
2020-04-21 16:05:20 1230
原创 Text file busy 文本文件忙
使用 fuser 命令查看程序文件被哪个进程占用,然后用 kill 命令杀死该进程,即解决问题。fuser命令是用来显示所有正在使用着指定的file, file system 或者 socket 的进程信息。fuser <程序文件名><程序文件名>: 50340kill -TERM 50340注:在普通用户下使用fuser是没有结果的,要切换至r...
2018-09-12 14:57:15 4555
转载 值得推荐的C/C++框架和库 (收藏)
https://blog.csdn.net/xiaoxiaoyeyaya/article/details/42541419
2018-04-19 14:03:38 313 1
原创 Your File and DataBase is downloaded and backed up on our secured servers
中了勒索病毒,有进程占用一直很高查看/etc/rc.local,里面有/boot/efi/daemon_c.sh和/boot/efi/killer.sh两个脚本,删除/boot/efi/daemon.sh和/boot/efi/killer.sh脚本文件,并删除/etc/rc.local里面的这两个脚本相关的内容,重启即可...
2018-03-24 15:44:13 1313
原创 phpstudy 2016安装redis扩展
1、查看php版本2、查看phpinfo3、下载对应版本的扩展文件我的是:http://windows.php.net/downloads/pecl/releases/redis/2.2.7/php_redis-2.2.7-5.6-nts-vc11-x86.zip和http://windows.php.net/downloads/pecl/releases/igbinary/1.2.1/php_i...
2018-03-05 16:27:59 3700
原创 停止win10自动更新(Windows10UpgraderApp)
删除c:/Windows10Upgrade文件夹中的所有文件,在Windows10Upgrade文件夹下新建一个文件夹,命名为Windows10UpgraderApp.exe,然后在Windows10UpgraderApp.exe这个文件夹下新建一个文件夹,名称随意
2018-02-02 17:12:41 6885
原创 linux环境下如何卸载一路赚钱(yilu/mservice)
一、删除定时任务:sudo crontab -l -u root 2>/dev/null | grep -v mservice | sudo crontab -u root -二、停止服务对于ubuntu以及centos 7的用户service YiluzhuanqianSer stop对于centos 6的用户sudo pidof mser
2018-02-02 17:06:05 3051
原创 WebBench安装和使用
1、WebBench安装:官网http://home.tiscali.cz/~cz210552/webbench.htmlwget http://home.tiscali.cz/~cz210552/distfiles/webbench-1.5.tar.gztar zxvf webbench-1.5.tar.gzcd webbench-1.5makemake install
2017-12-07 15:18:53 1680
原创 virtualbox修改虚拟机mac地址后不能识别网卡
修改ifcfg-eth0中新的MAC地址(在/etc/sysconfig/network-scripts/ifcfg-eth0中的HWADDR参数)删除/etc/udev/rules.d/70-persistent-net.rules使用start_udev命令重新检查硬件使用service network restart或者重新启动
2017-10-20 17:59:14 2868
转载 Another MySQL daemon already running with the same unix socket
To prevent the problem from occurring, you must perform a graceful shutdown of the server from the command line rather than powering off the server.# shutdown -h nowThis will stop the running
2017-08-28 18:38:41 301
原创 centos6.5安装docker
升级CentOS 6.5内核到 3.10.281、导入public keyrpm --import https://www.elrepo.org/RPM-GPG-KEY-elrepo.org2、安装elrepo软件源rpm -Uvh http://www.elrepo.org/elrepo-release-6-6.el6.elrepo.noarch.rpm如果报错:...
2017-06-21 10:24:22 308
原创 不生成core文件
在/etc/profile加入ulimit -S -c unlimited > /dev/null 2>&1source /etc/profile
2017-03-20 17:36:59 778
原创 CentOS6.5升级GCC4.8.2
wget http://ftp.gnu.org/gnu/gcc/gcc-4.8.2/gcc-4.8.2.tar.bz2tar -jxvf gcc-4.8.2.tar.bz2cd gcc-4.8.2 ./contrib/download_prerequisitesmkdir gcc-build-4.8.2cd gcc-build-4.8.2../configure --prefix=/usr
2017-03-18 18:40:17 179
原创 安装好后如何查看mysql/apache/nginx/php安装参数
查看mysql编译参数: cat /usr/local/mysql/bin/mysqlbug | grep CONFIGURE_LINE 查看apache编译参数: cat $apachehome$/build/config.nice 查看php编译参数: $PHP$/bin/php -i | grep configure ./php -r "phpinfo();" | g
2017-03-14 13:22:13 256
原创 blocked for more than 120 seconds 错误
解决方案:1. 修改参数 vm.dirty_ratio 和 vm.dirty_backgroud_ratio 可以避免这个问题# sysctl -w vm.dirty_ratio=10# sysctl -w vm.dirty_background_ratio=5立即生效:# sysctl -p永久修改(需要reboot生效):# vi /etc/sysctl.conf
2017-03-14 13:21:00 2944
原创 linux学习笔记-杂项
查看线程cpu占用看线程信息:top -H -p 9978可以用下面的命令将 cpu 占用率高的线程找出来:$ ps H -eo user,pid,ppid,tid,time,%cpu,cmd –sort=%cpulinux查看错误日志tail -n 10 /var/log/messages关闭防火墙1) 重启后生效 开启: chk
2017-03-14 13:20:11 242
原创 lua tolua++以及LuaBitOp安装
lua-5.1.4make linuxmake installtolua++-1.0.93先安装scons修改config_linux.pyCCFLAGS = ['-O2', '-ansi', '-Wall']prefix = '/usr/local/lib'LIBS = ['liblua', 'dl', 'm']sconsscons insta
2017-03-14 13:13:39 889
原创 mysql相关
rpm安装:yum install -y mysql-server mysql mysql-develmysql编译安装./configure --prefix=/usr/local/mysql -with-charset=utf8--with-extra-charsets=complex --enable-thread-safe-client --with-big-tables --with-...
2017-03-14 12:07:08 357
原创 autoconf automake相关
autoscan->configure.scan->configure.in 包含了系统配置的 基本选项,里面都是 一些宏定义aclocal 根据configure.in文件的内容,自动生成aclocal.m4文件autoheader 生成config.h.in文件autoconf 处理configure.in文件中的宏,产生configure文件M
2017-03-14 12:02:57 268
原创 linux学习笔记-rpm安装卸载查看
rpm安装卸载rpm -i lrzsz-0.12.20-27.1.el6.x86_64.rpmrpm -qa | grep tomcat4 查看 tomcat4 是否被安装rpm -e tomcat4 卸载 tomcat4 软件包
2017-03-14 12:02:02 308
原创 linux学习笔记-从光盘安装软件
从光盘安装软件挂载光盘mount /dev/cdrom /mnt/cdrom设置软件下载目录vim /etc/yum.repos.d/rhel-debuginfo.repo [rhel-Server] name=Red Hat Enterprise Linux $releasever - $basearch - Debugbaseurl=file:///cd/Server/
2017-03-14 11:57:13 880
原创 linux java openjdk 安装配置
yum install java-1.7.0-openjdk java-1.7.0-openjdk-devel -yvim /etc/profileexport JAVA_HOME=/usr/lib/jvm/java-1.7.0-openjdk-1.7.0.121.x86_64export CLASSPATH=.:$JAVA_HOME/jre/lib/rt.jar:$J
2017-03-14 11:54:57 273
原创 Linux下Tinyxml编译为静态库
参考文章http://blog.csdn.net/yasi_xi/article/details/38872467
2017-03-12 21:47:49 726
原创 MySQL5.1.51在Linux上的安装和配置(收藏)
参考文章http://blog.csdn.net/w171066/article/details/50825539
2017-03-12 21:46:24 742
原创 Linux学习笔记之RedHat Enterprise Linux 6.4 使用 Centos 6 的yum源问题
参考文章http://www.th7.cn/system/lin/201402/50472.shtml
2017-03-12 19:07:03 199
原创 protobuf2.6.1安装问题
参考文章http://blog.chinaunix.net/uid-28595538-id-5082366.html
2017-03-12 15:01:34 1850
原创 llvm安装和使用
参考的文章收藏下来:http://blog.csdn.net/c_sdnq2451q/article/details/46999119http://www.xuebuyuan.com/491332.htmlhttp://blog.csdn.net/templarzq/article/details/25318011
2017-03-07 15:07:22 1909
libevent-2.0.21-stable windows编译好的版本
2017-08-31
空空如也
TA创建的收藏夹 TA关注的收藏夹
TA关注的人