Linux
文章平均质量分 67
yxc135
此用户很懒,没有任何简介
展开
-
多线程优化——超线程与多核
超线程是利用原创 2014-06-13 00:01:40 · 2679 阅读 · 0 评论 -
用parted调整分区大小
Select the hard disk to be partedWhen you execute parted command without any argument, by default it selects the first hard disk drive that is available on your system.In the following example转载 2013-08-25 22:31:29 · 14698 阅读 · 0 评论 -
du的使用
du命令的参数组合方式有很多种,有些组合的结果很让人费解,总结一种最常用的: du -shc * 其中,-s的含义是包含子目录大小,-h的含义是以K,M,G为单位,-c的含义是结尾显示total 假设目录结构是: Test/dir1/dir1_1/file1.txt Test/dir2/dir2_1 Test/file.txt 其中原创 2013-08-25 11:19:21 · 1027 阅读 · 0 评论 -
linux /proc/cpuinfo内容解释
转自:http://fengzheng369.blog.163.com/blog/static/7522097920128201142964/cat /proc/cpuinfoprocessor 条目包括这一逻辑处理器的唯一标识符.physical id 条目包括每个物理封装的唯一标识符。几个物理的cpu.core id 条目保存每个内核的唯一标识符。转载 2013-08-21 17:11:45 · 1236 阅读 · 0 评论 -
为什么Linux的fdisk分区时First Sector是63或2048?
To understand why not 1, I need to describe some PC history. A long time ago, when the PC was first provided with hard drives, the first block on the drive was used by the Master Boot Record. Thats转载 2013-04-18 23:43:39 · 8098 阅读 · 0 评论 -
Linux安装调试版本的Bochs
如果没有安装g++、gtk,需要先安装,如果安装过程提示有其它东西没有安装,根据提示安装。下面是安装流程,摘自官方网站:This example shows the output of a compilation and installation on Linux. user$ ls -l bochs-2.5.tar.gz -rw-r--r-- 1 user us原创 2013-03-14 23:30:15 · 1505 阅读 · 0 评论 -
多线程优化——Cache Align
有的时候,使用多线程的速度原创 2014-06-12 12:02:11 · 4646 阅读 · 0 评论