<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Re: How to created NFS share on linux in Operating System - Linux</title>
    <link>https://community.hpe.com/t5/operating-system-linux/how-to-created-nfs-share-on-linux/m-p/3554016#M17865</link>
    <description>Start by reading 'man exports'.&lt;BR /&gt;&lt;BR /&gt;This will tell you the format of the '/etc/exports' file needs to be in.  Add the appropraite entry for the path you wish to be mounted by NFS.&lt;BR /&gt;&lt;BR /&gt;Ensure that the 'portmap', 'nfslock' and 'nfs' services are running '(rpcinfo -p localhost' should tell you), then type 'exportfs -a'.&lt;BR /&gt;&lt;BR /&gt;This should export the entry you made in the exports file.&lt;BR /&gt;&lt;BR /&gt;You should then be able to mount it from Solaris.</description>
    <pubDate>Mon, 30 May 2005 01:53:16 GMT</pubDate>
    <dc:creator>Stuart Browne</dc:creator>
    <dc:date>2005-05-30T01:53:16Z</dc:date>
    <item>
      <title>How to created NFS share on linux</title>
      <link>https://community.hpe.com/t5/operating-system-linux/how-to-created-nfs-share-on-linux/m-p/3554015#M17864</link>
      <description>Hi,&lt;BR /&gt;&lt;BR /&gt;  I want ot create NFS share on Linux server &amp;amp; access it form Sun solaris server.&lt;BR /&gt;&lt;BR /&gt;Regards&lt;BR /&gt;Varian</description>
      <pubDate>Mon, 30 May 2005 00:51:10 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/how-to-created-nfs-share-on-linux/m-p/3554015#M17864</guid>
      <dc:creator>maint141</dc:creator>
      <dc:date>2005-05-30T00:51:10Z</dc:date>
    </item>
    <item>
      <title>Re: How to created NFS share on linux</title>
      <link>https://community.hpe.com/t5/operating-system-linux/how-to-created-nfs-share-on-linux/m-p/3554016#M17865</link>
      <description>Start by reading 'man exports'.&lt;BR /&gt;&lt;BR /&gt;This will tell you the format of the '/etc/exports' file needs to be in.  Add the appropraite entry for the path you wish to be mounted by NFS.&lt;BR /&gt;&lt;BR /&gt;Ensure that the 'portmap', 'nfslock' and 'nfs' services are running '(rpcinfo -p localhost' should tell you), then type 'exportfs -a'.&lt;BR /&gt;&lt;BR /&gt;This should export the entry you made in the exports file.&lt;BR /&gt;&lt;BR /&gt;You should then be able to mount it from Solaris.</description>
      <pubDate>Mon, 30 May 2005 01:53:16 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/how-to-created-nfs-share-on-linux/m-p/3554016#M17865</guid>
      <dc:creator>Stuart Browne</dc:creator>
      <dc:date>2005-05-30T01:53:16Z</dc:date>
    </item>
    <item>
      <title>Re: How to created NFS share on linux</title>
      <link>https://community.hpe.com/t5/operating-system-linux/how-to-created-nfs-share-on-linux/m-p/3554017#M17866</link>
      <description>if you for example wish to share /shared directory from linux to solaris and have write access to it:&lt;BR /&gt;add an entry to /etc/exports on linux machine&lt;BR /&gt;/shared &lt;IP_OF_SOLARIS&gt;/32(rw)&lt;BR /&gt;&lt;BR /&gt;no space between &lt;IP_OF_SOLARIS&gt;/32 and (rw)&lt;BR /&gt;after adding this entry do:&lt;BR /&gt;exportfs -r&lt;BR /&gt;This command reexports all directories.&lt;BR /&gt;Then from sun you can change into shared directory on linux like this:&lt;BR /&gt;cd /net/&lt;IP_OF_LINUX&gt;/shared&lt;/IP_OF_LINUX&gt;&lt;/IP_OF_SOLARIS&gt;&lt;/IP_OF_SOLARIS&gt;</description>
      <pubDate>Mon, 30 May 2005 02:48:49 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/how-to-created-nfs-share-on-linux/m-p/3554017#M17866</guid>
      <dc:creator>Alexander Chuzhoy</dc:creator>
      <dc:date>2005-05-30T02:48:49Z</dc:date>
    </item>
    <item>
      <title>Re: How to created NFS share on linux</title>
      <link>https://community.hpe.com/t5/operating-system-linux/how-to-created-nfs-share-on-linux/m-p/3554018#M17867</link>
      <description>&lt;BR /&gt;make sure you have NFS server installed on your system. search for nfsd program in your path or do a rpm query to find out if you have installed NFS server.&lt;BR /&gt;&lt;BR /&gt;start the nfs service and make sure it runs properly. eg: /etc/init.d/nfs start &lt;BR /&gt;if it is not able to start, fix that problem first before proceeding on to any further&lt;BR /&gt;&lt;BR /&gt;locate the directory which needs to be exported. eg: /home/nfs&lt;BR /&gt;&lt;BR /&gt;edit /etc/exports file add the above directory entry to it:&lt;BR /&gt;eg: /home/nfs *(ro,async)&lt;BR /&gt;&lt;BR /&gt;above are default and safe settings. * indicates any machine which can reach your server can mount the share. ro is to grant read only access (rw for read/write). async is asynchronous mode.&lt;BR /&gt;for more options and to give range of ip address in allowed hosts check for 'man exports' &lt;BR /&gt;&lt;BR /&gt;run exportfs -r to instruct NFS server to reload its configuration to incorporate above newly added directory&lt;BR /&gt;&lt;BR /&gt;now you are done with server side.&lt;BR /&gt;&lt;BR /&gt;From client side, make sure you have portmap service running which is required for nfs client package. &lt;BR /&gt;&lt;BR /&gt;then, run the mount command from client to mount the NFS share&lt;BR /&gt;eg: 192.168.1.1:/home/nfs /mnt/disk &lt;BR /&gt;&lt;BR /&gt;if you have done things correctly then you should be able to access the NFS files through /mnt/disk&lt;BR /&gt;&lt;BR /&gt;Regards,&lt;BR /&gt;Gopi</description>
      <pubDate>Mon, 30 May 2005 03:24:16 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/how-to-created-nfs-share-on-linux/m-p/3554018#M17867</guid>
      <dc:creator>Gopi Sekar</dc:creator>
      <dc:date>2005-05-30T03:24:16Z</dc:date>
    </item>
    <item>
      <title>Re: How to created NFS share on linux</title>
      <link>https://community.hpe.com/t5/operating-system-linux/how-to-created-nfs-share-on-linux/m-p/3554019#M17868</link>
      <description>Hi ,&lt;BR /&gt;&lt;BR /&gt;  Thanks a lot for help now I am able to mount my shared folder from Linx to Solaris.&lt;BR /&gt;&lt;BR /&gt;Regards&lt;BR /&gt;&lt;BR /&gt;varian</description>
      <pubDate>Mon, 30 May 2005 04:16:35 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/how-to-created-nfs-share-on-linux/m-p/3554019#M17868</guid>
      <dc:creator>varian_1</dc:creator>
      <dc:date>2005-05-30T04:16:35Z</dc:date>
    </item>
  </channel>
</rss>

