<?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: NFS Mount in Operating System - HP-UX</title>
    <link>https://community.hpe.com/t5/operating-system-hp-ux/nfs-mount/m-p/3391425#M199232</link>
    <description>Hi Bharat, &lt;BR /&gt;&lt;BR /&gt;Yes it is a typo error into ITRC but on serverB, I type mount serverA:/opt/perf/test_arch /opt/perf/test_arch.&lt;BR /&gt;&lt;BR /&gt;Query: I added into serverB /etc/fstab as follows single entry,&lt;BR /&gt;serverA:/opt/perf/test_arch /opt/perf/test_arch nfs rw suid 0 0 &lt;BR /&gt;to allow permanent/auto mount upon serverB reboot.&lt;BR /&gt;&lt;BR /&gt;But it reported the error,&lt;BR /&gt;mount: ignoring incomplete/incorrect entry for hpsgmx53:/opt/perf/test_arch in /etc/fstab&lt;BR /&gt;mount: /opt/perf/test_arch was either ignored or not found in /etc/fstab&lt;BR /&gt;&lt;BR /&gt;Query:&lt;BR /&gt;&lt;BR /&gt;- Bearing in mind that /opt/perf/test_arch is a directory and not a filesystem is the above step applicable?&lt;BR /&gt;&lt;BR /&gt;Please advise me.&lt;BR /&gt;&lt;BR /&gt;Thanks n Regards/cliff</description>
    <pubDate>Mon, 04 Oct 2004 04:08:56 GMT</pubDate>
    <dc:creator>Cliff Lim Kok Hwee</dc:creator>
    <dc:date>2004-10-04T04:08:56Z</dc:date>
    <item>
      <title>NFS Mount</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/nfs-mount/m-p/3391410#M199217</link>
      <description>Gd Day Forum,&lt;BR /&gt;&lt;BR /&gt;- I have 2 servers A and B each having same file system name /opt/apps. On server A, I have a directory /opt/apps/arch_test having the following permissions,&lt;BR /&gt;&lt;BR /&gt;drwx------   5 sapusr     sapgrp          96 Oct  1 17:48 test_arch&lt;BR /&gt;&lt;BR /&gt;Query: I would like to allow server B user sapusr to be able to access server A /opt/apps/arch_test directory using the same /opt/apps/arch_test directory path. How am I able to achieve this?&lt;BR /&gt;&lt;BR /&gt;Thks/cliff&lt;BR /&gt;</description>
      <pubDate>Fri, 01 Oct 2004 06:04:32 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/nfs-mount/m-p/3391410#M199217</guid>
      <dc:creator>Cliff Lim Kok Hwee</dc:creator>
      <dc:date>2004-10-01T06:04:32Z</dc:date>
    </item>
    <item>
      <title>Re: NFS Mount</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/nfs-mount/m-p/3391411#M199218</link>
      <description>Hi,&lt;BR /&gt;&lt;BR /&gt;1. Configure Server A as NFS server and B as NFS client&lt;BR /&gt;2. Create arch_test directory in B &lt;BR /&gt; # mkdir /opt/apps/arch_test&lt;BR /&gt;3. Export arch_test from A using exportfs and similarly mount the same on B on /opt/apps/arch_test&lt;BR /&gt;&lt;BR /&gt;Check this files for NFS configuration:&lt;BR /&gt;/etc/rc.config.d/nfsconf,/etc/exports&lt;BR /&gt;See man exportfs,nfs.&lt;BR /&gt;&lt;BR /&gt;Regards,&lt;BR /&gt;&lt;BR /&gt;</description>
      <pubDate>Fri, 01 Oct 2004 06:13:42 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/nfs-mount/m-p/3391411#M199218</guid>
      <dc:creator>Bharat Katkar</dc:creator>
      <dc:date>2004-10-01T06:13:42Z</dc:date>
    </item>
    <item>
      <title>Re: NFS Mount</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/nfs-mount/m-p/3391412#M199219</link>
      <description>Hi,&lt;BR /&gt;&lt;BR /&gt;agreed, mount it as a network file system under a different mount point.&lt;BR /&gt;&lt;BR /&gt;While it's tacky SAM is the simplest way to configure this - just check the config files after to make sure you are happy.&lt;BR /&gt;&lt;BR /&gt;D</description>
      <pubDate>Fri, 01 Oct 2004 06:52:10 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/nfs-mount/m-p/3391412#M199219</guid>
      <dc:creator>Denza</dc:creator>
      <dc:date>2004-10-01T06:52:10Z</dc:date>
    </item>
    <item>
      <title>Re: NFS Mount</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/nfs-mount/m-p/3391413#M199220</link>
      <description>We can do this as,&lt;BR /&gt;&lt;BR /&gt; Server A&lt;BR /&gt; -------&lt;BR /&gt; drwx------ 5 sapusr sapgrp 96 Oct 1 17:48 test_arch&lt;BR /&gt; &lt;BR /&gt; Give permission to only serverB&lt;BR /&gt; # exportfs -iv /opt/apps -o root=serverB&lt;BR /&gt;&lt;BR /&gt; Display exported file systems&lt;BR /&gt; # exportfs -v&lt;BR /&gt;&lt;BR /&gt; Server B: &lt;BR /&gt; mount serverA:/opt/apps /opt/apps/arch_test&lt;BR /&gt; It will be mounted there.&lt;BR /&gt; &lt;BR /&gt; You can check as,&lt;BR /&gt;  mount / bdf&lt;BR /&gt;&lt;BR /&gt; If you want to have them default mounting then,&lt;BR /&gt;&lt;BR /&gt; serverA:&lt;BR /&gt; /etc/exports&lt;BR /&gt; put that entry here.&lt;BR /&gt;&lt;BR /&gt; serverB:&lt;BR /&gt; /etc/mnttab to keep the mounting by default.&lt;BR /&gt;&lt;BR /&gt;Now root user and sapusr user, sapgrp users can access it.&lt;BR /&gt;</description>
      <pubDate>Fri, 01 Oct 2004 08:25:13 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/nfs-mount/m-p/3391413#M199220</guid>
      <dc:creator>Muthukumar_5</dc:creator>
      <dc:date>2004-10-01T08:25:13Z</dc:date>
    </item>
    <item>
      <title>Re: NFS Mount</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/nfs-mount/m-p/3391414#M199221</link>
      <description>As long as you dont have any files and folders under serverB:/opt/apps/arch_test, by which I mean you have an empty directory on serverB this should be ok to mount the /opt/apps/arch_test from server A onto server B. &lt;BR /&gt;1)Share it from ServerA with the right permissions and access rights&lt;BR /&gt;2)mount it onto serverB:/opt/apps/arch_test&lt;BR /&gt;it doesnt even matter what permissions  you have on the mount directory the permissions on serverA will limit the users read, write, execute capability.&lt;BR /&gt;-Cheers&lt;BR /&gt;Govind</description>
      <pubDate>Fri, 01 Oct 2004 13:36:53 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/nfs-mount/m-p/3391414#M199221</guid>
      <dc:creator>Govind_3</dc:creator>
      <dc:date>2004-10-01T13:36:53Z</dc:date>
    </item>
    <item>
      <title>Re: NFS Mount</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/nfs-mount/m-p/3391415#M199222</link>
      <description>Hi Cliff,&lt;BR /&gt;&lt;BR /&gt;Were you able to get this working with the suggestions in this thread or do you still need help?  If you did get it working, be sure to assign points to those that helped you.&lt;BR /&gt;&lt;BR /&gt;Regards,&lt;BR /&gt;&lt;BR /&gt;Dave</description>
      <pubDate>Sat, 02 Oct 2004 21:26:38 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/nfs-mount/m-p/3391415#M199222</guid>
      <dc:creator>Dave Olker</dc:creator>
      <dc:date>2004-10-02T21:26:38Z</dc:date>
    </item>
    <item>
      <title>Re: NFS Mount</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/nfs-mount/m-p/3391416#M199223</link>
      <description>Gd Day Forum,&lt;BR /&gt;&lt;BR /&gt;Sorry for the late submission of points cos I was offline.&lt;BR /&gt;&lt;BR /&gt;Guys,&lt;BR /&gt;&lt;BR /&gt;I review thru your help and please answer my queries:&lt;BR /&gt;&lt;BR /&gt;Give permission to only serverB&lt;BR /&gt;# exportfs -iv /opt/apps -o root=serverB&lt;BR /&gt;&lt;BR /&gt;Display exported file systems&lt;BR /&gt;# exportfs -v&lt;BR /&gt;&lt;BR /&gt;Server B: &lt;BR /&gt;mount serverA:/opt/apps /opt/apps/arch_test&lt;BR /&gt;&lt;BR /&gt;Query:&lt;BR /&gt;&lt;BR /&gt;I need to access serverA /opt/apps/arch_test from serverB. If u perform the above mount, it will only bring me to serverA /opt/apps. Am I correct to say that?&lt;BR /&gt;&lt;BR /&gt;Cos my application need to write to server A /opt/apps/arch.&lt;BR /&gt;&lt;BR /&gt;thanks/cliff</description>
      <pubDate>Sun, 03 Oct 2004 00:33:31 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/nfs-mount/m-p/3391416#M199223</guid>
      <dc:creator>Cliff Lim Kok Hwee</dc:creator>
      <dc:date>2004-10-03T00:33:31Z</dc:date>
    </item>
    <item>
      <title>Re: NFS Mount</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/nfs-mount/m-p/3391417#M199224</link>
      <description>Hi Cliff,&lt;BR /&gt;&lt;BR /&gt;You wrote:&lt;BR /&gt;___________________________________________&lt;BR /&gt;&lt;BR /&gt;Give permission to only serverB&lt;BR /&gt;# exportfs -iv /opt/apps -o root=serverB&lt;BR /&gt;&lt;BR /&gt;Display exported file systems&lt;BR /&gt;# exportfs -v&lt;BR /&gt;___________________________________________&lt;BR /&gt;&lt;BR /&gt;First of all, this syntax is incorrect and will likely result in a usage string being printed by exportfs.  The target filesystem needs to be the last entry in the syntax, so the correct way to use the above options would be:&lt;BR /&gt;&lt;BR /&gt;# exportfs -iv -o root=serverB /opt/apps&lt;BR /&gt;&lt;BR /&gt;However, this syntax will not restrict the filesystem to only client "serverB".  It will allow any NFS client to mount the /opt/apps directory.  All this syntax will restrict is which clients are allowed to send NFS requests for this filesystem as if they were the root user on the NFS server.  In this case, only the root user on system "serverB" will be able to access files on the exported filesystem as if he/she were the root user on the NFS server.  Root users from all other clients will have their requests re-mapped to a uid of -2.  &lt;BR /&gt;&lt;BR /&gt;Again, any NFS client will be able to mount the filesystem using the above corrected syntax.  If you really want to restrict access to this filesystem to only "serverB" then the syntax would be:&lt;BR /&gt;&lt;BR /&gt;# exportfs -iv -o access=serverB /opt/apps&lt;BR /&gt;&lt;BR /&gt;However, this syntax will not allow the root user on "serverB" to send NFS requests for this filesystem as a root user.  If you need the root user on "serverB" to be able to send requests as the root user then the syntax would be:&lt;BR /&gt;&lt;BR /&gt;# exportfs -iv -o access=serverB,root=serverB /opt/apps&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;You also wrote:&lt;BR /&gt;__________________________________________&lt;BR /&gt;&lt;BR /&gt;Server B: &lt;BR /&gt;mount serverA:/opt/apps /opt/apps/arch_test&lt;BR /&gt;&lt;BR /&gt;Query:&lt;BR /&gt;&lt;BR /&gt;I need to access serverA /opt/apps/arch_test from serverB. If u perform the above mount, it will only bring me to serverA /opt/apps. Am I correct to say that?&lt;BR /&gt;&lt;BR /&gt;Cos my application need to write to server A /opt/apps/arch.&lt;BR /&gt;__________________________________________&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;The above mount syntax will not work for your purposes.  You are mounting the "/opt/apps" directory as "/opt/apps/arch_test" on the client.  If you do this then when the client creates files in it's version of /opt/apps/arch_test, the files will show up on the server in the /opt/apps directory.  I don't think this is what you want.&lt;BR /&gt;&lt;BR /&gt;If you really only want the client to see the /opt/apps/arch_test directory then you should only export this directory:&lt;BR /&gt;&lt;BR /&gt;# exportfs -iv -o access=serverB,root=serverB /opt/apps/arch_test&lt;BR /&gt;&lt;BR /&gt;You should then mount this directory on serverB:&lt;BR /&gt;&lt;BR /&gt;mount serverA:/opt/apps/arch_test /opt/apps/arch_test&lt;BR /&gt;&lt;BR /&gt;That way the client will see the "arch_test" directory when it looks in it's /opt/apps/arch_test directory.&lt;BR /&gt;&lt;BR /&gt;Again, whether you export with the "root=" option only depends on whether you need the root user on serverB to access files on the server as a root user.  If not, you can remove the "root=" syntax from the above exportfs command.&lt;BR /&gt;&lt;BR /&gt;Let me know if you have any questions about these recommendations.&lt;BR /&gt;&lt;BR /&gt;Regards,&lt;BR /&gt;&lt;BR /&gt;Dave</description>
      <pubDate>Sun, 03 Oct 2004 02:12:54 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/nfs-mount/m-p/3391417#M199224</guid>
      <dc:creator>Dave Olker</dc:creator>
      <dc:date>2004-10-03T02:12:54Z</dc:date>
    </item>
    <item>
      <title>Re: NFS Mount</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/nfs-mount/m-p/3391418#M199225</link>
      <description>Gd Afternoon Forumers,&lt;BR /&gt;&lt;BR /&gt;Can anyone advise me how to allow the exported directory /opt/apps/arch_test from serverA to be permanent available mounted on serverB after a system reboot.&lt;BR /&gt;&lt;BR /&gt;Any work to be done at both serverA and serverB?&lt;BR /&gt;&lt;BR /&gt;thanks/cliff&lt;BR /&gt;&lt;BR /&gt;</description>
      <pubDate>Mon, 04 Oct 2004 01:22:21 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/nfs-mount/m-p/3391418#M199225</guid>
      <dc:creator>Cliff Lim Kok Hwee</dc:creator>
      <dc:date>2004-10-04T01:22:21Z</dc:date>
    </item>
    <item>
      <title>Re: NFS Mount</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/nfs-mount/m-p/3391419#M199226</link>
      <description>Hi,&lt;BR /&gt;&lt;BR /&gt;just add the mount in your /etc/fstab. So this filesystem will be mouonted ad boot time.&lt;BR /&gt;&lt;BR /&gt;The entry on serverB should look something like:&lt;BR /&gt;&lt;BR /&gt;serverA:/opt/apps/arch_test /opt/apps/arch_test nfs rw,suid 0 0&lt;BR /&gt;&lt;BR /&gt;Hope this helps.&lt;BR /&gt;&lt;BR /&gt;Regards Stefan</description>
      <pubDate>Mon, 04 Oct 2004 01:34:36 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/nfs-mount/m-p/3391419#M199226</guid>
      <dc:creator>Stefan Schulz</dc:creator>
      <dc:date>2004-10-04T01:34:36Z</dc:date>
    </item>
    <item>
      <title>Re: NFS Mount</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/nfs-mount/m-p/3391420#M199227</link>
      <description>Gd Day Stefan,&lt;BR /&gt;&lt;BR /&gt;serverA:/opt/apps/arch_test /opt/apps/arch_test nfs rw,suid 0 0&lt;BR /&gt;&lt;BR /&gt;Query: &lt;BR /&gt;&lt;BR /&gt;- Is it necessary to add in rw and suid 0 0?&lt;BR /&gt;- I don't need we need to perform any setting on serverA which is the nfs server right? Correct me if I am wrong.&lt;BR /&gt;&lt;BR /&gt;Thanks n Regards/cliff</description>
      <pubDate>Mon, 04 Oct 2004 01:49:07 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/nfs-mount/m-p/3391420#M199227</guid>
      <dc:creator>Cliff Lim Kok Hwee</dc:creator>
      <dc:date>2004-10-04T01:49:07Z</dc:date>
    </item>
    <item>
      <title>Re: NFS Mount</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/nfs-mount/m-p/3391421#M199228</link>
      <description>Hi,&lt;BR /&gt;You can also use Automounter Daemon.&lt;BR /&gt;Refer the link below on setting up NFS and Automounter.&lt;BR /&gt;&lt;A href="http://www.uwsg.iu.edu/usail/network/nfs/admin.html" target="_blank"&gt;http://www.uwsg.iu.edu/usail/network/nfs/admin.html&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;Hope that helps.&lt;BR /&gt;Regards,&lt;BR /&gt;</description>
      <pubDate>Mon, 04 Oct 2004 01:49:13 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/nfs-mount/m-p/3391421#M199228</guid>
      <dc:creator>Bharat Katkar</dc:creator>
      <dc:date>2004-10-04T01:49:13Z</dc:date>
    </item>
    <item>
      <title>Re: NFS Mount</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/nfs-mount/m-p/3391422#M199229</link>
      <description>Hi,&lt;BR /&gt;&lt;BR /&gt;@serverA&lt;BR /&gt;# ls -al |grep test_arch&lt;BR /&gt;drwx------   3 root       sys             96 Oct  4 14:52 test_arch&lt;BR /&gt;#exportfs -iv -o access=serverB test_arch&lt;BR /&gt;#showmount -e&lt;BR /&gt;/opt/perf/test_arch serverB&lt;BR /&gt;&lt;BR /&gt;@serverB&lt;BR /&gt;mkdir /opt/perf/test_arch&lt;BR /&gt;# ls -al |grep test_arch&lt;BR /&gt;drwx------   3 root       sys             96 Oct  4 14:52 test_arch&lt;BR /&gt;mount serverB:/opt/perf/test_arch /opt/perf/test_arch&lt;BR /&gt; &lt;BR /&gt;When I performed a cd /opt/perf/test_arch, it reported "/opt/perf/test_arch: permission denied"&lt;BR /&gt;&lt;BR /&gt;Y is that so?&lt;BR /&gt;&lt;BR /&gt;regards/cliff&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;</description>
      <pubDate>Mon, 04 Oct 2004 02:36:28 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/nfs-mount/m-p/3391422#M199229</guid>
      <dc:creator>Cliff Lim Kok Hwee</dc:creator>
      <dc:date>2004-10-04T02:36:28Z</dc:date>
    </item>
    <item>
      <title>Re: NFS Mount</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/nfs-mount/m-p/3391423#M199230</link>
      <description>Forum,&lt;BR /&gt;&lt;BR /&gt;@serverA,&lt;BR /&gt;I added into /etc/exports file the following single entry,&lt;BR /&gt;/opt/perf/test_arch     -anon=2,access=ctss19,root=ctss19&lt;BR /&gt;&lt;BR /&gt;and now when I tried running cd /opt/perf/test_arch @serverB the "Permission Denied" disappeared and I am able to R/W serverA /opt/perf/test_arch directory.&lt;BR /&gt;&lt;BR /&gt;regards/cliff</description>
      <pubDate>Mon, 04 Oct 2004 03:34:23 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/nfs-mount/m-p/3391423#M199230</guid>
      <dc:creator>Cliff Lim Kok Hwee</dc:creator>
      <dc:date>2004-10-04T03:34:23Z</dc:date>
    </item>
    <item>
      <title>Re: NFS Mount</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/nfs-mount/m-p/3391424#M199231</link>
      <description>Hi,&lt;BR /&gt;what u have typed is:&lt;BR /&gt;# mount serverB:/opt/perf/test_arch /opt/perf/test_arch&lt;BR /&gt;&lt;BR /&gt;It should be:&lt;BR /&gt;&lt;BR /&gt;# mount serverA:/opt/perf/test_arch /opt/perf/test_arch&lt;BR /&gt;&lt;BR /&gt;Regards,&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;</description>
      <pubDate>Mon, 04 Oct 2004 03:54:34 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/nfs-mount/m-p/3391424#M199231</guid>
      <dc:creator>Bharat Katkar</dc:creator>
      <dc:date>2004-10-04T03:54:34Z</dc:date>
    </item>
    <item>
      <title>Re: NFS Mount</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/nfs-mount/m-p/3391425#M199232</link>
      <description>Hi Bharat, &lt;BR /&gt;&lt;BR /&gt;Yes it is a typo error into ITRC but on serverB, I type mount serverA:/opt/perf/test_arch /opt/perf/test_arch.&lt;BR /&gt;&lt;BR /&gt;Query: I added into serverB /etc/fstab as follows single entry,&lt;BR /&gt;serverA:/opt/perf/test_arch /opt/perf/test_arch nfs rw suid 0 0 &lt;BR /&gt;to allow permanent/auto mount upon serverB reboot.&lt;BR /&gt;&lt;BR /&gt;But it reported the error,&lt;BR /&gt;mount: ignoring incomplete/incorrect entry for hpsgmx53:/opt/perf/test_arch in /etc/fstab&lt;BR /&gt;mount: /opt/perf/test_arch was either ignored or not found in /etc/fstab&lt;BR /&gt;&lt;BR /&gt;Query:&lt;BR /&gt;&lt;BR /&gt;- Bearing in mind that /opt/perf/test_arch is a directory and not a filesystem is the above step applicable?&lt;BR /&gt;&lt;BR /&gt;Please advise me.&lt;BR /&gt;&lt;BR /&gt;Thanks n Regards/cliff</description>
      <pubDate>Mon, 04 Oct 2004 04:08:56 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/nfs-mount/m-p/3391425#M199232</guid>
      <dc:creator>Cliff Lim Kok Hwee</dc:creator>
      <dc:date>2004-10-04T04:08:56Z</dc:date>
    </item>
    <item>
      <title>Re: NFS Mount</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/nfs-mount/m-p/3391426#M199233</link>
      <description>Try this one on your Server B's fstab:&lt;BR /&gt;&lt;BR /&gt;ServerB:/opt/perf/test_arch /opt/perf/test_arch nfs rw,hard 0 0&lt;BR /&gt;&lt;BR /&gt;See if that works.&lt;BR /&gt;Regards,&lt;BR /&gt;&lt;BR /&gt;</description>
      <pubDate>Mon, 04 Oct 2004 04:29:32 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/nfs-mount/m-p/3391426#M199233</guid>
      <dc:creator>Bharat Katkar</dc:creator>
      <dc:date>2004-10-04T04:29:32Z</dc:date>
    </item>
    <item>
      <title>Re: NFS Mount</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/nfs-mount/m-p/3391427#M199234</link>
      <description>Thanks Bharat, it works.&lt;BR /&gt;&lt;BR /&gt;Can explain what is being added?&lt;BR /&gt;&lt;BR /&gt;thanks/cliff</description>
      <pubDate>Mon, 04 Oct 2004 04:39:07 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/nfs-mount/m-p/3391427#M199234</guid>
      <dc:creator>Cliff Lim Kok Hwee</dc:creator>
      <dc:date>2004-10-04T04:39:07Z</dc:date>
    </item>
    <item>
      <title>Re: NFS Mount</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/nfs-mount/m-p/3391428#M199235</link>
      <description>HI Cliff,&lt;BR /&gt;I am happy to see that working...great.&lt;BR /&gt;&lt;BR /&gt;Well, the entry is as follows:&lt;BR /&gt;1. Remote FileSystem or Directory&lt;BR /&gt;2. Local Mount point&lt;BR /&gt;3. FileSystem Type i.e. nfs&lt;BR /&gt;4. Options used while mounting the FileSystem&lt;BR /&gt;5. Reserved for future use.&lt;BR /&gt;6. Used by the fsck command to determine the order in which file system checks are done&lt;BR /&gt;&lt;BR /&gt;For more information on mount options:&lt;BR /&gt;see man mount&lt;BR /&gt;and also have a look at man fstab.&lt;BR /&gt;&lt;BR /&gt;Regards,&lt;BR /&gt;&lt;BR /&gt;  &lt;BR /&gt;</description>
      <pubDate>Mon, 04 Oct 2004 05:45:02 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/nfs-mount/m-p/3391428#M199235</guid>
      <dc:creator>Bharat Katkar</dc:creator>
      <dc:date>2004-10-04T05:45:02Z</dc:date>
    </item>
    <item>
      <title>Re: NFS Mount</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/nfs-mount/m-p/3391429#M199236</link>
      <description>Hi Cliff,&lt;BR /&gt;&lt;BR /&gt;in the entry you put in the /etc/fstab it seams that there is a colon missing between rw and suid. Think thats the reason for this errormessage.&lt;BR /&gt;&lt;BR /&gt;Regards&lt;BR /&gt;&lt;BR /&gt;Stefan</description>
      <pubDate>Mon, 04 Oct 2004 06:42:52 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/nfs-mount/m-p/3391429#M199236</guid>
      <dc:creator>Stefan Schulz</dc:creator>
      <dc:date>2004-10-04T06:42:52Z</dc:date>
    </item>
  </channel>
</rss>

