我知道EXT4最快3年来已经检查了不同作者的测试博客文章,但是还有其他设置可以使SSD更快,我在http://www.howtogeek.com/62761/how-to-tweak-your-ssd-中找到了尽享最佳性能/
sudo gedit /etc/fstab
add to / partition <options> noatime,nodiratime,
and also if kernel is >2.6.33 also add discard,
tmpfs /tmp tmpfs defaults,noatime,mode=1777 0 0
和https://wiki.ubuntu.com/MagicFab/SSDchecklist
sudo gedit /etc/fstab
add to / partition <options> noatime, and thats it
and data=writeback mounting option if you formatted the disk without journaling. Otherwise add data=ordered which sould be a good compromise between full journaling and none at all.
tmpfs /tmp tmpfs nodev,nosuid,noexec,mode=1777 0 0
为什么只有noatime?以及如何知道磁盘是否没有安装日志记录?什么更快?没有Jornaling或对面的?和差异没有日记数据=写回或日记数据=有序?
为什么tmpfs / tmp在两个小插曲中有所不同,为什么它们变小而女巫更好,为什么?
所有这些都是关于SSD的,但是我可以在HDD中使用相同的设置吗?我想找到HDD和SSD的答案,因为我在我的https://wiki.ubuntu.com/Kangarooo/AfterCleanInstallation中创建了一次脚本来对其进行设置