typora/note/linux/centos/挂载nfs.md

23 lines
246 B
Markdown
Raw Permalink Normal View History

2024-12-11 21:48:55 -05:00
### nfs 客户端
#### 1. 安装 nfs 客户端
```bash
yun install nfs-utils -y
```
#### 2. 查看nfs 服务端目录
```bash
showmount -e 192.168.0.12
```
#### 3. 挂载nfs
```bash
mount -t nfs 192.168.0.12:/volume1/share /root/nfs
```