bixuan 发表于 2003-2-28 12:41:26

创建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

ajinn 发表于 2003-2-28 13:03:32

rh8可以吗?

bixuan 发表于 2003-2-28 13:19:25

在RH8.0中还没测试过,改天我试一下!:)

Kuye 发表于 2003-2-28 15:35:30

一点小小的补充:

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

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.

bixuan 发表于 2003-2-28 15:42:04

OK,非常感谢Kuye!:)
页: [1]
查看完整版本: 创建ReiserFS文件系统!