在centos5.5中开启了samba服务,在同局域网中的另一台fedora 13中可以正常的挂载访问。但在centos5.5下,关闭了防火墙和SElinux后,仍不能正常的挂载。
[root@centos5 ~]# service smb status
smbd (pid 1957) 正在运行...
nmbd (pid 1960) 正在运行...
[root@centos5 ~]# iptables -F INPUT
[root@centos5 ~]# iptables -F OUTPUT
[root@centos5 ~]# setenforce 0
[root@centos5 ~]# mount -t cifs //192.168.1.119/sharefile /var -o username=user%123
mount: block device //192.168.1.119/sharefile is write-protected, mounting read-only
mount: cannot mount block device //192.168.1.119/sharefile read-only
[root@centos5 ~]# mount.cifs //192.168.1.119/sharefile /var -o username=user%123
-bash: mount.cifs: command not found
[root@centos5 ~]#
两个问题:
一是centos中不能使用mount.cifs只能mount -t cifs吗?
二是执行mount -t cifs时的错误提示是什么原因造成的?
dlchengzi 于 2014-05-07 12:17:31发表:
很好,很强大!
于 2013-09-04 16:13:25发表:
安装下 cifs-utils 即可
yum install cifs* -y
jidanjianbing 于 2011-02-09 16:45:29发表:
看你问centos还有fedora的问题,你到底用的什么啊
昊昊荡荡 于 2010-09-05 15:45:40发表:
你晕了,我们这些小菜鸟咋办呢?
再找找原因
alick 于 2010-09-05 12:42:38发表:
这就faint了~~~
昊昊荡荡 于 2010-09-04 18:58:58发表:
自己顶一下!
昊昊荡荡 于 2010-09-03 23:40:38发表:
斑竹大人,你说的这个方法我试了,结果跟挂载到/var是一样的!
奇怪的是,昨天我启动了samba服务器后,也是在本机上这样测试的。都很顺利,今天就出现了这样的问题。
而且昨天我挂载的时候用的命令就是mount.cifs,今天居然说没有这个命令。
把我这只小菜鸟搞糊涂了!
alick 于 2010-09-03 19:26:32发表:
别挂载到/var上,在/mnt/下新建一个目录,比如somedir,然后
挂载到/mnt/somedir/试试