Hello,
after having breakfast and a good coffee I thought it is a good idea to strace the mount command to give you more details. So I did sudo strace mount ... and took a look at the output. There was a line:
Code:
statx(AT_FDCWD, "/sbin/mount.cifs", AT_STATX_DONT_SYNC|AT_NO_AUTOMOUNT, STATX_TYPE|STATX_MODE|STATX_INO, 0x7fff7cb46250) = -1 ENOENT (file or directory not found)
statx(AT_FDCWD, "/sbin/fs.d/mount.cifs", AT_STATX_DONT_SYNC|AT_NO_AUTOMOUNT, STATX_TYPE|STATX_MODE|STATX_INO, 0x7fff7cb46250) = -1 ENOENT (file or directory not found)
statx(AT_FDCWD, "/sbin/fs/mount.cifs", AT_STATX_DONT_SYNC|AT_NO_AUTOMOUNT, STATX_TYPE|STATX_MODE|STATX_INO, 0x7fff7cb46250) = -1 ENOENT (file or directory not found)
I thought: "Is it that simple? The cifs module isn't just installed?
So I tried to install cifs-utils via apt and was surprised, that it wasn't installed. So the main error text in dmesg was misleading. I have expected more critical messages when cifs isn't installed.
Now I am able to mount.
Bookmarks