Linux 磁盘共享

Linux 磁盘共享


没分了,大侠们来点。
1.分别在服务器和客户机安装软件依赖,如果没有yum可通过安装盘自动进行挂载

yum -y install nfs-utils rpcbind

2.分别在服务器和客户机按顺序启动服务

service nfs start
service rpcbind start

3.分别在服务器和客户机执行以下命令

mkdir /home/data
chmod 777 /home/data

4.在服务器编写配置文件

vi /etc/exports

下面是配置文件内容,rw为可读写,sync表示自动同步

/home/data 客户端IP(rw,sync)

5.在客户机执行以下命令

mount -t nfs 服务器IP:/home/data /home/data

你可能感兴趣的:(Linux)