新手学堂 Linux操作系统下设置NFS共享
host启动nfs: snfs #!/bin/bash ifconfig eth0 192.168.0.20 /etc/rc.d/init.d/portmap start /etc/rc.d/init.d/nfs start 嵌入式目标机挂载nfs: mnfs: #!/bin/sh mount -t nfs 192.168.0.20:/home/work/nfs /mnt/nfs -o nolock echo “nfs ok!”
顶(0)
踩(0)
- 最新评论