エラー「mount: wrong fs type, bad option, bad superblock on」が発生した場合の対処法

  • 作成日 2021.05.03
  • 更新日 2022.02.28
  • linux
エラー「mount: wrong fs type, bad option, bad superblock on」が発生した場合の対処法

linuxでmount実行時にエラー「mount: wrong fs type, bad option, bad superblock on」が発生した場合の対処法を記述してます。

環境

  • OS CentOS 7.9.2009 (Core)
  • NAS LinkStation 200シリーズ

エラー全文

mountを実行時に発生

mount -t cifs -o user=<ユーザー名>,password=<password> //<IPアドレス>/hoge(NAS側) /mnt(マウント先)

エラー全文

mount: wrong fs type, bad option, bad superblock on //IPアドレス/hoge,
       missing codepage or helper program, or other error
       (for several filesystems (e.g. nfs, cifs) you might
       need a /sbin/mount.<type> helper program)

       In some cases useful info is found in syslog - try
       dmesg | tail or so.

原因

cifs-utilsがインストールされていなかったため

対処法

インストールを行います。

yum install cifs-utils -y