Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations strongm on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

how to export file system

Status
Not open for further replies.

moll780

IS-IT--Management
Feb 5, 2002
2
IL
I need to mount from one machine to another.
How would I "export" a folder so on the other machine i could mount to it? Both machines are sparc runnning solaris 2.8.
thank you
 
On the system where you want to export the folder, put an entry into /etc/dfs/dfstab
file for the filesystem you which to share. Then use " shareall " to share it.
On the other system you should be able to mount it:
mount <system>:/filesystem <mountpoint>
 
Ho 1st you have to make an entry in /etc/dfs/dfstab file like (suppose you want to export oracle file system)
share -F nfs -o rw /oracle

now go to /etc/init.d
./nfs.client start
./nfs.server start
now
use the folowing comand
#shareall
or #share /oracle

now from the other server
#mount <remote server hostnameor Ip>:/oracle /<mount point>
(mount -F nfs )try this also.

thanks
Praful
 
Wow..thanks for all the help. It works.
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top