您的位置:首页 > 运维架构 > Linux

linux常用的挂载方法

2015-12-15 11:16 537 查看
挂载windows的共享文件夹

mount -t cifs //172.18.37.201/share /mnt/cc -o username=tester -o password=topsec

umount /mnt/cc

挂载windows的时候必须有用户名和密码,否则登陆不了。

通过cifs模式挂载 linux系统(风河系统验证可以)

server:(要共享的目录系统)

1. 更改samba配置文件

#vim /etc/samba/smb.conf

#security=user 后面添加:

security=share

在文件结尾添加如下行:

[share]

comment=this is Linux share directory

path=/home/myth/share
#/home/myth/share 为服务端要挂载的目录

public=yes

writable=yes

2. 重启samba

#/etc/init.d/smb start

3. 给/home/myth/share 赋权限

#chmod -R go+rwx share/

client:

mount -t cifs //172.18.37.201/share /mnt/cc -o username=root -o password=123456

通过nfs 挂载 linux系统(风河系统不支持,红帽支持)

mount -t nfs 192.168.0.20:/tmp /tmp/11 -o nolock

挂载的时候不需要密码
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: