Вот информация на английском:
commit=nrsec (*) Ext3 can be told to sync all its data and metadata every 'nrsec' seconds. The default value is 5 seconds. This means that if you lose your power, you will lose as much as the latest 5 seconds of work (your filesystem will not be damaged though, thanks to the journaling). This default value (or any low value) will hurt performance, but it's good for data-safety. Setting it to 0 will have the same effect as leaving it at the default (5 seconds). Setting it to very large values will improve performance.
Настраиваем!
Открываем fstab:
vi /etc/fstab
Ищем там строку с нашей файловой системой и добавляем в нее через запятую "commit=10":
/dev/md2 / ext3 defaults,commit=10,grpquota,usrquota 0 0
Перемонтируем файловую систему:
mount -o remount /
Все, теперь данные на диск у нас будут сбрасываться раз в 10 секунд.
Спасибо ;)
ReplyDeleteпожалуйста! :)
ReplyDelete