• 将外部想要挂载传输的目录开启共享文件夹

  • 首先进行安装

    • yum install nfs-utils rpcbind

    • yum install nfs*

  • 建立想要挂载的目录

  • 查看可以执行挂载的目录有哪些

    • showmount -e 192.9.100.191(共享文件夹所在的ip)

  • mount -t nfs 192.9.100.191:可以挂载的目录路径 想要挂载的目录(为了实现nfs传输进行挂载)

    • 例:mount -t nfs 192.9.100.191:/mnt/md0/public /mount

  • 查看所有挂载的文件目录

    • df -h

  • 一个系统下大文件传输想要查看路径需在前面加上ip

    • scp -r /data/tile/r_google_satellite/0-7-0-0-0.ptp root@192.9.100.102:/mount/satellite_data/

相关文章:

  • 2022-03-07
  • 2021-09-25
  • 2021-08-04
  • 2022-12-23
  • 2021-06-23
  • 2021-07-18
  • 2021-12-18
  • 2021-12-09
猜你喜欢
  • 2021-12-31
  • 2021-12-05
  • 2022-02-16
  • 2022-12-23
  • 2021-12-25
  • 2022-01-01
相关资源
相似解决方案