linux 挂载共享磁盘
linux 挂载共享磁盘
A系统,IP为10.11.48.134 磁盘/data 有500G,
B系统 IP为10.11.48.130
C系统IP为10.11.48.131
现要将A系统的磁盘挂载到B系统和C系统
A系统
安装nfs和rpcbind
# 安装
yum install -y nfs-utils
yum install rpcbind
# 启动
systemctl start rpcbind.service
systemctl start nfs
配置nfs
vi /etc/exports
重启 rpcbind和nfs
B和C系统
挂载磁盘
#创建磁盘挂载的目录
mkdir -p /mnt/fileDisk
# 输入挂载命令
vim /etc/fstab
# 使生效
mount -a
# 查看
df -h
# 若写错了取消挂载
umount -v /mnt/fileDisk
# 若显示disk is busy,则先执行
fuser -mk /mnt/fileDisk