<?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 NFS help in Operating System - HP-UX</title>
    <link>https://community.hpe.com/t5/operating-system-hp-ux/nfs-help/m-p/2590427#M924775</link>
    <description>Hi,&lt;BR /&gt;&lt;BR /&gt;It would be appreciated if someone help with nfs setup:&lt;BR /&gt;&lt;BR /&gt;I would have two unix servers linked with some directories, so that I can copy large files over easily.   One server is hpux 10.20, the other is 11i.    I see something on SAM, but don't know the steps.&lt;BR /&gt;&lt;BR /&gt;Your help is very grateful.&lt;BR /&gt;&lt;BR /&gt;Steven&lt;BR /&gt;&lt;BR /&gt;</description>
    <pubDate>Fri, 05 Oct 2001 15:10:24 GMT</pubDate>
    <dc:creator>Steven Chen_1</dc:creator>
    <dc:date>2001-10-05T15:10:24Z</dc:date>
    <item>
      <title>NFS help</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/nfs-help/m-p/2590427#M924775</link>
      <description>Hi,&lt;BR /&gt;&lt;BR /&gt;It would be appreciated if someone help with nfs setup:&lt;BR /&gt;&lt;BR /&gt;I would have two unix servers linked with some directories, so that I can copy large files over easily.   One server is hpux 10.20, the other is 11i.    I see something on SAM, but don't know the steps.&lt;BR /&gt;&lt;BR /&gt;Your help is very grateful.&lt;BR /&gt;&lt;BR /&gt;Steven&lt;BR /&gt;&lt;BR /&gt;</description>
      <pubDate>Fri, 05 Oct 2001 15:10:24 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/nfs-help/m-p/2590427#M924775</guid>
      <dc:creator>Steven Chen_1</dc:creator>
      <dc:date>2001-10-05T15:10:24Z</dc:date>
    </item>
    <item>
      <title>Re: NFS help</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/nfs-help/m-p/2590428#M924776</link>
      <description>Hi Steven,&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;Look at the doc&lt;BR /&gt;&lt;A href="http://docs.hp.com/cgi-bin/fsearch/framedisplay?top=/hpux/onlinedocs/B1031-90048/B1031-90048_top.html&amp;amp;con=/hpux/onlinedocs/B1031-90048/00/00/6-con.html&amp;amp;toc=/hpux/onlinedocs/B1031-90048/00/00/6-toc.html&amp;amp;searchterms=configuring%7cNFS&amp;amp;queryid=20011005-092006" target="_blank"&gt;http://docs.hp.com/cgi-bin/fsearch/framedisplay?top=/hpux/onlinedocs/B1031-90048/B1031-90048_top.html&amp;amp;con=/hpux/onlinedocs/B1031-90048/00/00/6-con.html&amp;amp;toc=/hpux/onlinedocs/B1031-90048/00/00/6-toc.html&amp;amp;searchterms=configuring%7cNFS&amp;amp;queryid=20011005-092006&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;If you want quick setup steps,&lt;BR /&gt;&lt;BR /&gt;Edit /etc/rc.config.d/nfsconf &lt;BR /&gt;Make sure NFS_SERVER=1 and NFS_CLIENT=1&lt;BR /&gt;&lt;BR /&gt;If it was already 1 you don't need to bounce the nfs daemons, if not you will have to (restart) bounce the nfs daemons /sbin/init.d/nfs.server stop|start and /sbin/init.d/nfs.client stop|start&lt;BR /&gt;&lt;BR /&gt;On the server(host1) where you want to export filesystems, create a file /etc/exports&lt;BR /&gt;(since you only want to copy files)&lt;BR /&gt;&lt;BR /&gt;eg:&lt;BR /&gt;/opt1 -ro=host2&lt;BR /&gt;&lt;BR /&gt;where opt1 is the filesystem you want to copy and host2 is the (client)server where you want to copy the files.&lt;BR /&gt;Save it.&lt;BR /&gt;Run "exportfs -a" on host2&lt;BR /&gt;&lt;BR /&gt;Now on host1&lt;BR /&gt;mkdir /myopt1&lt;BR /&gt;mount host2:/opt1 /myopt1&lt;BR /&gt;&lt;BR /&gt;Here /myopt1 is just a temporary mountpoint, you can create anything here and mount the filesystem.&lt;BR /&gt;&lt;BR /&gt;There are lots of options to /etc/exports file, you can look at the manpage for that.&lt;BR /&gt;&lt;BR /&gt;Let me see if i can find an HP doc for step-by-step procedure on this.&lt;BR /&gt;&lt;BR /&gt;-HTH&lt;BR /&gt;Ramesh</description>
      <pubDate>Fri, 05 Oct 2001 15:24:10 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/nfs-help/m-p/2590428#M924776</guid>
      <dc:creator>linuxfan</dc:creator>
      <dc:date>2001-10-05T15:24:10Z</dc:date>
    </item>
    <item>
      <title>Re: NFS help</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/nfs-help/m-p/2590429#M924777</link>
      <description>Steven,&lt;BR /&gt;&lt;BR /&gt;srcsystem: server where the files are residing in a directory /srcdir&lt;BR /&gt;&lt;BR /&gt;dstsystem: server to which we need to copy the files into the directory /dstdir.&lt;BR /&gt;&lt;BR /&gt;Make sure you have NFS server enabled on srcsystem.&lt;BR /&gt;&lt;BR /&gt;Edit /etc/rc.config.d/nfsconf and make NFS_SERVER=1&lt;BR /&gt;&lt;BR /&gt;Run /sbin/init.d/nfs.server start&lt;BR /&gt;&lt;BR /&gt;Now edit the file /etc/exports and place this entry&lt;BR /&gt;&lt;BR /&gt;/srcdir   -ro;access=dstsystem&lt;BR /&gt;&lt;BR /&gt;Then do&lt;BR /&gt;&lt;BR /&gt;exportfs -a&lt;BR /&gt;&lt;BR /&gt;Now logon to dstsystem&lt;BR /&gt;&lt;BR /&gt;#mkdir /tmpdir&lt;BR /&gt;#mount srcsystem:/srcdir /tmpdir&lt;BR /&gt;&lt;BR /&gt;Now you can use cp or tar or cpio to copy the file from /tmpdir to /dstdir&lt;BR /&gt;&lt;BR /&gt;#cp /tmpdir/file1 /dstdir/&lt;BR /&gt;&lt;BR /&gt;Once the copy is done, then you need to unmount&lt;BR /&gt;&lt;BR /&gt;#umount /tmpdir&lt;BR /&gt;&lt;BR /&gt;Go to srcsystem and unexport.&lt;BR /&gt;&lt;BR /&gt;Edit /etc/exports file and take out the entry&lt;BR /&gt;&lt;BR /&gt;#exportfs -au&lt;BR /&gt;&lt;BR /&gt;If you don't want to use NFS later,&lt;BR /&gt;&lt;BR /&gt;Edit /etc/rc.config.d/nfs.server and make NFS.SERVER=0&lt;BR /&gt;&lt;BR /&gt;Run /sbin/init.d/nfs.server stop&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;-Sri&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;</description>
      <pubDate>Fri, 05 Oct 2001 15:24:52 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/nfs-help/m-p/2590429#M924777</guid>
      <dc:creator>Sridhar Bhaskarla</dc:creator>
      <dc:date>2001-10-05T15:24:52Z</dc:date>
    </item>
    <item>
      <title>Re: NFS help</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/nfs-help/m-p/2590430#M924778</link>
      <description>Hi Steven,&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;There's an HP doc on setting up NFS KBRC00002960&lt;BR /&gt;&lt;BR /&gt;I am attaching it for your convenience&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;-HTH&lt;BR /&gt;Ramesh</description>
      <pubDate>Fri, 05 Oct 2001 15:31:13 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/nfs-help/m-p/2590430#M924778</guid>
      <dc:creator>linuxfan</dc:creator>
      <dc:date>2001-10-05T15:31:13Z</dc:date>
    </item>
  </channel>
</rss>

