创建ReiserFS文件系统!

创建ReiserFS文件系统!

在rh7.2时无法选择使用ReiserFS文件系统,因此只能在安装LINUX后,再创建采用ReiserFS的硬盘分区及目录。
安装ReiserFS文件系统也是比较简单的,先用切割分区的工具程序,如fdisk或cfdisk命令创建硬盘分区。当切割分区时,仍然指定分区为编号为8.3的LINUX文件系统类型。接下来可以事业mkreiserfs命令,将指定的分区格式化成ReiserFS文件系统:
# mkreiserfs /dev/hdb1
# mkdir /mnt/reiserdir
# mount -t reiserfs /dev/hdb1 /mnt/reiserdir
或者vi /etc/fstab
/dev/hdb1 /mnt/reiserdir reiserfs defaults 1 2
rh8可以吗?
在RH8.0中还没测试过,改天我试一下!:)
一点小小的补充:

如果 /boot 为 reiserfs 文件系统可能需要在 "defaults" 后加上 "notail"

[code:1]noatime turns of atimes for increased performance (atimes normally aren't needed; notail increases performance of ReiserFS (at the expense of storage efficiency).  It's safe to drop the noatime options if you want and to switch between notail and tail freely.[/code:1]
OK,非常感谢Kuye!:)