. Linux内核主要由哪几部分组成?每部分的作用? 参考答案: Linux内核主要由五个子系统组成:进程调度,内存管理,虚拟文件系统,网络接口,进程间通信。 进程调度(SCHED):控制进程对CPU的访问。当需要选择下一个进程运行时, 由调度程序选择最值得运行的进程;内存管理(MM)允许多个进程安... Read More
posted @ 2016-01-18 17:04 welkinok Views(10765) Comments(0) Diggs(0) Edit
1、查看linux内核版本cat /proc/version uname -a2、查看cpu频率,型号,个数cat /proc/cpuinfo1. 查看物理CPU的个数#cat /proc/cpuinfo |grep "physical id"|sort |uniq|wc -l2. 查看逻辑CPU的... Read More
posted @ 2016-01-07 10:27 welkinok Views(156) Comments(0) Diggs(0) Edit
1、会话选项设置背景颜色Options => Sessions options => Terminal => Emulation,在 Terminal下拉列表下选择Linux,勾选 ANSI Color。2、全局选项options -> global options ->Terminal ->App... Read More
posted @ 2016-01-06 11:20 welkinok Views(373) Comments(0) Diggs(0) Edit
mysql> select name from test where name = any(select name from test where chengji > 80 and xueke='guangdong') and chengji >80 and xueke ='hunan'; sel... Read More
posted @ 2016-01-04 10:10 welkinok Views(688) Comments(0) Diggs(0) Edit
1、写一个脚本查找最后创建时间是3天前,后缀是*.log的文件并删除。find / -name "*.log" -ctime +3 -exec rm -f {} \;又例: 例: 将/usr/local/backups目录下所有10天前带"."的文件删除 find/usr/local/backup... Read More
posted @ 2015-12-30 12:01 welkinok Views(240) Comments(0) Diggs(0) Edit
半年前,我写了《计算机是如何启动的?》,探讨BIOS和主引导记录的作用。那篇文章不涉及操作系统,只与主板的板载程序有关。今天,我想接着往下写,探讨操作系统接管硬件以后发生的事情,也就是操作系统的启动流程。这个部分比较有意思。因为在BIOS阶段,计算机的行为基本上被写死了,程序员可以做的事情并不多;但... Read More
posted @ 2015-12-29 10:16 welkinok Views(179) Comments(0) Diggs(0) Edit
1、下载pip-7.1-10.tar.gz下载地址:https://pypi.python.org/pypi/pip#downloads2、解压.tar.gz文件3、cd 切换到目录4、运行 python setup.py install 即可5、查看是否成功windows path里环境配置加入C... Read More
posted @ 2015-12-28 11:47 welkinok Views(195) Comments(0) Diggs(0) Edit
该文被密码保护。 Read More
posted @ 2015-12-23 15:55 welkinok Views(1) Comments(0) Diggs(0) Edit
1、eclipse 开普勒版本2、安装mingw3、配置环境变量mingw的 path 加入;C:\MinGW\bin4、eclipse 中的市场搜索 CDT Read More
posted @ 2015-12-12 18:18 welkinok Views(164) Comments(0) Diggs(0) Edit
1、三个表连接SELECT * FROM stock320151203 as a , stock320151202 as b , stock320151201 as c WHERE a.id=b.id and a.id=c.id;两个表连接:SELECT * FROM stock320151203 ... Read More
posted @ 2015-12-04 12:35 welkinok Views(156) Comments(0) Diggs(0) Edit