我们每天使用互联网,你是否想过,它是如何实现的? 全世界几十亿台电脑,连接在一起,两两通信。上海的某一块网卡送出信号,洛杉矶的另一块网卡居然就收到了,两者实际上根本不知道对方的物理位置,你不觉得这是很神奇的事情吗? 互联网的核心是一系列协议,总称为"互联网协议"(Internet Protocol ...
分类:
其他好文 时间:
2019-03-14 23:35:42
阅读次数:
291
# cat /proc/cpuinfo | grep physical | sort -n | uniq | wc -l 3 代表3个cpu的个数 查看服务器型号 # dmidecode|grep "System Information" -A9|egrep "Manufacturer|Produc ...
分类:
其他好文 时间:
2019-03-12 21:17:15
阅读次数:
283
Thread is for execution Kernel level thread, physical parallelism Cores Divide work amount of physical cores / CPU Load balancing Data Splitting Which ...
分类:
其他好文 时间:
2019-03-10 09:54:23
阅读次数:
186
该设备有 2个光口、8个电口 Interface IP Address/Mask Physical Protocol GigabitEthernet0/0/0 unassigned down down GigabitEthernet0/0/1 unassigned down down 默认是关闭的 ...
分类:
其他好文 时间:
2019-03-05 11:12:18
阅读次数:
479
1、查看服务器的CPU 查看CPU信息:cat /proc/cpuinfo 物理cpu个数:cat /proc/cpuinfo | grep "physical id" | sort | uniq | wc -l 每个物理cpu中core的个数(即核数):cat /proc/cpuinfo | gr ...
分类:
系统相关 时间:
2019-02-17 00:44:05
阅读次数:
204
1. (URI,统一资源标识符)A Uniform Resource Identifier that identifies an abstract or physical resource, as specified by RFC 2396.(统一资源标识符用于标示一个抽象或者物理资源) (URL, ...
分类:
Web程序 时间:
2019-02-15 18:09:13
阅读次数:
181
cat /proc/cpuinfo中的信息processor 逻辑处理器的id。physical id 物理封装的处理器的id。core id 每个核心的id。cpu cores 位于相同物理封装的处理器中的内核数量。siblings 位于相同物理封装的处理器中的逻辑处理器的数量。1 查看物理CPU ...
分类:
系统相关 时间:
2019-02-01 11:24:02
阅读次数:
220
first,I wish you a happy new year, and study in spring festival’s eve means you are hardworking,haha. I write in two languages. One passage write in C ...
分类:
编程语言 时间:
2019-01-31 22:56:16
阅读次数:
238
色彩校正中的 gamma 值是什么? 一直听到这个词就是不知道什么意思,也没找到特别好的介绍。 添加评论 分享 按投票排序按时间排序 6 个回答 赞同82 反对,不会显示你的姓名 韩世麟 xufeng tao、杨文韬、Alee Wei 等人赞同 @Avatar Ye想要讲解gamma的来龙去脉,可惜 ...
分类:
其他好文 时间:
2019-01-31 22:50:33
阅读次数:
230
# 总核数 = 物理CPU个数 X 每颗物理CPU的核数 # 总逻辑CPU数 = 物理CPU个数 X 每颗物理CPU的核数 X 超线程数# 查看物理CPU个数cat /proc/cpuinfo| grep "physical id"| sort| uniq| wc -l# 查看每个物理CPU中cor ...
分类:
系统相关 时间:
2019-01-31 15:25:14
阅读次数:
221