首页 > 代码库 > How to mount a NFS share?

How to mount a NFS share?

Assume you have a NFS share /data/shares/music, at server: 192.168.1.5

You can mount the NFS share from another system at /mnt/music (create this directory first), with the command below

sudo mount 192.168.1.5:/data/shares/music /mnt/music

 

 

转自: http://www.linuxask.com/questions/how-to-mount-a-nfs-share

How to mount a NFS share?