<?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: file permission in Operating System - HP-UX</title>
    <link>https://community.hpe.com/t5/operating-system-hp-ux/file-permission/m-p/3383150#M198001</link>
    <description>sudo can be found at &lt;BR /&gt;&lt;A href="http://hpux.cs.utah.edu/hppd/hpux/Sysadmin/sudo-1.6.7p5/" target="_blank"&gt;http://hpux.cs.utah.edu/hppd/hpux/Sysadmin/sudo-1.6.7p5/&lt;/A&gt;</description>
    <pubDate>Tue, 21 Sep 2004 07:02:07 GMT</pubDate>
    <dc:creator>Cheryl Griffin</dc:creator>
    <dc:date>2004-09-21T07:02:07Z</dc:date>
    <item>
      <title>file permission</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/file-permission/m-p/3383147#M197998</link>
      <description>In our office , there are three system administrators know the root password, now I have a file/directoy that is very important and must not be removed , I want to prevent another two administrators will remove this file/directory ( intentionally or accidentally ) , can I add a personal password to it ( only I know this password ) so that they can't remove even use the root password ,  or could suggest other solution ? thx</description>
      <pubDate>Tue, 21 Sep 2004 06:57:14 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/file-permission/m-p/3383147#M197998</guid>
      <dc:creator>peterchu</dc:creator>
      <dc:date>2004-09-21T06:57:14Z</dc:date>
    </item>
    <item>
      <title>Re: file permission</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/file-permission/m-p/3383148#M197999</link>
      <description>Having root access is an all or nothing situation.&lt;BR /&gt;&lt;BR /&gt;You either can access everything by having root password, or nothing owned by root without the password.&lt;BR /&gt;&lt;BR /&gt;There is no second level of passwording.&lt;BR /&gt;&lt;BR /&gt;I'd suggest changing root password and giving them restricted sam access or using sudo.</description>
      <pubDate>Tue, 21 Sep 2004 07:00:06 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/file-permission/m-p/3383148#M197999</guid>
      <dc:creator>Cheryl Griffin</dc:creator>
      <dc:date>2004-09-21T07:00:06Z</dc:date>
    </item>
    <item>
      <title>Re: file permission</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/file-permission/m-p/3383149#M198000</link>
      <description>Noway friend.&lt;BR /&gt;&lt;BR /&gt;Once you have root password means you have everything. No one can stop you deleting anything.&lt;BR /&gt;&lt;BR /&gt;Sunil</description>
      <pubDate>Tue, 21 Sep 2004 07:02:03 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/file-permission/m-p/3383149#M198000</guid>
      <dc:creator>Sunil Sharma_1</dc:creator>
      <dc:date>2004-09-21T07:02:03Z</dc:date>
    </item>
    <item>
      <title>Re: file permission</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/file-permission/m-p/3383150#M198001</link>
      <description>sudo can be found at &lt;BR /&gt;&lt;A href="http://hpux.cs.utah.edu/hppd/hpux/Sysadmin/sudo-1.6.7p5/" target="_blank"&gt;http://hpux.cs.utah.edu/hppd/hpux/Sysadmin/sudo-1.6.7p5/&lt;/A&gt;</description>
      <pubDate>Tue, 21 Sep 2004 07:02:07 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/file-permission/m-p/3383150#M198001</guid>
      <dc:creator>Cheryl Griffin</dc:creator>
      <dc:date>2004-09-21T07:02:07Z</dc:date>
    </item>
    <item>
      <title>Re: file permission</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/file-permission/m-p/3383151#M198002</link>
      <description>Does this file ever change?&lt;BR /&gt;&lt;BR /&gt;If not, copy it to tape and keep the tape in a place where it is instantly accessible to you but no one else. Alternatively, ftp the file to your PC and keep it there in case it is ever needed (ftping the file back is probably going to be quicker than restoring it from tape).&lt;BR /&gt;&lt;BR /&gt;Mark Syder (like the drink but spelt different)</description>
      <pubDate>Tue, 21 Sep 2004 07:13:38 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/file-permission/m-p/3383151#M198002</guid>
      <dc:creator>MarkSyder</dc:creator>
      <dc:date>2004-09-21T07:13:38Z</dc:date>
    </item>
    <item>
      <title>Re: file permission</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/file-permission/m-p/3383152#M198003</link>
      <description>No way to do that. Root can do anything. There is no use in setting any permissions on this file. If your concern is, other should not be able to read this file, then&lt;BR /&gt;you can encrypt the file.&lt;BR /&gt;&lt;BR /&gt;crypt &amp;lt; input_file &amp;gt; out_put.crypt&lt;BR /&gt;This would ask for a a key. Then remove the input_file. Also tremember the key that you used.&lt;BR /&gt;&lt;BR /&gt;To decrypt the file&lt;BR /&gt;&lt;BR /&gt;crypt &amp;lt; out_put.crypt &amp;gt; file&lt;BR /&gt;this would ask for key and then decrypt.&lt;BR /&gt;&lt;BR /&gt;Anil</description>
      <pubDate>Tue, 21 Sep 2004 07:14:44 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/file-permission/m-p/3383152#M198003</guid>
      <dc:creator>RAC_1</dc:creator>
      <dc:date>2004-09-21T07:14:44Z</dc:date>
    </item>
    <item>
      <title>Re: file permission</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/file-permission/m-p/3383153#M198004</link>
      <description>We can not do with separate passwd on unix when two others are root.&lt;BR /&gt;&lt;BR /&gt;Eventhogth you encrypt / configure sudo, other's can intentionally remove the encrypt file directly / change the configuration there.&lt;BR /&gt;&lt;BR /&gt;we can avoid removing files accidentally by creating special directory on some known locations and it must be known by other two.&lt;BR /&gt;( 600 root root /spl-dir/ )&lt;BR /&gt;&lt;BR /&gt;And other way is to take backup of the special file / directory or making nfs setup to your own machine ( which can not be accessible by other two there ).</description>
      <pubDate>Tue, 21 Sep 2004 08:18:38 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/file-permission/m-p/3383153#M198004</guid>
      <dc:creator>Muthukumar_5</dc:creator>
      <dc:date>2004-09-21T08:18:38Z</dc:date>
    </item>
  </channel>
</rss>

