摘要: 1、一定要下载跟操作系统匹配的版本(32位或64位),下载的时候选择MySQL Community Server。 2、以管理员身份打开cmd,切到mysql\bin目录,执行mysqld.exe --install命令,当出现Service successfully installed.时,就表明 阅读全文
posted @ 2018-08-08 15:46 cgc0415 阅读(136) 评论(0) 推荐(0) 编辑
摘要: 在c盘下面新建文件 ping.vbs在 ping.vbs中输入代码如下: 切到脚本所在目录,然后调出cmd,执行如下命令 阅读全文
posted @ 2018-08-05 11:47 cgc0415 阅读(2301) 评论(0) 推荐(0) 编辑
摘要: 基本语法: 1、所有 XML 元素都须有关闭标签 在XML中省略关闭标签是非法的,所有元素都必须要有关闭标签。 2、XML 标签对大小写敏感 XML 标签对大小写敏感。在 XML 中,标签 <Letter> 与标签 <letter> 是不同的。必须使用相同的大小写来编写打开标签和关闭标签: 3、XM 阅读全文
posted @ 2018-07-30 20:29 cgc0415 阅读(807) 评论(0) 推荐(0) 编辑
摘要: It's the section that the man page for the command is assigned to. These are split as Original descriptions of each section can be seen in the Unix Pr 阅读全文
posted @ 2018-07-09 14:26 cgc0415 阅读(277) 评论(0) 推荐(0) 编辑
摘要: 客户端代码 服务端 阅读全文
posted @ 2018-07-05 23:02 cgc0415 阅读(147) 评论(0) 推荐(0) 编辑
摘要: Linux divides its physical RAM (random access memory) into chucks of memory called pages. Swapping is the process whereby a page of memory is copied t 阅读全文
posted @ 2018-04-20 17:55 cgc0415 阅读(154) 评论(0) 推荐(0) 编辑
摘要: Each row in /proc/$PID/maps describes a region of contiguous virtual memory in a process or thread. Each row has the following fields: address - This 阅读全文
posted @ 2018-04-19 21:03 cgc0415 阅读(390) 评论(0) 推荐(0) 编辑
摘要: 1、查看Python是否安装完毕 2、pycharm皮肤设置 File->Settings->Appearance->UI Options->Theme: 阅读全文
posted @ 2018-04-12 20:47 cgc0415 阅读(112) 评论(0) 推荐(0) 编辑
摘要: 进程的调度和管理 内存的管理 文件系统的管理 设备驱动程序的管理 网络资源的管理 1、[功能] 统计文本文件行数 [命令] wc -l filename 2、删除当前目录下除a、b外的文件 ls|grep -v 'a\|b'|xargs rm -rf 3、对一个目录及其子目录所有文件加权限 chmo 阅读全文
posted @ 2018-04-12 16:53 cgc0415 阅读(99) 评论(0) 推荐(0) 编辑
摘要: 头文件 首先要引入头文件 #include <map> . 并使用命名空间 using namespace std; 1、插入元素 用pair 或者 make_pair 均可,map键值不能重复。 2、访问map中元素 3、从map对象中删除元素 4、判断map是否为空 5、统计map中元素个数 6 阅读全文
posted @ 2018-04-11 17:12 cgc0415 阅读(89) 评论(0) 推荐(0) 编辑