linux挂载共享文件



今天为将CentOS 下mysql数据库备份至windows共享目录,挂载windows共享目录的时候总是报错,经过一翻百度之后,终于解决。

[root@www ~]# mount -t cifs -o username=domain\administrator,password=Test123 //192.168.1.10/share /databackup
mount error(13): Permission denied
Refer to the mount.cifs(8) manual page (e.g. man mount.cifs)

 

原因:命令中关于域的格式不对,正确的是:

mount -t cifs -o domain=test.com,username=administrator,password=test123 //192.168.1.10/share /databackup

mount -t cifs -o username=domain/administrator,password=test123 //192.168.1.10/share /databackup

/var/log/messages内容:

Sep 26 09:50:40 www kernel: Status code returned 0xc000006d NT_STATUS_LOGON_FAILURE
Sep 26 09:50:40 www kernel: CIFS VFS: Send error in SessSetup = -13
Sep 26 09:50:40 www kernel: CIFS VFS: cifs_mount failed w/return code = -13

 

[root@www ~]# mount -t cifs -o username=name,password=123 //192.168.1.10/share /databackup

mount error(127): Key has expired
Refer to the mount.cifs(8) manual page (e.g. man mount.cifs)

/var/log/messages内容:
Sep 26 09:56:05 www kernel: Status code returned 0xc0000224 NT_STATUS_PASSWORD_MUST_CHANGE
Sep 26 09:56:05 www kernel: CIFS VFS: Send error in SessSetup = -127
Sep 26 09:56:05 www kernel: CIFS VFS: cifs_mount failed w/return code = -127

 

原因:帐号的密码过期,将windows帐号的密码改为永不过期。

 

[root@www /]# mount -t cifs -o username=testuser,password=123 //192.168.214.128/npwpw /databackup
mount error(5): Input/output error
Refer to the mount.cifs(8) manual page (e.g. man mount.cifs)

Sep 26 11:04:18 www kernel: CIFS VFS: cifs_mount failed w/return code = -5

原因:/databackup已经挂载了,需要先umonut,再mount 

 

让linux 启动自动挂载在/etc/fstab中增加

//192.168.1.100/test /media cifs defaults,username=manifold,password=manifolden 0 2

 

 

Linux下mount Window的共享文件夹

mount: unknown filesystem type "smbfs"
2008-11-05 19:03

mount: unknown filesystem type "smbfs’

今天在使用FC6时,发现mount不了windows的共享盘

mount -t smbfs -o username=xxx,password=xxx //hostname/dir /mnt/tmp

mount: unknown filesystem type ’smbfs’

系统已经不能识别smbfs文件系统了

查资料说RHE5的kernel已经不再支持smbfs,而改用Common Internet File Systemcifs(cifs)取代了原有的smbfs,猜想fc6也做了这个改动,所以命令就改为:

# mount -t cifs -o username=xxx,password=xxx //hostname/dir /mnt/tmp

很顺利地mount上了

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值