摘要: linux服务管理1 服务分类 linux服务分为rpm包默认安装的服务,源码包安装的服务。其中rpm安装的服务分为独立的服务和基于xinetd服务 学习主要是针对独立的服务的 服务的启动和自启动 查询已安装的服务 rpm包安装的服务 chkconfig --list 查看服务自启动状态,可以看到所 阅读全文
posted @ 2016-01-22 21:06 小德cyj 阅读(200) 评论(0) 推荐(0) 编辑
摘要: shell编程 1 echo -e 识别\转义符 \a \b \t \n \x十六进制 \0八进制 等等 #!/bin/bash echo -e "hello world" 执行脚本:方式1 :chmod 755 hello.sh ./hello.sh 方式2 :bash ./hello.sh(这种 阅读全文
posted @ 2016-01-22 21:05 小德cyj 阅读(313) 评论(0) 推荐(0) 编辑
摘要: linux 命令学习linux注意事项:1 linux严格区分大小写,windows不区分大小写,linux下所有命令都是小写的,linux系统下文件名区分大小写,windows下文件名不区分大小写。 2 linux中所有内容都是以文件形式保存,包括硬盘。如果没有写到文件中,写到内存中,那么重启后则 阅读全文
posted @ 2016-01-22 21:04 小德cyj 阅读(427) 评论(0) 推荐(0) 编辑
摘要: 参考文献: 量子行为粒子群优化算法研究[D], 孙俊 阅读全文
posted @ 2016-01-22 17:31 小德cyj 阅读(1418) 评论(0) 推荐(0) 编辑
摘要: #include #include #include using namespace std; #define M 50 //群体数目50 #define N 4 //每个粒子的维数4 #define NN 500 //迭代次数 #define chaotic_count 3 //判断是否进入停滞状态 #define gama 0.001 #define R ... 阅读全文
posted @ 2016-01-22 16:55 小德cyj 阅读(3650) 评论(0) 推荐(0) 编辑