forked from docs/doc-exports
Reviewed-by: Muller, Martin <martin.muller@t-systems.com> Co-authored-by: zhangyue <zhangyue164@huawei.com> Co-committed-by: zhangyue <zhangyue164@huawei.com>
4.2 KiB
4.2 KiB
Error Message "wrong fs type, bad option" Is Displayed During File System Mounting
Symptom
The message "wrong fs type, bad option" is displayed when you run the mount command to mount a file system to an ECS running Linux.
Possible Causes
An NFS client is not installed on the Linux ECS. That is, the nfs-utils software package is not installed before you execute the mount command.
Fault Diagnosis
Install the required nfs-utils software package.
Solution
- Log in to the ECS and check whether the nfs-utils package is installed. Run the following command. If no command output is displayed, the package is not installed.
rpm -qa|grep nfs
- Run the following command to install the nfs-utils software package:
yum -y install nfs-utils
- Run the mount command again to mount the file system to the ECS.
mount -t nfs -o vers=3,timeo=600,noresvport,nolock Mount point Local path
- Run the following command to view the mounted file system:
mount -l
If the command output contains the following information, the file system is mounted successfully.example.com:/share-xxx on /local_path type nfs (rw,vers=3,timeo=600,nolock,addr=)
Parent topic: Troubleshooting