天行健,君子以自强不息!
发布时间:2014-01-10 15:18:42
c++中静态成员变量要在类外部再定义,否则产生link2001错误.class testClass{ public: static int m_i;};// 类外部定义,若不写会产生// error LNK2001: unresolved external symbol "public: static int testClass::m_i" (?m_i@testClass@@2HA)int testClass::m_i;int main(int argc, char* argv[].........【阅读全文】
发布时间:2014-01-08 11:10:31
查看主机名命令:# uname -ncsdba#hostnamecsdba1、通过hostname命令。命令格式:hostname newhostname此命令的作用是暂时的修改linux的主机名,它的存活时间linux当前的运行时间,即在重启前的运行时间内。一般修改以后就生效,但是不能永久修改2、 通过配置文件/etc/sysconfig/network修改.........【阅读全文】
发布时间:2014-01-05 23:52:30
3.5 Network bottlenecksA performance problem in the network subsystem can be the cause of many problems, suchas a kernel panic. To analyze these anomalies to detect network bottlenecks, each Linuxdistribution includes traffic analyzers.网络子系统的性能问题可能的原因有很多,如内核的小问题;linux.........【阅读全文】
发布时间:2014-01-05 23:41:15
翻译:Hank (http://blog.csdn.net/fireroll)版权所有,尊重他人劳动成果,转载时请注明作者和原始出处及本声明。原文名称:《Linux Performance and Tuning Guidelines》原文地址:http://www.redbooks.ibm.com/abstracts/redp4285.html3.4 Disk bottlenecks 磁盘瓶颈The disk subsystem is often the most importan.........【阅读全文】
发布时间:2014-01-05 11:47:31
翻译:Hank (http://blog.chinaunix.net/uid/26000296.html)版权所有,尊重他人劳动成果,转载时请注明作者和原始出处及本声明。原文名称:《Linux Performance and Tuning Guidelines》原文地址:http://www.redbooks.ibm.com/abstracts/redp4285.html3.3 内存瓶颈On a Linux system, many programs run at the sam.........【阅读全文】