/*********linux之间的文件共享挂载*********/
1、安装
#yum install nfs-utils

2、共享端150服务器配置/etc/exports
/AVA/www *(insecure,rw,sync,no_root_squash,no_all_squash)

3、启动服务
#service rpcbind start
#service nfs start

4、测试
#showmount -e 127.0.0.1
输出以下结果:
Export list for 127.0.0.1:
/data/www *
说明共享成功启动

5、挂载端151服务器
#yum install nfs-utils
#service rpcbind start
#service nfs start
#mount -t nfs 192.168.2.144:/AVA/www /usr/local/src/
———————————————

 

/*********挂载windows共享文件夹*********/

mount -t cifs -o user=1,password=1,iocharset=utf8,codepage=cp936 //192.168.2.28/g /mnt/

———————————————

 

版权声明:本文为kai2008009原创文章,遵循 CC 4.0 BY-SA 版权协议,转载请附上原文出处链接和本声明。
本文链接:https://www.cnblogs.com/kai2008009/p/13808585.html