标签:大小 count 文件 服务 start 磁盘空间 pen code 文件的
[root@lin ~]# nohup dd if=/dev/zero of=test bs=1M count=100000 &
[1] 3497
[root@lin ~]# nohup: ignoring input and appending output to ‘nohup.out’
^C
[root@lin ~]# ll test
-rw-r--r-- 1 root root 3767242752 Sep 12 18:30 test
[root@lin ~]# du -sh test
12G test
[root@lin ~]# > test
[root@lin ~]# du -sh test
1.8G test
[root@lin ~]# ll test
-rw-r--r-- 1 root root 18232692736 Sep 12 18:31 test
[root@lin ~]# kill 3497
test
原始:
0101010100101010
> 后 :
/ 空洞 /0101010100101010
# 后面追加的内容会写到置空前的后面
标签:大小 count 文件 服务 start 磁盘空间 pen code 文件的
原文地址:https://www.cnblogs.com/oam-zhanjiang/p/13657984.html