码迷,mamicode.com
首页 > 系统相关 > 详细

linux局域网内挂载其它操作系统目录

时间:2019-03-27 09:21:26      阅读:242      评论:0      收藏:0      [点我收藏+]

标签:linu   安装   restore   其它   umount   net   async   blog   username   

一.linux挂载windows

  1.windows目录打开共享;

  2.mount -t cifs -o username=admin***tor,password=abc //192.168.***.***/目录 /home/sharestore/windows/

 

二.linux挂载linux

  1.检查是否安装以下服务:

    rpm -qa | grep nfs-utils

    rpm -qa | grep rpcbind

  2.若没有则安装:

    yum -y install nfs-utils
    yum -y install rpcbind

  3.配置nfs访问目录/etc/exports,默认为空,添加一行(开放目录权限给指定主机):

    /test 192.168.***.102(rw,no_root_squash,no_all_squash,async)

     刷新配置:

    exportfs -a

  4.启动以下服务:

    systemctl start rpcbind.service
    systemctl start nfs.service

  5.服务器创建挂载点:

    mkdir /mnt/test102

  6.挂载nfs:

    mount -t nfs 192.168.***.101:/test /home/test102

 

三.卸载

  umount /home/test102

 

参考:

  https://blog.csdn.net/u012272186/article/details/81010407

  https://www.cnblogs.com/freeweb/p/6593861.html

linux局域网内挂载其它操作系统目录

标签:linu   安装   restore   其它   umount   net   async   blog   username   

原文地址:https://www.cnblogs.com/tarencez/p/10605193.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!