Operating System - HP-UX
1752613 Members
4931 Online
108788 Solutions
New Discussion юеВ

Re: export a a vxfs file system

 
SOLVED
Go to solution

export a a vxfs file system

Hello,

is it posible to export a vxfs file system to be imported via NFS from a client?

If negative, is it posible to change the vxfs type to NFS? I can not find this option in sam,
Thank you
4 REPLIES 4
Chandan Kumar_1
Honored Contributor
Solution

Re: export a a vxfs file system

Steven E. Protter
Exalted Contributor

Re: export a a vxfs file system

Shalom,

Lets say the filesystem is mounted as /myfs

vi /etc/exports
/myfs


save it

exportfs -av

Its exported.

You can throw options on it to make it more secure if you wish.

SEP
Steven E Protter
Owner of ISN Corporation
http://isnamerica.com
http://hpuxconsulting.com
Sponsor: http://hpux.ws
Twitter: http://twitter.com/hpuxlinux
Founder http://newdatacloud.com
lafargeadmin
Advisor

Re: export a a vxfs file system

It is not necessary to change the fstype from vxfs to nfs.

just place it in /etc/exports and export the filesystem using exporfs /eg.
vi /etc/exports
/tmp -rw=
wq!

exportfs /tmp

from the client host
create dir such as
#mkdir export
#mount :/tmp /export

finally add this entry in the /etc/fstab

Re: export a a vxfs file system

Thank you for your help.