安装错误(5):安装时输入/输出错误


10

我收到安装错误(5):

安装到CIF Windows共享时输入输出错误。

命令执行:

sudo /bin/mount -t cifs //server/folder /mnt/folder/ -o username="domain/username",password=password

返回错误:

mount error(5):输入/输出错误,请参考mount.cifs(8)手册页(例如man mount.cifs)

ams命令可在RHEL 32上使用。



添加sec = ntlm后仍然给出相同的错误
Abdul Jaleel 2014年

Answers:


17

在Windows 2012服务器上设置共享时,我必须使用:

sudo mount.cifs //server/folder /path/to/folder/ -o user=username,password=pass,vers=3.0

注意vers=3.0

根据以下建议,您可能需要尝试vers=2.0。该vers参数是关键。


3
谢谢。vers=2.0绝对是我登上-m SMB2股票的关键,就像在smbclient -Lclient max protocol = SMB2smb.conf,用于永久设置)中与列出股票时一样。

在选项中添加<code> vers = 2.0 </ code>可以解决此错误。谢谢你的建议!
Kentgrav '17

1
在Linux中,该mount命令对我有用。我已经使用mount不带vers选项的命令已有2年多了,然后突然间,安装不再起作用-尽管我可以使用来连接终端smbclient。显然某处的软件版本已更改,因此现在vers=3.0需要此选项,以便安装远程驱动器。
love.by.Jesus

sudo mount -t cifs -o username=myUser,password=myPassword,vers=2.1 //1.2.3.4/folderA/folderB /foo/bar --verbose的版本是vers = 2.1 ,这很奇怪,因为版本在我的Amazon Linux 1 EC2实例上显示为2.23[ec2-user@ip-1-2-3-4 ~]$ sudo mount --version mount from util-linux 2.23.2 (libmount 2.23.0: selinux, debug, assert)
Kyle Bridenstine '18

1
vers = 2.0也是我的解决方案。
YoMismo

2

对我来说,尝试从较新的GNU / Linux桌面上的NAS设备挂载共享时,问题是不同的。指定-o nounix禁用Unix扩展对我有用。

最后,帮助我的是调查一下dmesg告诉我的输出:

[160169.609325] CIFS VFS: Send error in SETFSUnixInfo = -5
[160169.609327] CIFS VFS: Negotiating Unix capabilities with the server failed. Consider mounting with the Unix Extensions disabled if problems are found by specifying the nounix mount option.
[160169.620877] CIFS VFS: Malformed FILE_UNIX_BASIC_INFO response. Unix Extensions can be disabled on mount by specifying the nosfu mount option.
[160169.620888] CIFS VFS: cifs_read_super: get root inode failed

2

检查域帐户是否未锁定


1
答对了!经过很多挫折后error(5),我dmesg想到在GNU / Linux方面进行检查,却发现了Status code returned 0xc0000234 STATUS_ACCOUNT_LOCKED_OUT。因此,我检查了该帐户的属性,该帐户是本地Windows 10帐户,并且确实Account is locked out已经检查了。(这可能是由于我早些时候摆弄整个共享配置时登录失败太多的结果。)
Ben Johnson,

我认为我曾经遇到过同样的顶级错误,已经解决了,但我在研究中看到了这个问题,所以跳回了足够长的时间才能张贴.. :)
Paul
By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.