Thursday, June 07, 2007

Adding Linux Share

NFS configuration needs "exporting" a directory, which can then be "imported" by clients and needed to be accessible under the mount point.

vim /etc/exports
add this "/root/system/software 10.8.106.131(rw,no_root_squash)"

exportfs - maintain list of NFS exported file systems -a will add the unexported files to the list "exportfs -a"

restart the NFS service "/sbin/service nfs reatart"

To Access the shared folder
mount -t nfs user@host_ip:/folder/to/be/mounted /mount/to/this/folder.

.