码迷,mamicode.com
首页 > 其他好文 > 详细

The Importance of Sync in Embedded

时间:2015-09-23 10:17:59      阅读:126      评论:0      收藏:0      [点我收藏+]

标签:

 

The Importance of Sync in Embedded

1 My experience

When I modify /etc/init.d/rcS in development board, and restart the board once I have modified it, the modification disappear !!

2 Solution

Before reboot, use

# sync

especially for newly modified config files, e.g. rcS

3 Sync Info

use

$ info coreutils ‘sync‘
14.4 `sync‘: Synchronize data on disk with memory
=================================================

`sync‘ writes any data buffered in memory out to disk.  This can
include (but is not limited to) modified superblocks, modified inodes,
and delayed reads 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 file system corrupted as a result.
The `sync‘ command ensures everything in memory is written to disk.

   Any arguments are ignored, except for a lone `--help‘ or `--version‘
(*note Common options::).

   An exit status of zero indicates success, and a nonzero value
indicates failure.

The Importance of Sync in Embedded

标签:

原文地址:http://www.cnblogs.com/aqing1987/p/4831281.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!