You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

24 lines
1.4 KiB

This file contains ambiguous Unicode characters!

This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.

# **sync**
## 说明
**sync命令** 强迫将已更改的数据写入磁盘并更新超级块。在Linux/Unix系统中在文件或数据处理过程中一般先放到内存缓冲区中等到适当的时候
再写入磁盘以提高系统的运行效率。sync命令则可用来强制将内存缓冲区中的数据立即写入磁盘中。用户通常不需执行sync命令系统会自动执行update
或bdflush操作将缓冲区的数据写 入磁盘。只有在update或bdflush无法执行或用户需要非正常关机时才需手动执行sync命令
## buffer与cache
* buffer为了解决写磁盘的效率
* cache为了解决读磁盘的效率
linux系统为了提高读写磁盘的效率会先将数据放在一块buffer中。在写磁盘时并不是立即将数据写到磁盘中而是先写入这块buffer中了。此时如果重启
系统,就可能造成数据丢失
sync命令用来flush文件系统buffer这样数据才会真正的写到磁盘中并且buffer才能够释放出来flush就是用来清空buffer。sync命令会强制将数据
写入磁盘中并释放该数据对应的buffer所以常常会在写磁盘后输入sync命令来将数据真正的写入磁盘
如果不去手动的输入sync命令来真正的去写磁盘linux系统也会周期性的去sync数据
```bash
sync; echo 3 > /proc/sys/vm/drop_caches # 清空Linux Buffer Cache
```