|
|
原来是这么做啊,……真是很神奇
To perform the filling of unused data blocks with zero-bytes, there are several ways, depending on what operating system you use on your computer, and what software you have available:
This works on any Unix variant - Linux, NetBSD, Solaris, etc.:
dd if=/dev/zero of=/0bits bs=20971520 # bs=20m
rm /0bits |
|