在Windows Server 2008 下安装VS 2008时,碰到如下错误:
You must use the Role Management Tool to install or configure Microsoft .NET……
more >>
记录成长的地方
在Windows Server 2008 下安装VS 2008时,碰到如下错误:
You must use the Role Management Tool to install or configure Microsoft .NET……
more >>
安装vs2008、2010或者是VC++ runtime library时候会在磁盘根目录下产生产生一系列的txt、dll、ini、等文件如
9个文本文件 名字分别为
eula.1028.txt ,
eula.1031.txt ,
more >>
VIRT:virtual memory usage 虚拟内存
1、进程“需要的”虚拟内存大小,包括进程使用的库、代码、数据等
2、假如进程申请100m的内存,但实际只使用了10m,那么它会增长100m,而不是实际的使用量
RES:resident memory usage 常驻内存
1、进程当前使用的内存大小,但不包括swap out
2、包含其他进程的共享
3、如果申请100m的内存,实际使用10m,它只增长10m,与VIRT相反
4、关于库占用内存的情况,它只统计加载的库文件所占内存大小
SHR:shared memory 共享内存
1、除了自身进程的共享内存,也包括其他进程的共享内存
2、虽然进程只使用了几个共享库的函数,但它包含了整个共享库的大小
3、计算某个进程所占的物理内存大小公式:RES – SHR
4、swap out后,它将会降下来
Error 3 error C4996: ‘strcpy’: This function or variable may be unsafe. Consider using strcpy_s instead. To disable deprecation, use _CRT_SECURE_NO_WARNINGS. See online help for details. g:\workspace\c++\clipboard\clipboard\clipboard\clipboarddlg.cpp 170 1 clipboard
解决方案,项目 ->属性 -> c/c++ -> 预处理器 -> 点击预处理器定义,编辑,加入_CRT_SECURE_NO_WARNINGS,即可。
more >>
Error 1 error MSB8031: Building an MFC project for a non-Unicode character set is deprecated. You must change the project property to Unicode or download an additional library. See http://go.microsoft.com/fwlink/p/?LinkId=286820 for more information. G:\Program Files (x86)\MSBuild\Microsoft.Cpp\v4.0\V120\Microsoft.CppBuild.targets 376 5 Smon
more >>
编译xmlRPC报错,xmlrpc-c用到了libcurl:
lib/curl_transport/curlmulti.c:22:24: fatal error: curl/types.h:No such file or directory
早上起来看到阿里云的邮件说http.responsetime报警,,
登录到服务器上看了半天没找到原因,nginx reload过没用,静态页面是可以访问的。
百度了下
有篇文章里提到了磁盘满了,,df一看,擦100%,想想最近没做什么,只能使日志文件太占空间了。
du -sh ./ | sort -n >a.txt
打开a.txt一看 log目录两三个G,,,清理了下,,,o了。
决定看下子目录情况,好做写相应处理。。。。。。。。。。
du -a ./ | sort -n >a.txt
出现502 其他可能原因
第二种原因:
tag:
缺失模块。
1、请确保node版本大于6.2
2、在博客根目录(注意不是yilia根目录)执行以下命令:
npm i hexo-generator-json-content --save
3、在根目录_config.yml里添加配置:
jsonContent: meta: false pages: false posts: title: true date: true path: true text: false raw: false content: false slug: false updated: false comments: false link: false permalink: false excerpt: false categories: false tags: true