ext3挂载选项与linux内核文档不同

我正在玩我的服务器实验室的ext3文件系统挂载选项,看内核文档

https://www.kernel.org/doc/Documentation/filesystems/ext3.txt 

我使用红帽5.8,如果尝试以这种方式安装的FS

 mount -o noload /dev/vgmirror/lvmirror /mnt/ mount -o norecovery /dev/vgmirror/lvmirror /mnt/ mount -o journal=noload /dev/vgmirror/lvmirror /mnt/ mount -o journal=norecovery /dev/vgmirror/lvmirror /mnt/ 

以上每个命令都会失败并显示

 mount: wrong fs type, bad option, bad superblock on /dev/vgmirror/lvmirror, missing codepage or other error In some cases useful info is found in syslog - try dmesg | tail or so 

这个挂载选项在redhat上被删除了? 或内核文档被弃用? 或者我使用错误的命令?

您链接到的手册页指的是最新版本的linux内核,而您使用的是Red Hat 5.8,它使用的是较老的内核。

你最好在服务器上使用在线文档。

在服务器上使用以下命令,并将其用作参考。

 man 8 mount