mount.cifs错误(2):使用前缀路径时没有这样的文件或目录
我尝试了以下命令: mount -t cifs //server/share/directory /mnt/directory -o credentials=/path/to/cifs.credentials --verbose 响应是: mount.cifs kernel mount options: ip=<IP of server>,unc=\\server \share,user=<username>,prefixpath=directory,pass=******** mount error(2): No such file or directory Refer to the mount.cifs(8) manual page (e.g. man mount.cifs) 但是,如果我尝试不带前缀路径的相同命令: mount -t cifs //server/share /mnt/directory -o credentials=/path/to/cifs.credentials --verbose 它有效,并且我可以访问/ mnt / directory / directory。 如果我在选项中明确指定了前缀路径,则会出现相同的错误,即: …