Chinaunix首页 | 论坛 | 博客
  • 博客访问: 699087
  • 博文数量: 126
  • 博客积分: 2944
  • 博客等级: 上校
  • 技术积分: 1160
  • 用 户 组: 普通用户
  • 注册时间: 2005-02-17 11:09
个人简介

文章分类

全部博文(126)

文章存档

2022年(1)

2018年(1)

2017年(5)

2016年(5)

2013年(5)

2012年(21)

2011年(24)

2010年(1)

2009年(2)

2008年(12)

2007年(6)

2006年(19)

2005年(24)

发布时间:2013-10-13 16:52:14

vb.net 快捷键......【阅读全文】

阅读(1223) | 评论(0) | 转发(0)

发布时间:2013-02-19 09:10:19

......【阅读全文】

阅读(1321) | 评论(0) | 转发(0)

发布时间:2013-02-01 15:38:02

cd /dev/shmdd if=/dev/zero of=test.img bs=1M count=1000mkfs /tmp/test.imgmkdir tmpmount -o loop test.img tmp......【阅读全文】

阅读(918) | 评论(0) | 转发(0)

发布时间:2013-01-04 16:04:34

用dd读u盘时,发现有时速度很快,大于200M/s,而从bushound上看不出读动作,说明是从缓存里读的数据。在读之前执行下 echo 1 > /proc/sys/vm/drop_caches 就正常了。关于drop_caches 的解释:Kernels 2.6.16 and newer provide a mechanism to have the kernel drop the page cache and/or inode and dentry caches on command, which can help free up a lot of memory. Now ......【阅读全文】

阅读(1751) | 评论(0) | 转发(0)

发布时间:2013-01-04 09:56:42

屏幕有两种输出,一是标准输出,一是标准错误输出。一般重定向是把标准输出转移到文件,标准错误输出只在屏幕显示,不输出到文件。采用如下方法可把所有输出重定向到文件,并且屏幕上依然能够看到输出内容:dd if=/dev/urandom of=/dev/null bs=1M count=100 2>&1 | tee xLog如果不需要屏幕监视,那么下面的表达式即可:dd if=/dev/urandom of=/dev/null bs=1M count=100 >& xLog......【阅读全文】

阅读(8638) | 评论(1) | 转发(0)
给主人留下些什么吧!~~
留言热议
请登录后留言。

登录 注册