<?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 mounts from a NT system to a HP Unix system in Operating System - HP-UX</title>
    <link>https://community.hpe.com/t5/operating-system-hp-ux/nfs-mounts-from-a-nt-system-to-a-hp-unix-system/m-p/3719299#M252425</link>
    <description>Well with further investigation, I see that the NT server is mounted to my HP system, but the error shows up on the bdf command and wont be listed.  I can get to that temporary mount /mnt and see the directories that I want and need and I can touch and delete files.  But I can not umount it and mount it to the correct path on my HP system, I can change my script to point to /mnt while I work this out...</description>
    <pubDate>Mon, 30 Jan 2006 09:09:35 GMT</pubDate>
    <dc:creator>Belinda Dermody</dc:creator>
    <dc:date>2006-01-30T09:09:35Z</dc:date>
    <item>
      <title>NFS mounts from a NT system to a HP Unix system</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/nfs-mounts-from-a-nt-system-to-a-hp-unix-system/m-p/3719293#M252419</link>
      <description>I am trying to mount a partition from one of our NT systems to my HP-UX Unix system, the problem is that the partition name has a space in it ex: L:\CLient Svs, I have other partitions mounted from this same server but they do not have a space in the partition name.  Any clues to correct, I have used a "\ " and double qouted the string in the fstab file but I still get the error msg &lt;BR /&gt;&lt;BR /&gt;mount: ignoring incomplete/incorrect entry for lisbon:l:/client\ in /etc/fstab</description>
      <pubDate>Fri, 27 Jan 2006 16:38:20 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/nfs-mounts-from-a-nt-system-to-a-hp-unix-system/m-p/3719293#M252419</guid>
      <dc:creator>Belinda Dermody</dc:creator>
      <dc:date>2006-01-27T16:38:20Z</dc:date>
    </item>
    <item>
      <title>Re: NFS mounts from a NT system to a HP Unix system</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/nfs-mounts-from-a-nt-system-to-a-hp-unix-system/m-p/3719294#M252420</link>
      <description>I am not sure about this,&lt;BR /&gt;&lt;BR /&gt;but you ave a tool in NT to share, why can't you share it without space and try our luck.&lt;BR /&gt;&lt;BR /&gt;Chan</description>
      <pubDate>Fri, 27 Jan 2006 16:49:53 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/nfs-mounts-from-a-nt-system-to-a-hp-unix-system/m-p/3719294#M252420</guid>
      <dc:creator>Chan 007</dc:creator>
      <dc:date>2006-01-27T16:49:53Z</dc:date>
    </item>
    <item>
      <title>Re: NFS mounts from a NT system to a HP Unix system</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/nfs-mounts-from-a-nt-system-to-a-hp-unix-system/m-p/3719295#M252421</link>
      <description>Long before you worry about fstab syntax (which is gonna be dicey, at best), you need to find out if you can explicitly mount&lt;BR /&gt;this guy. I'm betting you can because contrary to popular belief, spaces are perfectly legitimate in UNIX pathnames --- they're just state of the art stupid -- and tend to break many otherwise fine scripts.&lt;BR /&gt;&lt;BR /&gt;Try this:&lt;BR /&gt;&lt;BR /&gt;mount -F nfs -o rw,soft,intr "pchost:L/Client Sys" /myunix mountdir&lt;BR /&gt;&lt;BR /&gt;If that works then you can craft an rc script to mount and umount the filesystem.&lt;BR /&gt;</description>
      <pubDate>Fri, 27 Jan 2006 17:01:05 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/nfs-mounts-from-a-nt-system-to-a-hp-unix-system/m-p/3719295#M252421</guid>
      <dc:creator>A. Clay Stephenson</dc:creator>
      <dc:date>2006-01-27T17:01:05Z</dc:date>
    </item>
    <item>
      <title>Re: NFS mounts from a NT system to a HP Unix system</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/nfs-mounts-from-a-nt-system-to-a-hp-unix-system/m-p/3719296#M252422</link>
      <description>Ooops, there should not be a space in the /myunixmountdir mountpoint just in your remote filesystem name.&lt;BR /&gt;&lt;BR /&gt;mount -F nfs -o rw,soft,intr "pchost:L/Client Sys" /myunixmountdir</description>
      <pubDate>Fri, 27 Jan 2006 17:09:11 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/nfs-mounts-from-a-nt-system-to-a-hp-unix-system/m-p/3719296#M252422</guid>
      <dc:creator>A. Clay Stephenson</dc:creator>
      <dc:date>2006-01-27T17:09:11Z</dc:date>
    </item>
    <item>
      <title>Re: NFS mounts from a NT system to a HP Unix system</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/nfs-mounts-from-a-nt-system-to-a-hp-unix-system/m-p/3719297#M252423</link>
      <description>When you decide to exchange files between unrelated systems, be prepared for the unique (and often incompatible) features in each system. As you are seeing, spaces in a filename or directory name, while somewhat transparent in the PC world, will take a *lot* of work to protect the standard field separator for Unix systems. Spaces in filenames first appeared in Macs when people were still using Windows 3.1 (no spaces allowed) so later Windows versions allowed names with spaces. Even Windows has to protect the spaces in some contexts.&lt;BR /&gt; &lt;BR /&gt;Similarly, Windows does not recognize the difference between UPPERCASE and lowercase, yet these two character sets are unique in Unix.&lt;BR /&gt; &lt;BR /&gt;Save yourself a *lot* of troubles getting this and other 'special' characters in filenames and directory names (like # @ $ % * [ ] ; \) by restricting exports and imports to simple alphanumeric characters, all lowercase. This goes for both Windows as well as HP-UX (and other systems like Macs and Linux and mainframes, etc).</description>
      <pubDate>Fri, 27 Jan 2006 21:26:11 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/nfs-mounts-from-a-nt-system-to-a-hp-unix-system/m-p/3719297#M252423</guid>
      <dc:creator>Bill Hassell</dc:creator>
      <dc:date>2006-01-27T21:26:11Z</dc:date>
    </item>
    <item>
      <title>Re: NFS mounts from a NT system to a HP Unix system</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/nfs-mounts-from-a-nt-system-to-a-hp-unix-system/m-p/3719298#M252424</link>
      <description>Sorry I was out for the weekend, Clay I tried yours it looked like it worked but bdf gives me a error message and I can not umount the process.&lt;BR /&gt;I did a &lt;BR /&gt;umount -F nfs -o rw,soft,intr "lisbon:L/Client Svcs/Data Services/global_research" /mnt&lt;BR /&gt;&lt;BR /&gt;and now when I do a bdf I get the following error.&lt;BR /&gt;&lt;BR /&gt;bdf: Svcs/Data: No such file or directory&lt;BR /&gt;&lt;BR /&gt;Any way I can clear this up without a reboot...&lt;BR /&gt;</description>
      <pubDate>Mon, 30 Jan 2006 08:40:11 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/nfs-mounts-from-a-nt-system-to-a-hp-unix-system/m-p/3719298#M252424</guid>
      <dc:creator>Belinda Dermody</dc:creator>
      <dc:date>2006-01-30T08:40:11Z</dc:date>
    </item>
    <item>
      <title>Re: NFS mounts from a NT system to a HP Unix system</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/nfs-mounts-from-a-nt-system-to-a-hp-unix-system/m-p/3719299#M252425</link>
      <description>Well with further investigation, I see that the NT server is mounted to my HP system, but the error shows up on the bdf command and wont be listed.  I can get to that temporary mount /mnt and see the directories that I want and need and I can touch and delete files.  But I can not umount it and mount it to the correct path on my HP system, I can change my script to point to /mnt while I work this out...</description>
      <pubDate>Mon, 30 Jan 2006 09:09:35 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/nfs-mounts-from-a-nt-system-to-a-hp-unix-system/m-p/3719299#M252425</guid>
      <dc:creator>Belinda Dermody</dc:creator>
      <dc:date>2006-01-30T09:09:35Z</dc:date>
    </item>
  </channel>
</rss>

