Why?


Search This Blog

Wednesday, April 1, 2015

Mounting a remote nfs file system in Centos 6.6

Mounting a remote nfs file system in Centos 6.6

Playing with FreeNAS 9.3. After setting up the share on the NAS I had to do the following to get the share mounted under my cent server.

1. If not already installed:

# yum -y install nfs-utils nfs-utils-lib

2. Start rpcbind

# service rpcbind start

3. Make directory on local file sys for the remote nfs to be mounted

# mkdir /mnt/nas

4, Mount the nfs share in the /mnt/nas directory now

# mount -t nfs 192.168.1.2:/mnt/MyPool/FreeNASlinux /mnt/nas

No comments:

Post a Comment