不重视数据安全可使用以下方法提升硬盘读写文件性能。
mount -o noatime,data=writeback,commit=60,barrier=0,noacl,nouser_xattr,delalloc
tune2fs -o journal_data_writeback /dev/sdb1
或直接关闭日志功能:
tune2fs -O ^has_journal /dev/sdb1
tune2fs -l /dev/sdb1 |grep 'Filesystem features'|grep 'has_journal'
mount -o noatime,noacl,nouser_xattr,delalloc
重新开启日志:
tune2fs -O has_journal /dev/sdb1
http://blog.51cto.com/purplegrape/1421331
https://blog.csdn.net/helloanthea/article/details/50464774
http://blog.chinaunix.net/uid-1829236-id-3188132.html
标签:none