<?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: No clue how the NFS mount points are mounted in Operating System - Linux</title>
    <link>https://community.hpe.com/t5/operating-system-linux/no-clue-how-the-nfs-mount-points-are-mounted/m-p/6265409#M81541</link>
    <description>&lt;P&gt;&amp;gt;"ln -s" is conceptually similar to the "cp" command:&lt;/P&gt;&lt;P&gt;&amp;gt;"ln -s &amp;lt;source&amp;gt; &amp;lt;destination&amp;gt;" makes a link to &amp;lt;source&amp;gt; appear at &amp;lt;destination&amp;gt;.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Hmm, I conceptualize it exactly the reverse.&amp;nbsp; I.e.:&lt;/P&gt;&lt;P&gt;ln -s &amp;lt;target of symlink&amp;gt; &amp;lt;symlink&amp;gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Though without the -s, for hardlinks, there is a well defined source.&lt;/P&gt;</description>
    <pubDate>Mon, 11 Nov 2013 17:48:44 GMT</pubDate>
    <dc:creator>Dennis Handly</dc:creator>
    <dc:date>2013-11-11T17:48:44Z</dc:date>
    <item>
      <title>No clue how the NFS mount points are mounted</title>
      <link>https://community.hpe.com/t5/operating-system-linux/no-clue-how-the-nfs-mount-points-are-mounted/m-p/6263699#M81539</link>
      <description>&lt;P&gt;Hi All,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;# df -hP /opt/linuxdepots/&lt;BR /&gt;Filesystem Size Used Avail Use% Mounted on&lt;BR /&gt;uxlinux:/sg/opt/linuxdepots 354G 34G 302G 11% &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; /autofs/linuxdepots&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Here both "&lt;SPAN&gt;/autofs/linuxdepots" and "&lt;SPAN&gt;/opt/linuxdepots/" are same. But my query is&amp;nbsp;&lt;SPAN&gt;&amp;nbsp;/autofs/linuxdepots is configured part of autofs. but there is no clue how&amp;nbsp;&lt;SPAN&gt;/opt/linuxdepots/ is configure.&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;&lt;SPAN&gt;&lt;SPAN&gt;&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;&lt;SPAN&gt;&lt;SPAN&gt;&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;&lt;SPAN&gt;&lt;SPAN&gt;&lt;SPAN&gt;Can any one throw some light on this.&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;&lt;SPAN&gt;&lt;SPAN&gt;&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;&lt;SPAN&gt;&lt;SPAN&gt;&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;&lt;SPAN&gt;&lt;SPAN&gt;&lt;SPAN&gt;P.S. This thread has been moved from Linux &amp;gt; System Admin to Linux &amp;gt; networking. - Hp Forum Moderator&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Mon, 11 Nov 2013 04:27:03 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/no-clue-how-the-nfs-mount-points-are-mounted/m-p/6263699#M81539</guid>
      <dc:creator>Senthil_N</dc:creator>
      <dc:date>2013-11-11T04:27:03Z</dc:date>
    </item>
    <item>
      <title>Re: No clue how the NFS mount points are mounted</title>
      <link>https://community.hpe.com/t5/operating-system-linux/no-clue-how-the-nfs-mount-points-are-mounted/m-p/6265207#M81540</link>
      <description>&lt;P&gt;It is probably caused by symbolic links (sort of similar to Windows shortcuts).&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Please run this command:&lt;/P&gt;&lt;PRE&gt;ls -ld /opt /opt/linuxdepots&lt;/PRE&gt;&lt;P&gt;&amp;nbsp;Either the /opt directory or /opt/linuxdepots may be a symbolic link.&lt;/P&gt;&lt;P&gt;Symbolic links are identified in the ls -ld listing by having a lower-case letter "l" in the first column. They will also have their target displayed at the end of the line. You will probably see something like this:&lt;/P&gt;&lt;PRE&gt;lrwxrwxrwx  1 root  root  &amp;lt;timestamp&amp;gt; /opt/linuxdepots -&amp;gt; /autofs/linuxdepots

or

