1824784 Members
4033 Online
109674 Solutions
New Discussion юеВ

Re: export

 
SOLVED
Go to solution
O'lnes
Regular Advisor

export

how to export a linux path for unix to share? Thanks.
Andy
2 REPLIES 2
Francisco J. Soler
Honored Contributor
Solution

Re: export

You must put in the /etc/exports file. Then exportfs -a

See: man exports and man exportfs

Frank.
Linux?. Yes, of course.
U.SivaKumar_2
Honored Contributor

Re: export

Hi,
Assume you want to export /home/nfs in the server.
Check whether these processes are running.
portmap , nfsd , rpcd . If not
#service nfs start
#exportfs -i /home/nfs
Now on the client side.
#mkdir /server
#mount 90.0.0.1:/home/nfs /server
where 90.0.0.1 is the ip address of the server
you did exportfs.
Now.
#cd server
#ls
regards,
U.SivaKumar

Innovations are made when conventions are broken