web-dev-qa-db-ja.com

Samba共有のマウント時のエラー:CIFS VFS:ユーザー名が指定されていません

CentOS、Ubuntu、Debianにsamba共有をマウントしようとすると、「CIFS VFS:ユーザー名が指定されていません」というエラーが表示されますが、問題はありません。

ここに私の/ etc/fstabがあります:

//1.2.3.4/share  /mnt/share  cifs rw,iocharset=utf8,uid=root,gid=root,credentials=/root/smbcredentials   0   0

私の/ root/smbcredentials

username=...
password=...

そして私の出力:

# mount  /mnt/backups
mount: wrong fs type, bad option, bad superblock on //10.13.37.5/backups,
   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.
# dmesg | tail 
[ 1308.670814] CIFS VFS: No username specified
7
ndemou

cifs-utilsをインストールする必要があります:

 yum install cifs-utils # centos/redhat/older Fedora
 dnf install cifs-utils # newer Fedora
 apt install cifs-utils # debian/ubuntu
15
ndemou