Link to home
Start Free TrialLog in
Avatar of AxelSI
AxelSI

asked on

Centos Rescue and NFS Share

Hi there,
I need to use centos rescue on cd.
After IP configuration, I would like to remote nfs share
Please How to remote nfs share ?
Thank
Regards,
Avatar of noci
noci

if IP works including DNS then:

mount -t nfs //nfs-server/nfs-share /mnt  -o <options needed, like username etc.>

should do it.
Now the options needed depend on your environment. If authentication is needed username & password may be needed, or the right IP address ... It heavily depends on your environment what is available.
you may need to start nfs services.... ( /etc/init.d/*nfs* ), or though systemd.
Avatar of AxelSI

ASKER

hi there,
it is necessary to force nfs in the mount command with -o
ASKER CERTIFIED SOLUTION
Avatar of noci
noci

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Avatar of AxelSI

ASKER

thank :)