<?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 mount NFS UNIX volume using VMS client in Operating System - OpenVMS</title>
    <link>https://community.hpe.com/t5/operating-system-openvms/how-to-mount-nfs-unix-volume-using-vms-client/m-p/3704240#M53861</link>
    <description>Nothing has changed, but I was wondering if the problem might be related to permissions.  I'm not sure exactly what I'm asking, but I thought I may have overlooked something.&lt;BR /&gt;&lt;BR /&gt;Also, I'm not comfortable upgrading the software because the machine is hooked up to equipment critical to research.&lt;BR /&gt;&lt;BR /&gt;Thanks,&lt;BR /&gt;Carlos</description>
    <pubDate>Sat, 14 Jan 2006 20:23:18 GMT</pubDate>
    <dc:creator>Carlos Moreira</dc:creator>
    <dc:date>2006-01-14T20:23:18Z</dc:date>
    <item>
      <title>How to mount NFS UNIX volume using VMS client</title>
      <link>https://community.hpe.com/t5/operating-system-openvms/how-to-mount-nfs-unix-volume-using-vms-client/m-p/3704220#M53841</link>
      <description>I am a beginner when when it comes to VMS.  I would like to know what the commands are to mount an NFS volume (UNIX server), proceeded by how I can change into the directory and write information to that directory (from any account on the system).&lt;BR /&gt;&lt;BR /&gt;I am more familiar with UNIX than VMS, so an equivalent UNIX explanation would be helpful.&lt;BR /&gt;&lt;BR /&gt;Thanks in advance!&lt;BR /&gt;&lt;BR /&gt;P.S.  I would send along the pertinent version numbers, etc., but I don't know the commands.&lt;BR /&gt;&lt;BR /&gt;</description>
      <pubDate>Fri, 06 Jan 2006 10:14:20 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-openvms/how-to-mount-nfs-unix-volume-using-vms-client/m-p/3704220#M53841</guid>
      <dc:creator>Carlos Moreira</dc:creator>
      <dc:date>2006-01-06T10:14:20Z</dc:date>
    </item>
    <item>
      <title>Re: How to mount NFS UNIX volume using VMS client</title>
      <link>https://community.hpe.com/t5/operating-system-openvms/how-to-mount-nfs-unix-volume-using-vms-client/m-p/3704221#M53842</link>
      <description>Start with "TCPIP SHOW VERSION".  When that&lt;BR /&gt;fails, try "SHOW LOGICAL *TCP*" and&lt;BR /&gt;'WRITE SYS$OUTPUT F$GETSYI( "VERSION")'.&lt;BR /&gt;&lt;BR /&gt;VAX, Alpha, or Itanium hardware?&lt;BR /&gt;&lt;BR /&gt;There is more than one TCP/IP kit for VMS,&lt;BR /&gt;and the details for NFS and everything else&lt;BR /&gt;differ among them.</description>
      <pubDate>Fri, 06 Jan 2006 10:37:58 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-openvms/how-to-mount-nfs-unix-volume-using-vms-client/m-p/3704221#M53842</guid>
      <dc:creator>Steven Schweda</dc:creator>
      <dc:date>2006-01-06T10:37:58Z</dc:date>
    </item>
    <item>
      <title>Re: How to mount NFS UNIX volume using VMS client</title>
      <link>https://community.hpe.com/t5/operating-system-openvms/how-to-mount-nfs-unix-volume-using-vms-client/m-p/3704222#M53843</link>
      <description>Here is the post and version of TCPIP (UCX):&lt;BR /&gt;&lt;BR /&gt; Welcome to OpenVMS (TM) Alpha Operating System, Version V7.3-2  &lt;BR /&gt; &lt;BR /&gt;$ tcpip show version&lt;BR /&gt; &lt;BR /&gt;  HP TCP/IP Services for OpenVMS Alpha Version V5.4 - ECO 1&lt;BR /&gt;  on a AlphaStation DS15 running OpenVMS V7.3-2  &lt;BR /&gt;&lt;BR /&gt;</description>
      <pubDate>Fri, 06 Jan 2006 10:42:34 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-openvms/how-to-mount-nfs-unix-volume-using-vms-client/m-p/3704222#M53843</guid>
      <dc:creator>Carlos Moreira</dc:creator>
      <dc:date>2006-01-06T10:42:34Z</dc:date>
    </item>
    <item>
      <title>Re: How to mount NFS UNIX volume using VMS client</title>
      <link>https://community.hpe.com/t5/operating-system-openvms/how-to-mount-nfs-unix-volume-using-vms-client/m-p/3704223#M53844</link>
      <description>TCPIP HELP MOUNT&lt;BR /&gt;&lt;BR /&gt;As a crude example:&lt;BR /&gt;&lt;BR /&gt;$ tcpip&lt;BR /&gt;mount dnfs16: /host = urt /path = "/" /auto&lt;BR /&gt;mount dnfs17: /host = urt /path = "/usr" /auto&lt;BR /&gt;mount dnfs18: /host = urt /path = "/var" /auto&lt;BR /&gt;&lt;BR /&gt;Defining some logical names can make some&lt;BR /&gt;things more convenient.&lt;BR /&gt;&lt;BR /&gt;$ define /system urt_root dnfs16:[000000]&lt;BR /&gt;$ define /system /trans = conc urt_root_ dnfs16:[000000.]&lt;BR /&gt;$ define /system urt_usr dnfs17:[000000]&lt;BR /&gt;$ define /system /trans = conc urt_usr_ dnfs17:[000000.]&lt;BR /&gt;$ define /system urt_var dnfs18:[000000]&lt;BR /&gt;$ define /system /trans = conc urt_var_ dnfs18:[000000.]&lt;BR /&gt;&lt;BR /&gt;To see "/net/urt/usr/local/src/vim":&lt;BR /&gt;&lt;BR /&gt;ALP $ dire /date /size /prot urt_usr_:[local.src.vim]&lt;BR /&gt;&lt;BR /&gt;Directory URT_USR_:[LOCAL.SRC.VIM]&lt;BR /&gt;&lt;BR /&gt;PATCH.DIR;1                2  25-JAN-2004 01:15:50.95  (RWED,RWED,RED,RED)&lt;BR /&gt;VIM-5$5N7.DIR;1            1  25-JAN-2004 01:16:13.51  (RWED,RWED,RED,RED)&lt;BR /&gt;VIM-5.7-RT$5NTAR$5NGZ;1&lt;BR /&gt;                        2147  27-FEB-2001 21:45:08.00  (RWD,RWD,RD,RD)&lt;BR /&gt;VIM-5.7-SRC$5NTAR$5NGZ;1&lt;BR /&gt;                        2405  27-FEB-2001 21:45:20.00  (RWD,RWD,RD,RD)&lt;BR /&gt;&lt;BR /&gt;Total of 4 files, 4555 blocks.&lt;BR /&gt;&lt;BR /&gt;The ODS2-compatible names may be annoying.&lt;BR /&gt;&lt;BR /&gt;Note that VMS lacks the concept of a root&lt;BR /&gt;file system, so looking for files in "/usr"&lt;BR /&gt;in the root fails:&lt;BR /&gt;&lt;BR /&gt;ALP $ dire /date /size /prot urt_root_:[usr]&lt;BR /&gt;%DIRECT-W-NOFILES, no files found&lt;BR /&gt;&lt;BR /&gt;even though the directory appears there:&lt;BR /&gt;&lt;BR /&gt;ALP $ dire /date /size /prot urt_root_:[000000]usr&lt;BR /&gt;&lt;BR /&gt;Directory URT_ROOT_:[000000]&lt;BR /&gt;&lt;BR /&gt;USR.DIR;1                  1  24-JAN-2004 23:26:44.73  (RWED,RWED,RED,RED)&lt;BR /&gt;&lt;BR /&gt;Total of 1 file, 1 block.&lt;BR /&gt;&lt;BR /&gt;But "urt_usr:" or "urt_usr_:[000000]" works.&lt;BR /&gt;&lt;BR /&gt;Is that sufficiently confusing?</description>
      <pubDate>Fri, 06 Jan 2006 10:59:30 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-openvms/how-to-mount-nfs-unix-volume-using-vms-client/m-p/3704223#M53844</guid>
      <dc:creator>Steven Schweda</dc:creator>
      <dc:date>2006-01-06T10:59:30Z</dc:date>
    </item>
    <item>
      <title>Re: How to mount NFS UNIX volume using VMS client</title>
      <link>https://community.hpe.com/t5/operating-system-openvms/how-to-mount-nfs-unix-volume-using-vms-client/m-p/3704224#M53845</link>
      <description>&lt;BR /&gt;Steven,&lt;BR /&gt;&lt;BR /&gt;I really do NOT like any syntax that contains [000000.&lt;BR /&gt;Of course it is OK to specify the [000000] pseudo-directory itself, but if you specify a subdirectory by using a full stop after the 6 zeroes, you are inplying a REAL, existant 000000.DIR.&lt;BR /&gt;And if you do that in any command that implicitly creates directories (like BACKUP) you end up with a real 000000.DIR.&lt;BR /&gt;Still no harm done, but if you some time later repeat those actions, you create [000000]000000.DIR, and NOW the real fun can start!&lt;BR /&gt;&lt;BR /&gt;Secondly, if these concealed devices are going to be needed by innermode code, they need to be /EXECUTIVE&lt;BR /&gt;An illustrative example is to use it as the device spec in AUTHORIZE.&lt;BR /&gt;&lt;BR /&gt;In short, do not:&lt;BR /&gt;$ define /system /trans = conc urt_usr_ dnfs17:[000000.]  &lt;BR /&gt;but use:&lt;BR /&gt;$ define /system/exec /trans = conc urt_usr_ dnfs17:&lt;BR /&gt;&lt;BR /&gt;hth,&lt;BR /&gt;&lt;BR /&gt;Proost.&lt;BR /&gt;&lt;BR /&gt;Have one on me.&lt;BR /&gt;&lt;BR /&gt;jpe&lt;BR /&gt;&lt;BR /&gt;</description>
      <pubDate>Fri, 06 Jan 2006 13:00:45 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-openvms/how-to-mount-nfs-unix-volume-using-vms-client/m-p/3704224#M53845</guid>
      <dc:creator>Jan van den Ende</dc:creator>
      <dc:date>2006-01-06T13:00:45Z</dc:date>
    </item>
    <item>
      <title>Re: How to mount NFS UNIX volume using VMS client</title>
      <link>https://community.hpe.com/t5/operating-system-openvms/how-to-mount-nfs-unix-volume-using-vms-client/m-p/3704225#M53846</link>
      <description>I must be doing something wrong:&lt;BR /&gt;&lt;BR /&gt;TCPIP&amp;gt; mount dnfs16: /host=engna2.bu.edu /path="/vol/research/eng_research_mctda&lt;BR /&gt;ta" /auto&lt;BR /&gt;%TCPIP$DNFSMOUNT-S-MOUNTED, /vol/research/eng_research_mctdata mounted on _DNFS1&lt;BR /&gt;6:[000000]&lt;BR /&gt;TCPIP&amp;gt; define /system mctdata dnfs16:[000000]&lt;BR /&gt;%CLI-W-NOQUAL, qualifiers not allowed - supply only verb and parameters&lt;BR /&gt; \SYSTEM\&lt;BR /&gt;TCPIP&amp;gt; exit&lt;BR /&gt;$ define /system mctdata dnfs16:[000000]&lt;BR /&gt;$ dire /date /size /prot mctdata_:[000000]&lt;BR /&gt;%DIRECT-E-OPENIN, error opening MCTDATA_:[000000]*.*;* as input&lt;BR /&gt;-RMS-F-DEV, error in device name or inappropriate device type for operation&lt;BR /&gt;$ define /system mctdata dnfs1:[000000]                                        &lt;BR /&gt;%DCL-I-SUPERSEDE, previous value of MCTDATA has been superseded&lt;BR /&gt;$ dire /date /size /prot mctdata_:[000000]&lt;BR /&gt;%DIRECT-E-OPENIN, error opening MCTDATA_:[000000]*.*;* as input&lt;BR /&gt;-RMS-F-DEV, error in device name or inappropriate device type for operation&lt;BR /&gt;&lt;BR /&gt;Any assistance would be great, thanks!</description>
      <pubDate>Fri, 06 Jan 2006 14:57:41 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-openvms/how-to-mount-nfs-unix-volume-using-vms-client/m-p/3704225#M53846</guid>
      <dc:creator>Carlos Moreira</dc:creator>
      <dc:date>2006-01-06T14:57:41Z</dc:date>
    </item>
    <item>
      <title>Re: How to mount NFS UNIX volume using VMS client</title>
      <link>https://community.hpe.com/t5/operating-system-openvms/how-to-mount-nfs-unix-volume-using-vms-client/m-p/3704226#M53847</link>
      <description>Carlos,&lt;BR /&gt;&lt;BR /&gt;if you posted EXACTLY what you did, then it is clear.&lt;BR /&gt;&lt;QUOTE&gt;&lt;BR /&gt;$ define /system mctdata dnfs16:[000000]&lt;BR /&gt;$ dire /date /size /prot mctdata_:[000000]&lt;BR /&gt;&lt;/QUOTE&gt;&lt;BR /&gt;&lt;BR /&gt;Look very good:&lt;BR /&gt;&lt;BR /&gt;you DEFINE  mctdata&lt;BR /&gt;&lt;BR /&gt;and then USE mctdata_&lt;BR /&gt;&lt;BR /&gt;Whatch carefully and notice the extra underscore.&lt;BR /&gt;&lt;BR /&gt;But there is something more.&lt;BR /&gt;&lt;BR /&gt;Either you define a construct containing a directory spec to SUBSTITUTE that dierectory spec,  OR, you specify a CONCEALED DEVICE as a substitute for a device spec.&lt;BR /&gt;Concealed device definitions contain the mandatory /TRANS=CONCEAL qualifier ( "switch" in U*x speak )&lt;BR /&gt;A concealed device defines a name for a device spec (ending with : (colon) OR a name for a concealed device root, consisting of a real device spec, a colon, a directory spec WITH A FULL STOP ( . ) DIRECTLY IN FRONT OF THE CLOSING SQUARE BRACKET {  ]  }&lt;BR /&gt;in your example:&lt;BR /&gt;DEFI/SYS/EXE mctdata_ dnfs16:  /trans = conc&lt;BR /&gt;or&lt;BR /&gt;DEFI/SYS/EXE mctdata_ dnfs16:[data.] trans is conc&lt;BR /&gt;&lt;BR /&gt;Now, use it as &lt;BR /&gt;&lt;BR /&gt;DEFIN /SYSTEM MCTDAT_XYZ /ctdata_:[XYX]&lt;BR /&gt;&lt;BR /&gt;In the first case, use U*X system would have&lt;BR /&gt;/vol/research/eng_research_mctdata/xyz&lt;BR /&gt;in the second case that would be&lt;BR /&gt;/vol/research/eng_research_mctdata/data/xyz&lt;BR /&gt;&lt;BR /&gt;A little extra advise: please choose your naming a little less confusing!&lt;BR /&gt;Two totally different definitions with only an underscore as (hardly visible) differentiator CAN BE a little confusing, as you yourself have made very obvius!&lt;BR /&gt;&lt;BR /&gt;PS. If you want to have a clearer view of the exact spellings, then copy the text out ot the forums display, and paste it into a plain ASCI format, like any VMS or U*x editor, or even M$ Notepad.&lt;BR /&gt;&lt;BR /&gt;hth,&lt;BR /&gt;&lt;BR /&gt;Proost.&lt;BR /&gt;&lt;BR /&gt;Have one on me.&lt;BR /&gt;&lt;BR /&gt;jpe</description>
      <pubDate>Fri, 06 Jan 2006 15:27:28 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-openvms/how-to-mount-nfs-unix-volume-using-vms-client/m-p/3704226#M53847</guid>
      <dc:creator>Jan van den Ende</dc:creator>
      <dc:date>2006-01-06T15:27:28Z</dc:date>
    </item>
    <item>
      <title>Re: How to mount NFS UNIX volume using VMS client</title>
      <link>https://community.hpe.com/t5/operating-system-openvms/how-to-mount-nfs-unix-volume-using-vms-client/m-p/3704227#M53848</link>
      <description>Carlos, &lt;BR /&gt;&lt;BR /&gt;me again.&lt;BR /&gt;&lt;BR /&gt;Sorry, I was a little late in noting your request for explanatios from a U*x perspective.&lt;BR /&gt;&lt;BR /&gt;Unix does not display the notion of devices.&lt;BR /&gt;Perhaps the best way I can describe it: consider VMS to have not just ONE filesystem, but a separate one PER DEVICE.&lt;BR /&gt;And you can use them all mixed together, if only you specify them each time, like you would use a mix of files in /dev /var /etc /bin  ...&lt;BR /&gt;(and lets forget about relative adressing, although the concepts are similar)&lt;BR /&gt;&lt;BR /&gt;The concept of Logical Names has no real U*x equivalent.&lt;BR /&gt;Loosely speaking, they may be considered as environment variables. But /SYSTEM logicals are usable by all processes on the system, and can be changed with immedeate effect on all processes by suitably privileged users. Same applies for /GROUP logicals for all processes in that UIC group (cf the same gid )&lt;BR /&gt;&lt;BR /&gt;Proost.&lt;BR /&gt;&lt;BR /&gt;Have one on me.&lt;BR /&gt;&lt;BR /&gt;jpe</description>
      <pubDate>Fri, 06 Jan 2006 15:38:30 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-openvms/how-to-mount-nfs-unix-volume-using-vms-client/m-p/3704227#M53848</guid>
      <dc:creator>Jan van den Ende</dc:creator>
      <dc:date>2006-01-06T15:38:30Z</dc:date>
    </item>
    <item>
      <title>Re: How to mount NFS UNIX volume using VMS client</title>
      <link>https://community.hpe.com/t5/operating-system-openvms/how-to-mount-nfs-unix-volume-using-vms-client/m-p/3704228#M53849</link>
      <description>Thank you for your notes.  They appear to be helpful, but I am still a bit confused.&lt;BR /&gt;&lt;BR /&gt;How do I verify that I have successfully mounted the UNIX volume?&lt;BR /&gt;&lt;BR /&gt;Also, what is the command to "change into that directory"?  After that, I will try writing a file to see if that works.  That is basically all I want to do.&lt;BR /&gt;&lt;BR /&gt;Thanks,&lt;BR /&gt;Carlos</description>
      <pubDate>Fri, 06 Jan 2006 15:47:12 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-openvms/how-to-mount-nfs-unix-volume-using-vms-client/m-p/3704228#M53849</guid>
      <dc:creator>Carlos Moreira</dc:creator>
      <dc:date>2006-01-06T15:47:12Z</dc:date>
    </item>
    <item>
      <title>Re: How to mount NFS UNIX volume using VMS client</title>
      <link>https://community.hpe.com/t5/operating-system-openvms/how-to-mount-nfs-unix-volume-using-vms-client/m-p/3704229#M53850</link>
      <description>&amp;gt; How do I verify that I have successfully&lt;BR /&gt;&amp;gt; mounted the UNIX volume?&lt;BR /&gt;&lt;BR /&gt;The DIRECTORY command offers a clue.&lt;BR /&gt;&lt;BR /&gt;&amp;gt; Also, what is the command to "change into&lt;BR /&gt;&amp;gt; that directory"?&lt;BR /&gt;&lt;BR /&gt;SET DEFAULT&lt;BR /&gt;&lt;BR /&gt;You appear to need a general VMS primer.&lt;BR /&gt;Google can probably find several.&lt;BR /&gt;&lt;BR /&gt;&amp;gt; After that, I will try writing a file to&lt;BR /&gt;&amp;gt; see if that works.&lt;BR /&gt;&lt;BR /&gt;Writing how?&lt;BR /&gt;</description>
      <pubDate>Fri, 06 Jan 2006 17:50:32 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-openvms/how-to-mount-nfs-unix-volume-using-vms-client/m-p/3704229#M53850</guid>
      <dc:creator>Steven Schweda</dc:creator>
      <dc:date>2006-01-06T17:50:32Z</dc:date>
    </item>
    <item>
      <title>Re: How to mount NFS UNIX volume using VMS client</title>
      <link>https://community.hpe.com/t5/operating-system-openvms/how-to-mount-nfs-unix-volume-using-vms-client/m-p/3704230#M53851</link>
      <description>My apologies, I meant to say that I just want to test the creation of a file so that the users of the system can begin storing data on this mount point.&lt;BR /&gt;&lt;BR /&gt;I've been searching for a primer but haven't found anything specific enough.&lt;BR /&gt;&lt;BR /&gt;How do I translate the following UNIX commands to VMS:&lt;BR /&gt;&lt;BR /&gt;1) mount engna2.bu.edu:/vol/research/eng_research_mctdata /mnt/mctdata&lt;BR /&gt;(is this VMS directory dnfs#:[000000]?)&lt;BR /&gt;2) df&lt;BR /&gt;(i presume show dev /mou will work similarly)&lt;BR /&gt;3) cd /mnt/mctdata&lt;BR /&gt;(set def dnfs#:[000000]?)&lt;BR /&gt;4) touch test.file&lt;BR /&gt;(create /dir test.file?)&lt;BR /&gt;&lt;BR /&gt;Thanks in advance,&lt;BR /&gt;Carlos</description>
      <pubDate>Fri, 06 Jan 2006 22:03:24 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-openvms/how-to-mount-nfs-unix-volume-using-vms-client/m-p/3704230#M53851</guid>
      <dc:creator>Carlos Moreira</dc:creator>
      <dc:date>2006-01-06T22:03:24Z</dc:date>
    </item>
    <item>
      <title>Re: How to mount NFS UNIX volume using VMS client</title>
      <link>https://community.hpe.com/t5/operating-system-openvms/how-to-mount-nfs-unix-volume-using-vms-client/m-p/3704231#M53852</link>
      <description>1) With the "/auto" in the TCPIP MOUNT&lt;BR /&gt;command, any reference to the remote file&lt;BR /&gt;system should get the thing mounted.  (Just&lt;BR /&gt;as a reference to "/net/node/dir/file" would&lt;BR /&gt;on a UNIX system.)&lt;BR /&gt;&lt;BR /&gt;TCPIP SHOW MOUNT can show what's mounted (or&lt;BR /&gt;subject to automounting).&lt;BR /&gt;&lt;BR /&gt;2) "SHOW DEVICE DNFSxx" should show free&lt;BR /&gt;(512-byte) blocks.  On my systems:&lt;BR /&gt;&lt;BR /&gt;ALP $ sho dev DNFS16&lt;BR /&gt;&lt;BR /&gt;Device                  Device           Error    Volume         Free  Trans Mnt&lt;BR /&gt; Name                   Status           Count     Label        Blocks Count Cnt&lt;BR /&gt;DNFS16:                 Mounted              0  URT$/           729470     1   1&lt;BR /&gt;&lt;BR /&gt;ALP $ sho dev DNFS17&lt;BR /&gt;&lt;BR /&gt;Device                  Device           Error    Volume         Free  Trans Mnt&lt;BR /&gt; Name                   Status           Count     Label        Blocks Count Cnt&lt;BR /&gt;DNFS17:                 Mounted              0  URT$/usr       4270322     1   1&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;urt# df / /usr&lt;BR /&gt;Filesystem        512-blocks        Used   Available Capacity  Mounted on&lt;BR /&gt;root_device          1048576      319106      708624    32%    /&lt;BR /&gt;usr_domain_x#usr    14628416    10358094     3730320    74%    /usr&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;Of course, this forum de-formats all that&lt;BR /&gt;output into practical illegibility,&lt;BR /&gt;&lt;BR /&gt;3) "set def dnfs#:[000000]" looks reasonable.&lt;BR /&gt;(Filling in "#" with a real value, of&lt;BR /&gt;course.)&lt;BR /&gt;&lt;BR /&gt;4) There is no exact match for "touch" in&lt;BR /&gt;DCL.  People have written "touch.com"&lt;BR /&gt;procedures to get pretty close.  "CRE /DIR"&lt;BR /&gt;creates a directory.  To create a simple&lt;BR /&gt;empty file, you could try something like:&lt;BR /&gt;COPY NL: dnfs#:[000000]test.file&lt;BR /&gt;or&lt;BR /&gt;SET DEFAULT dnfs#:[000000]&lt;BR /&gt;COPY NL: test.file&lt;BR /&gt;&lt;BR /&gt;NL: = NLA0: = the null device (like&lt;BR /&gt;"/dev/null")&lt;BR /&gt;&lt;BR /&gt;More device info is available using a&lt;BR /&gt;lexical function, F$GETDVI().  For example:&lt;BR /&gt;&lt;BR /&gt;ALP $ write sys$output f$getdvi( "dnfs17", "freeblocks")&lt;BR /&gt;4270322&lt;BR /&gt;&lt;BR /&gt;ALP $ write sys$output f$getdvi( "dnfs17", "maxblock")&lt;BR /&gt;14628416&lt;BR /&gt;&lt;BR /&gt;HELP LEXICAL F$GETDVI&lt;BR /&gt;&lt;BR /&gt;Isn't this all interesting and educational?</description>
      <pubDate>Fri, 06 Jan 2006 22:41:28 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-openvms/how-to-mount-nfs-unix-volume-using-vms-client/m-p/3704231#M53852</guid>
      <dc:creator>Steven Schweda</dc:creator>
      <dc:date>2006-01-06T22:41:28Z</dc:date>
    </item>
    <item>
      <title>Re: How to mount NFS UNIX volume using VMS client</title>
      <link>https://community.hpe.com/t5/operating-system-openvms/how-to-mount-nfs-unix-volume-using-vms-client/m-p/3704232#M53853</link>
      <description>Here is where I am at:&lt;BR /&gt;&lt;BR /&gt;TCPIP&amp;gt; mount dnfs: /host=engna2.bu.edu /path="/vol/eng_research_mctdata"&lt;BR /&gt;%TCPIP$DNFSMOUNT-S-MOUNTED, /vol/eng_research_mctdata mounted on _DNFS27:[000000]&lt;BR /&gt;&lt;BR /&gt;TCPIP&amp;gt; show mount&lt;BR /&gt;_DNFS27:[000000]        mounted&lt;BR /&gt;    ENGNA2.BU.EDU:/vol/eng_research_mctdata&lt;BR /&gt;&lt;BR /&gt;TCPIP&amp;gt; exit&lt;BR /&gt;$ set def dnfs27:[000000]&lt;BR /&gt;&lt;BR /&gt;$ show def&lt;BR /&gt;  DNFS27:[000000]&lt;BR /&gt;%DCL-I-INVDEF, DNFS27:[000000] does not exist&lt;BR /&gt;&lt;BR /&gt;What did I type incorrectly or should this work?&lt;BR /&gt;&lt;BR /&gt;Thanks!&lt;BR /&gt;</description>
      <pubDate>Fri, 06 Jan 2006 22:49:36 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-openvms/how-to-mount-nfs-unix-volume-using-vms-client/m-p/3704232#M53853</guid>
      <dc:creator>Carlos Moreira</dc:creator>
      <dc:date>2006-01-06T22:49:36Z</dc:date>
    </item>
    <item>
      <title>Re: How to mount NFS UNIX volume using VMS client</title>
      <link>https://community.hpe.com/t5/operating-system-openvms/how-to-mount-nfs-unix-volume-using-vms-client/m-p/3704233#M53854</link>
      <description>That all looks reasonable (except for the&lt;BR /&gt;result).  The local analogue works on my&lt;BR /&gt;system, of course.&lt;BR /&gt;&lt;BR /&gt;I assume that:&lt;BR /&gt;&lt;BR /&gt;1) The UNIX file system is suitably exported.&lt;BR /&gt;2) It can be NFS mounted on a non-VMS system.&lt;BR /&gt;&lt;BR /&gt;What sort of UNIX system is this?&lt;BR /&gt;&lt;BR /&gt;Are you working as SYSTEM on the VMS system,&lt;BR /&gt;or could there be a permissions problem?</description>
      <pubDate>Fri, 06 Jan 2006 23:06:25 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-openvms/how-to-mount-nfs-unix-volume-using-vms-client/m-p/3704233#M53854</guid>
      <dc:creator>Steven Schweda</dc:creator>
      <dc:date>2006-01-06T23:06:25Z</dc:date>
    </item>
    <item>
      <title>Re: How to mount NFS UNIX volume using VMS client</title>
      <link>https://community.hpe.com/t5/operating-system-openvms/how-to-mount-nfs-unix-volume-using-vms-client/m-p/3704234#M53855</link>
      <description>I feel better.  I thought I was going crazy.&lt;BR /&gt;&lt;BR /&gt;I am logged on as SYSTEM.  I can mount the volume on other UNIX systems.&lt;BR /&gt;&lt;BR /&gt;The UNIX server is actually a NetApp filer (3020c).  Here is the output from sho dev /mou dnfs:&lt;BR /&gt;&lt;BR /&gt;Device                  Device           Error    Volume         Free  Trans Mnt&lt;BR /&gt; Name                   Status           Count     Label         Space Count Cnt&lt;BR /&gt;DNFS27:                 Mounted              0  ENGNA$/vol/e  319.99GB     1   1&lt;BR /&gt;DNFS28:                 Mounted              0  MCTDATA$DISK  319.99GB     1   1</description>
      <pubDate>Fri, 06 Jan 2006 23:15:34 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-openvms/how-to-mount-nfs-unix-volume-using-vms-client/m-p/3704234#M53855</guid>
      <dc:creator>Carlos Moreira</dc:creator>
      <dc:date>2006-01-06T23:15:34Z</dc:date>
    </item>
    <item>
      <title>Re: How to mount NFS UNIX volume using VMS client</title>
      <link>https://community.hpe.com/t5/operating-system-openvms/how-to-mount-nfs-unix-volume-using-vms-client/m-p/3704235#M53856</link>
      <description>&amp;gt; I thought I was going crazy.&lt;BR /&gt;&lt;BR /&gt;Could still be true.&lt;BR /&gt;&lt;BR /&gt;&amp;gt; [...] NetApp filer (3020c) [...]&lt;BR /&gt;&lt;BR /&gt;That's beyond my (limited) range of&lt;BR /&gt;experience.&lt;BR /&gt;&lt;BR /&gt;If you get desperate, the current ECO for&lt;BR /&gt;TCPIP V5.4 is 5, which is higher than your 1.&lt;BR /&gt;No bets, but it might be worth reading the&lt;BR /&gt;release notes and/or installing the thing.&lt;BR /&gt;&lt;BR /&gt;&lt;A href="ftp://ftp.itrc.hp.com/openvms_patches/layered_products/alpha/" target="_blank"&gt;ftp://ftp.itrc.hp.com/openvms_patches/layered_products/alpha/&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;Look for "DEC-AXPVMS-TCPIP_ECO-V0504-155-4.*".&lt;BR /&gt;</description>
      <pubDate>Fri, 06 Jan 2006 23:26:29 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-openvms/how-to-mount-nfs-unix-volume-using-vms-client/m-p/3704235#M53856</guid>
      <dc:creator>Steven Schweda</dc:creator>
      <dc:date>2006-01-06T23:26:29Z</dc:date>
    </item>
    <item>
      <title>Re: How to mount NFS UNIX volume using VMS client</title>
      <link>https://community.hpe.com/t5/operating-system-openvms/how-to-mount-nfs-unix-volume-using-vms-client/m-p/3704236#M53857</link>
      <description>Carlos,&lt;BR /&gt;&lt;BR /&gt;looks like Steven took over nicely while I was asleep.&lt;BR /&gt;&lt;BR /&gt;Checking your profile, I am a little ashamed by my omisson yesterday, but here is a belated, although sincerely meant:&lt;BR /&gt;&lt;BR /&gt;WELCOME to the VMS Forums!!!&lt;BR /&gt;&lt;BR /&gt;I think there is one more general note I should add:&lt;BR /&gt;&lt;BR /&gt;HELP&lt;BR /&gt;&lt;BR /&gt;in VMS really DOES help!  It is very good (although not completely perfect), and in pretty reasonable human-readable English.&lt;BR /&gt;Lots of utilities (amongst them TCPIP) even have their own HELP, so &lt;BR /&gt;TCPIP HELP&lt;BR /&gt;or for example&lt;BR /&gt;MC SYSGEN HELP&lt;BR /&gt;provide even more.&lt;BR /&gt;&lt;BR /&gt;and as you found out you can ask here.&lt;BR /&gt;&lt;BR /&gt;Proost.&lt;BR /&gt;&lt;BR /&gt;Have one on me.&lt;BR /&gt;&lt;BR /&gt;jpe&lt;BR /&gt;</description>
      <pubDate>Sat, 07 Jan 2006 03:07:39 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-openvms/how-to-mount-nfs-unix-volume-using-vms-client/m-p/3704236#M53857</guid>
      <dc:creator>Jan van den Ende</dc:creator>
      <dc:date>2006-01-07T03:07:39Z</dc:date>
    </item>
    <item>
      <title>Re: How to mount NFS UNIX volume using VMS client</title>
      <link>https://community.hpe.com/t5/operating-system-openvms/how-to-mount-nfs-unix-volume-using-vms-client/m-p/3704237#M53858</link>
      <description>By the way -- if you add /ADF=CREATE to your TCPIP MOUNT command, each file's VMS characteristics will be stored on the NFS server in a "hidden" file (".$ADR$&lt;FILENAME&gt;").  This is very useful for keeping the files useful on the VMS system.&lt;BR /&gt;&lt;BR /&gt;&lt;/FILENAME&gt;</description>
      <pubDate>Sat, 07 Jan 2006 11:05:54 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-openvms/how-to-mount-nfs-unix-volume-using-vms-client/m-p/3704237#M53858</guid>
      <dc:creator>Stanley F Quayle</dc:creator>
      <dc:date>2006-01-07T11:05:54Z</dc:date>
    </item>
    <item>
      <title>Re: How to mount NFS UNIX volume using VMS client</title>
      <link>https://community.hpe.com/t5/operating-system-openvms/how-to-mount-nfs-unix-volume-using-vms-client/m-p/3704238#M53859</link>
      <description>Is the mapping that I've seen in other posts required?  In other words, is it merely a permissions problem that is causing me not to have the ability to read and/or write.  At this point, I don't care which account can write to the NFS mounted volume.  For my purposes any account on the system should have full access.&lt;BR /&gt;&lt;BR /&gt;Thanks in advance,&lt;BR /&gt;Carlos</description>
      <pubDate>Sat, 14 Jan 2006 01:46:54 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-openvms/how-to-mount-nfs-unix-volume-using-vms-client/m-p/3704238#M53859</guid>
      <dc:creator>Carlos Moreira</dc:creator>
      <dc:date>2006-01-14T01:46:54Z</dc:date>
    </item>
    <item>
      <title>Re: How to mount NFS UNIX volume using VMS client</title>
      <link>https://community.hpe.com/t5/operating-system-openvms/how-to-mount-nfs-unix-volume-using-vms-client/m-p/3704239#M53860</link>
      <description>"mapping"?&lt;BR /&gt;&lt;BR /&gt;"permissions problem"?&lt;BR /&gt;&lt;BR /&gt;What did you do, and what happened when you&lt;BR /&gt;did it?  Or has nothing changed since Jan 7,&lt;BR /&gt;2006 03:49:36 GMT?&lt;BR /&gt;&lt;BR /&gt;Have you installed the latest TCPIP ECO?</description>
      <pubDate>Sat, 14 Jan 2006 03:16:29 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-openvms/how-to-mount-nfs-unix-volume-using-vms-client/m-p/3704239#M53860</guid>
      <dc:creator>Steven Schweda</dc:creator>
      <dc:date>2006-01-14T03:16:29Z</dc:date>
    </item>
  </channel>
</rss>

