Quote:
Originally Posted by hk_centos
Hi ALL
i used this command.
mount -t nfs 172.16.102.50:/root/ESSR_share /root/shared_storage/pc50 -o rw,hard,intr
but it take long time (when machine(172.16.102.50) is not available)
Thank You !
|
hello Friend..
You are mounting an NFS share. Obviously it will not respond to mount command if the NFS Server(in this case 172.16.102.50) is not available.
To Verify there are many ways.
mount |grep '/root/shared_storage/pc50'
This should give you a result.
df -hP /root/shared_storage/pc50 -- this should point to your NFS filesystem, not the root filesystem.
--Rameez