<?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: softlink in Operating System - HP-UX</title>
    <link>https://community.hpe.com/t5/operating-system-hp-ux/softlink/m-p/3621274#M816183</link>
    <description>Rajesh; Could you elaborate your answer in detail ? &lt;BR /&gt;&lt;BR /&gt;Thanks,&lt;BR /&gt;Shiv</description>
    <pubDate>Thu, 08 Sep 2005 01:00:44 GMT</pubDate>
    <dc:creator>Shivkumar</dc:creator>
    <dc:date>2005-09-08T01:00:44Z</dc:date>
    <item>
      <title>softlink</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/softlink/m-p/3621270#M816179</link>
      <description>What are the best practices of creating soft links on hpux ?&lt;BR /&gt;&lt;BR /&gt;Thanks,&lt;BR /&gt;Shiv</description>
      <pubDate>Thu, 08 Sep 2005 00:27:07 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/softlink/m-p/3621270#M816179</guid>
      <dc:creator>Shivkumar</dc:creator>
      <dc:date>2005-09-08T00:27:07Z</dc:date>
    </item>
    <item>
      <title>Re: softlink</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/softlink/m-p/3621271#M816180</link>
      <description>Hi Shiv,&lt;BR /&gt;&lt;BR /&gt;IMHO a softlink is always a softlink, it's common unix, nothing special for hp-ux.&lt;BR /&gt;&lt;BR /&gt;T.</description>
      <pubDate>Thu, 08 Sep 2005 00:35:46 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/softlink/m-p/3621271#M816180</guid>
      <dc:creator>Torsten.</dc:creator>
      <dc:date>2005-09-08T00:35:46Z</dc:date>
    </item>
    <item>
      <title>Re: softlink</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/softlink/m-p/3621272#M816181</link>
      <description>Don't let soft links cross file systems.&lt;BR /&gt;&lt;BR /&gt;Otherwise they will become very difficult to manage and locate.</description>
      <pubDate>Thu, 08 Sep 2005 00:51:09 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/softlink/m-p/3621272#M816181</guid>
      <dc:creator>Vibhor Kumar Agarwal</dc:creator>
      <dc:date>2005-09-08T00:51:09Z</dc:date>
    </item>
    <item>
      <title>Re: softlink</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/softlink/m-p/3621273#M816182</link>
      <description>Hi,&lt;BR /&gt;&lt;BR /&gt;Best practice observe while creating soft/symbolic link is, &lt;BR /&gt;prior to link creation umask will be set to 022.&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;Regards,&lt;BR /&gt;Rajesh</description>
      <pubDate>Thu, 08 Sep 2005 00:56:58 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/softlink/m-p/3621273#M816182</guid>
      <dc:creator>Rajesh SB</dc:creator>
      <dc:date>2005-09-08T00:56:58Z</dc:date>
    </item>
    <item>
      <title>Re: softlink</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/softlink/m-p/3621274#M816183</link>
      <description>Rajesh; Could you elaborate your answer in detail ? &lt;BR /&gt;&lt;BR /&gt;Thanks,&lt;BR /&gt;Shiv</description>
      <pubDate>Thu, 08 Sep 2005 01:00:44 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/softlink/m-p/3621274#M816183</guid>
      <dc:creator>Shivkumar</dc:creator>
      <dc:date>2005-09-08T01:00:44Z</dc:date>
    </item>
    <item>
      <title>Re: softlink</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/softlink/m-p/3621275#M816184</link>
      <description>Setting umask to 022 is standard best practice.&lt;BR /&gt;In case Symbolic link creation with file/dir to avoid the access permission problem, umask will be set before.&lt;BR /&gt;&lt;BR /&gt;Example:&lt;BR /&gt;&lt;BR /&gt;# umask&lt;BR /&gt;02&lt;BR /&gt;# ll x.pl&lt;BR /&gt;-rwxr-xr-x   1 rajeshsb   tenoc          731 Apr  4  2003 x.pl&lt;BR /&gt;&lt;BR /&gt;# ln -s x.pl z.pl&lt;BR /&gt;ll x.pl y.pl&lt;BR /&gt;-rwxr-xr-x   1 rajeshsb   tenoc          731 Apr  4  2003 x.pl&lt;BR /&gt;lrwxrwxr-x   1 rajeshsb   tenoc            4 Sep  8 11:56 y.pl -&amp;gt; x.pl&lt;BR /&gt;&lt;BR /&gt;Effecting permission of link file after &lt;BR /&gt;  #umask 022&lt;BR /&gt;&lt;BR /&gt;# ln -s x.pl z.pl&lt;BR /&gt;# ll x.pl z.pl&lt;BR /&gt;-rwxr-xr-x   1 rajeshsb   tenoc          731 Apr  4  2003 x.pl&lt;BR /&gt;lrwxr-xr-x   1 rajeshsb   tenoc            4 Sep  8 11:56 z.pl -&amp;gt; x.pl&lt;BR /&gt;&lt;BR /&gt;It is not mandatory just a good practice.&lt;BR /&gt;&lt;BR /&gt;Cheers,&lt;BR /&gt;Rajesh &lt;BR /&gt;</description>
      <pubDate>Thu, 08 Sep 2005 01:13:28 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/softlink/m-p/3621275#M816184</guid>
      <dc:creator>Rajesh SB</dc:creator>
      <dc:date>2005-09-08T01:13:28Z</dc:date>
    </item>
  </channel>
</rss>