lrwxrwxrwx  1 root  root  &amp;lt;timestamp&amp;gt; /opt -&amp;gt; /autofs&lt;/PRE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;The permissions of a symbolic link are normally ignored, and the permissions of the actual file will be used instead.&lt;/P&gt;&lt;P&gt;This is why the permissions of symbolic links are usually always "lrwxrwxrwx" and they cannot be easily changed.&lt;/P&gt;&lt;P&gt;(Some very special situations may produce symbolic links with different permissions, but those situations should be regarded as programming errors or minor filesystem corruption.)&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Symbolic links can be created with the "ln -s" command, and deleted with a regular "rm" command.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;The use of "ln -s" is conceptually similar to the "cp" command:&lt;/P&gt;&lt;P&gt;"cp &amp;lt;source&amp;gt; &amp;lt;destination&amp;gt;" makes a copy of &amp;lt;source&amp;gt; at &amp;lt;destination&amp;gt;,&lt;/P&gt;&lt;P&gt;and "ln -s &amp;lt;source&amp;gt; &amp;lt;destination&amp;gt;" makes a link to &amp;lt;source&amp;gt; appear at &amp;lt;destination&amp;gt;.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;In both cases, if &amp;lt;destination&amp;gt; is a directory, the copy/link will be created using its original file/directory name, but if &amp;lt;destination&amp;gt; is a non-existent file in a valid directory, then the copy/link will be named &amp;lt;destination&amp;gt; instead of its original file/directory name.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 11 Nov 2013 14:41:24 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/no-clue-how-the-nfs-mount-points-are-mounted/m-p/6265207#M81540</guid>
      <dc:creator>Matti_Kurkela</dc:creator>
      <dc:date>2013-11-11T14:41:24Z</dc:date>
    </item>
    <item>
      <title>Re: No clue how the NFS mount points are mounted</title>
      <link>https://community.hpe.com/t5/operating-system-linux/no-clue-how-the-nfs-mount-points-are-mounted/m-p/6265409#M81541</link>
      <description>&lt;P&gt;&amp;gt;"ln -s" is conceptually similar to the "cp" command:&lt;/P&gt;&lt;P&gt;&amp;gt;"ln -s &amp;lt;source&amp;gt; &amp;lt;destination&amp;gt;" makes a link to &amp;lt;source&amp;gt; appear at &amp;lt;destination&amp;gt;.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Hmm, I conceptualize it exactly the reverse.&amp;nbsp; I.e.:&lt;/P&gt;&lt;P&gt;ln -s &amp;lt;target of symlink&amp;gt; &amp;lt;symlink&amp;gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Though without the -s, for hardlinks, there is a well defined source.&lt;/P&gt;</description>
      <pubDate>Mon, 11 Nov 2013 17:48:44 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/no-clue-how-the-nfs-mount-points-are-mounted/m-p/6265409#M81541</guid>
      <dc:creator>Dennis Handly</dc:creator>
      <dc:date>2013-11-11T17:48:44Z</dc:date>
    </item>
    <item>
      <title>Re: No clue how the NFS mount points are mounted</title>
      <link>https://community.hpe.com/t5/operating-system-linux/no-clue-how-the-nfs-mount-points-are-mounted/m-p/6267137#M81542</link>
      <description>Hi Matti and Dennis,&lt;BR /&gt;&lt;BR /&gt;It does not look like symbolic link. Please find the output.&lt;BR /&gt;&lt;BR /&gt;# ll -d /opt/linuxdepots/&lt;BR /&gt;dr-xr-xr-x 58 root root 3072 Nov 12 15:12 /opt/linuxdepots/&lt;BR /&gt;&lt;BR /&gt;# ll -d /autofs/linuxdepots/&lt;BR /&gt;dr-xr-xr-x 58 root root 3072 Nov 12 15:12 /autofs/linuxdepots/&lt;BR /&gt;</description>
      <pubDate>Tue, 12 Nov 2013 22:30:59 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/no-clue-how-the-nfs-mount-points-are-mounted/m-p/6267137#M81542</guid>
      <dc:creator>Senthil_N</dc:creator>
      <dc:date>2013-11-12T22:30:59Z</dc:date>
    </item>
    <item>
      <title>Re: No clue how the NFS mount points are mounted</title>
      <link>https://community.hpe.com/t5/operating-system-linux/no-clue-how-the-nfs-mount-points-are-mounted/m-p/6271373#M81543</link>
      <description>&lt;P&gt;&amp;gt; # ll -d /opt/linuxdepots/&lt;BR /&gt;&amp;gt; dr-xr-xr-x 58 root root 3072 Nov 12 15:12 /opt/linuxdepots/&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Leave out the last slash from the command. When trying to check the information of a directory symlink, it can make a difference.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Please try this command EXACTLY:&lt;/P&gt;&lt;PRE&gt;# ll -d /opt/linuxdepots&lt;/PRE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Sat, 16 Nov 2013 22:12:41 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/no-clue-how-the-nfs-mount-points-are-mounted/m-p/6271373#M81543</guid>
      <dc:creator>Matti_Kurkela</dc:creator>
      <dc:date>2013-11-16T22:12:41Z</dc:date>
    </item>
    <item>
      <title>Re: No clue how the NFS mount points are mounted</title>
      <link>https://community.hpe.com/t5/operating-system-linux/no-clue-how-the-nfs-mount-points-are-mounted/m-p/6276427#M81544</link>
      <description>Hi Matti,&lt;BR /&gt;&lt;BR /&gt;Yes you are correct.&lt;BR /&gt;&lt;BR /&gt;Now it is showing the original directory.&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;Thanks a lot.</description>
      <pubDate>Wed, 20 Nov 2013 21:57:57 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/no-clue-how-the-nfs-mount-points-are-mounted/m-p/6276427#M81544</guid>
      <dc:creator>Senthil_N</dc:creator>
      <dc:date>2013-11-20T21:57:57Z</dc:date>
    </item>
  </channel>
</rss>

