Mount CIFS

mount -t cifs -o username="共享用户",password="密码" //ip/sharing_folder /mountpoint

[转]  如何在Windows和Linux中共享文件?samba也许是个不错的选择。但是我用的CentOS5中若用smbfs就是一个“Wrong fs type”。仔细查找了相关资料,找出几个解决方法:
   1 mount -o username=your_name,password=your_password //server/share_folder /mount_point
   2 mount -t cifs username=your_name,password=your_password //server/share_folder /mount_point
   这两种方法本质都一样,但要注意your_name用户必须对share_folder拥有完全操作的权限,当然若要只读甚至随便乱写个用户名密码都可 以。
   3 写到/etc/fstab文件中,在该文件最后添加一行:
   //server/share_folder /mount_point  cifs username,password,rw 
   这样还是有个缺点,即用户名和密码都以明文的方式暴露了,还可以这样:
   4 编辑/etc/fstab,按如下格式添加:
   //server/share_folder /mount_point  cifs credential=/root/credential
     而/root/credential中内容如下:
     useername=your_name
     password=your_password
   但是还有个问题,普通用户是无权使用mount的,
   5 使用sudo
   6 对mount.cifs添加suid。

时间: 2024-11-05 15:49:08

Mount CIFS的相关文章

mount CIFS return ERR -12 and report Cannot allocate memory

When I mount CIFS on board, it encountered error as below: # mount -t cifs //192.168.1.28/98share /tmp -o user=name,pass=code CIFS VFS: Send error in SessSetup = -12 mount: mounting //192.168.1.28/98share on /tmp failed: Cannot allocate memory The OS

mount.cifs Windows共享目录权限755问题

针对CentOS 6.5系统. 通过linux 的mount命令挂载windows下的共享目录,挂载后目录权限为755,普通用户没有权限写入. 可以通过file_mode 和dir_mode 来设置权限,覆盖默认的755权限. 通过linux的 man mount.cifs 简单的了解下.        file_mode=arg            If the server does not support the CIFS Unix extensions this overrides t

Linux 下幾種網芳/Samba 目錄的 mount 方式

  Linux 下幾種網芳/Samba 目錄的 mount 方式,比較新的 Smaba 只能用 cifs 的 mount 方式. [smbmount] smbmount -o username="Username",password="Password" //IP/share /mnt/smb smbumount /mnt/smb [mount] mount -t smbfs -o username="Username",password=&qu

linux cifs挂载windows共享文件夹

#mount -t cifs -o username=Administrator,password=123456 192.168.1.12/shared  /mnt/work (注:红色部分为windows的用户名和密码) #mount -t cifs -o username=Administrator,password= 192.168.1.12/shared /mnt/work (默认用户名为Administrator,密码为空) mount -t cifs 192.168.50.34:te

How to mount remote Windows shares

  Contents Required packages Basic method Better Method Even-better method Yet Another Even-better method OK, we live in the wonderful world of Linux. BUT, for many of us, having to deal with Windows is a fact of life. For example, you may want to us

How To mount/Browse Windows Shares【在linux{centos}上挂载、浏览window共享】

How to mount remote Windows shares Contents Required packages Basic method Better Method Even-better method Yet Another Even-better method OK, we live in the wonderful world of Linux. BUT, for many of us, having to deal with Windows is a fact of life

在Linux上挂载Windows共享文件夹,如何开机自动挂载(mount)

使用mount命令在Ubuntu上挂接Windows的共享文件夹 sudo mount //192.168.0.1/linux /mnt/win -o username=user,password=pass dir_mode=777 file_mode=777 说明://192.168.0.1/linux      windows共享文件夹路径/mnt/win                 ubuntu中的挂载点 ----------------------------------------

Linux中mount Windows中的共享文件夹

执行如下命令:  mount -t cifs  //ip地址/api /mnt/ -o user=user,pass=pass 提示如下错误: mount error(13): Permission denied Refer to the mount.cifs(8) manual page (e.g. man mount.cifs) 解决方法: 安装cifs协议包,cifs是什么协议,自己百度去 yum install cifs-utils 然后执行  mount -t cifs  //ip地址

mount error 20 = Not a directory

Refer to the mount.cifs(8) manual page (e.g.man mount.cifs) 记住共享的是一个文件夹,不是一个文件 mount error 20 = Not a directory