|
|
发表于 2006-10-14 13:26:45
|
显示全部楼层
你试一下这个行不行.
在root/Desktop目录下运行sync命令看看.
下面是关于sync命令的解释 或运行info sync也可以看到)
'sync' writes any data buffered in memory out to disk. This can include modified superblocks, modified inodes, and delayed read and writes. This must be implemented by the kernel; The 'sync' program does nothing but exercise the 'sync' system call.
The kernel keeps data in memory to avoid doing (relatively slow) disk reads and writes. This improves performance, but if the computer crashes, data may be lost or the filesystem corrupted as a result. 'sync' ensure everything in memory is written to disk. |
|