<?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: fstab syntax in Operating System - Linux</title>
    <link>https://community.hpe.com/t5/operating-system-linux/fstab-syntax/m-p/5078830#M92423</link>
    <description>&amp;gt;The application using this directory doesn't like links.&lt;BR /&gt;&lt;BR /&gt;Oops, I just saw this.  How does the application know there is a link?&lt;BR /&gt;This implies the application is trying to be too clever and is not clever enough.&lt;BR /&gt;&lt;BR /&gt;You of course can create a directory hardlink (if in the same filesystem) to fight stupidity with even more.  :-)</description>
    <pubDate>Fri, 09 Nov 2007 01:26:07 GMT</pubDate>
    <dc:creator>Dennis Handly</dc:creator>
    <dc:date>2007-11-09T01:26:07Z</dc:date>
    <item>
      <title>fstab syntax</title>
      <link>https://community.hpe.com/t5/operating-system-linux/fstab-syntax/m-p/5078825#M92418</link>
      <description>It is possible to mount a directory from one local file system over another?  Like this:&lt;BR /&gt;&lt;BR /&gt;mount /11b/data/iman/idsm_tmp /tmp/idsm_tmp&lt;BR /&gt;&lt;BR /&gt;My question is how do I enter this in the fstab so that it mounts when the server reboots.  OS is 11.11.  &lt;BR /&gt;&lt;BR /&gt;NOTE: The application using this directory doesn't like links.&lt;BR /&gt;&lt;BR /&gt;Thanks,&lt;BR /&gt;David</description>
      <pubDate>Thu, 08 Nov 2007 09:46:57 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/fstab-syntax/m-p/5078825#M92418</guid>
      <dc:creator>David L Wright</dc:creator>
      <dc:date>2007-11-08T09:46:57Z</dc:date>
    </item>
    <item>
      <title>Re: fstab syntax</title>
      <link>https://community.hpe.com/t5/operating-system-linux/fstab-syntax/m-p/5078826#M92419</link>
      <description>Hi David,&lt;BR /&gt;&lt;BR /&gt;You can, you would need to make sure that the first directory is mounted before the second is attempted.&lt;BR /&gt;&lt;BR /&gt;So for example:&lt;BR /&gt;&lt;BR /&gt;/dev/vg01/dir1&lt;BR /&gt;/dev/vg01/dir1/dir2&lt;BR /&gt;&lt;BR /&gt;Would have entries in the fstab file something like this:&lt;BR /&gt;&lt;BR /&gt;/dev/vg01/lvol1 /dir1 vxfs delaylog 0 2                 &lt;BR /&gt;/dev/vg01/lvol2 /dir1/dir2 vxfs delaylog 0 2 &lt;BR /&gt;&lt;BR /&gt;Mike.</description>
      <pubDate>Thu, 08 Nov 2007 10:01:59 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/fstab-syntax/m-p/5078826#M92419</guid>
      <dc:creator>Mike Shilladay</dc:creator>
      <dc:date>2007-11-08T10:01:59Z</dc:date>
    </item>
    <item>
      <title>Re: fstab syntax</title>
      <link>https://community.hpe.com/t5/operating-system-linux/fstab-syntax/m-p/5078827#M92420</link>
      <description>Thanks for the reply Mike.  I found the syntax I was looking for by doing the mount and then looking at the /etc/mnttab and copying that syntax to the /etc/fstab.  This is working.  Per your suggestion, I will make this the last entry in the /etc/fstab.  &lt;BR /&gt;&lt;BR /&gt;Syntax used:&lt;BR /&gt;&lt;BR /&gt;/11b/data/iman/idsm_tmp /tmp/idsm_tmp lofs defaults 0 0</description>
      <pubDate>Thu, 08 Nov 2007 11:41:09 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/fstab-syntax/m-p/5078827#M92420</guid>
      <dc:creator>David L Wright</dc:creator>
      <dc:date>2007-11-08T11:41:09Z</dc:date>
    </item>
    <item>
      <title>Re: fstab syntax</title>
      <link>https://community.hpe.com/t5/operating-system-linux/fstab-syntax/m-p/5078828#M92421</link>
      <description>See my last post for the solution.</description>
      <pubDate>Thu, 08 Nov 2007 12:01:43 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/fstab-syntax/m-p/5078828#M92421</guid>
      <dc:creator>David L Wright</dc:creator>
      <dc:date>2007-11-08T12:01:43Z</dc:date>
    </item>
    <item>
      <title>Re: fstab syntax</title>
      <link>https://community.hpe.com/t5/operating-system-linux/fstab-syntax/m-p/5078829#M92422</link>
      <description>Instead of doing complicated stuff like mounts, you can simply create a symlink from one directory to the other.</description>
      <pubDate>Fri, 09 Nov 2007 01:22:57 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/fstab-syntax/m-p/5078829#M92422</guid>
      <dc:creator>Dennis Handly</dc:creator>
      <dc:date>2007-11-09T01:22:57Z</dc:date>
    </item>
    <item>
      <title>Re: fstab syntax</title>
      <link>https://community.hpe.com/t5/operating-system-linux/fstab-syntax/m-p/5078830#M92423</link>
      <description>&amp;gt;The application using this directory doesn't like links.&lt;BR /&gt;&lt;BR /&gt;Oops, I just saw this.  How does the application know there is a link?&lt;BR /&gt;This implies the application is trying to be too clever and is not clever enough.&lt;BR /&gt;&lt;BR /&gt;You of course can create a directory hardlink (if in the same filesystem) to fight stupidity with even more.  :-)</description>
      <pubDate>Fri, 09 Nov 2007 01:26:07 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/fstab-syntax/m-p/5078830#M92423</guid>
      <dc:creator>Dennis Handly</dc:creator>
      <dc:date>2007-11-09T01:26:07Z</dc:date>
    </item>
  </channel>
</rss>

