据说reiserfs文件格式对小文件读写有明显提升。可惜centos默认并不支持。好不容易在centos下用reiserfs格式格了一个分区,要mount的时候却认不了。后来按照网上一篇文章依葫芦画瓢,
1.查看本系统是否支持reiserfs
cat /proc/filesystems
2.编辑/etc/yum.repos.d/CentOS-Base.repo
更改如下:
[centosplus]
...
enabled=1
...
includepkgs=kernel* reiserfs-utils
并在 [base]
and [updates]
sections写入:
exclude=kernel kernel-devel kernel-smp-* kernel-hugemem* kernel-largesmp*
3.运行yum
yum install reiserfs-utils kernel
在查看本系统支持的文件系统
我的情况是,做了以上步骤,重启后还是没有发现/proc/filesystems里有reiserfs。
直接试了mount就发现已经可以mount到了。
原文地址:
http://www.electrictoolbox.com/mount-reiserfs-partitions-centos-4/