<?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: Fixing permissions in Operating System - HP-UX</title>
    <link>https://community.hpe.com/t5/operating-system-hp-ux/fixing-permissions/m-p/4845267#M393963</link>
    <description>Just a note, I think you should assign some points to the help you have been given above. You don't seem good at doing so.&lt;BR /&gt;&lt;BR /&gt;Cheers,&lt;BR /&gt;James</description>
    <pubDate>Tue, 16 Apr 2002 13:53:45 GMT</pubDate>
    <dc:creator>James Beamish-White</dc:creator>
    <dc:date>2002-04-16T13:53:45Z</dc:date>
    <item>
      <title>Fixing permissions</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/fixing-permissions/m-p/4845255#M393951</link>
      <description>We had a person that had root access do a &lt;BR /&gt;chown -R bogus:bogus *  from the Root directory on our N-Class server.. &lt;BR /&gt;&lt;BR /&gt;What a night. &lt;BR /&gt;&lt;BR /&gt;We restored from tape however directories and many files still show incorrect permissions.. Does anyone here have any pearls of wisdom short of handing out resumes that might aid us in the recover process? &lt;BR /&gt;&lt;BR /&gt;Constructive input is great appreciated.. &lt;BR /&gt;</description>
      <pubDate>Tue, 16 Apr 2002 13:07:50 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/fixing-permissions/m-p/4845255#M393951</guid>
      <dc:creator>rmueller58</dc:creator>
      <dc:date>2002-04-16T13:07:50Z</dc:date>
    </item>
    <item>
      <title>Re: Fixing permissions</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/fixing-permissions/m-p/4845256#M393952</link>
      <description>Probably the quickest way (about 2 hours), would be to insert your handy dandy ignite tape, assuming you have one that is current enough (restor frome tape afterward if not).  It is you system image, so everything will be restored as it was.&lt;BR /&gt;&lt;BR /&gt;Good luck&lt;BR /&gt;Chris</description>
      <pubDate>Tue, 16 Apr 2002 13:11:26 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/fixing-permissions/m-p/4845256#M393952</guid>
      <dc:creator>Christopher McCray_1</dc:creator>
      <dc:date>2002-04-16T13:11:26Z</dc:date>
    </item>
    <item>
      <title>Re: Fixing permissions</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/fixing-permissions/m-p/4845257#M393953</link>
      <description>The most critical files are going to be those in vg00 where it is essential that owner/group/setuid/setgid settings are correct. If you have a recent make_tape_recovery image, that would be your least evil and most reliable option. The stuff in the other VG's is generally much easier to reset manually.&lt;BR /&gt;&lt;BR /&gt;Plan B: If you have a similar known good system, you could do a find scan on the filesystems and create a file listing filename, owner, group, and permissions and use that to feed a script on your bad system.&lt;BR /&gt;</description>
      <pubDate>Tue, 16 Apr 2002 13:15:12 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/fixing-permissions/m-p/4845257#M393953</guid>
      <dc:creator>A. Clay Stephenson</dc:creator>
      <dc:date>2002-04-16T13:15:12Z</dc:date>
    </item>
    <item>
      <title>Re: Fixing permissions</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/fixing-permissions/m-p/4845258#M393954</link>
      <description>You restored from tape and yet had wrong permissions? Are you sure your restore worked correctly? It hsould restore appropriate permissions.&lt;BR /&gt;&lt;BR /&gt;Otherwise, you'll have to find a working system, do something like:&lt;BR /&gt;&lt;BR /&gt;find / -exec ls -ld {} \; | awk '{print $1,$9}' &amp;gt; permissionslist.txt&lt;BR /&gt;&lt;BR /&gt;to get all the file permissions, then write a script to parse this file on the broke machine and set permissions accordingly. Something using cut -c...&lt;BR /&gt;&lt;BR /&gt;A very slow way, but it should work...&lt;BR /&gt;&lt;BR /&gt;Cheers,&lt;BR /&gt;James</description>
      <pubDate>Tue, 16 Apr 2002 13:16:10 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/fixing-permissions/m-p/4845258#M393954</guid>
      <dc:creator>James Beamish-White</dc:creator>
      <dc:date>2002-04-16T13:16:10Z</dc:date>
    </item>
    <item>
      <title>Re: Fixing permissions</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/fixing-permissions/m-p/4845259#M393955</link>
      <description>Rex,&lt;BR /&gt;&lt;BR /&gt;What kind of backup did you restore from? Some backup's allow you to overwrite the existing ownerships with what is on tape. Another way is to create an INDEX of what is on tape and what the ownerships WERE, then write a script to "restore" those ownerships. Of course you did give that person that changed them a good caning?&lt;BR /&gt;&lt;BR /&gt;live free or die&lt;BR /&gt;harry</description>
      <pubDate>Tue, 16 Apr 2002 13:16:54 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/fixing-permissions/m-p/4845259#M393955</guid>
      <dc:creator>harry d brown jr</dc:creator>
      <dc:date>2002-04-16T13:16:54Z</dc:date>
    </item>
    <item>
      <title>Re: Fixing permissions</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/fixing-permissions/m-p/4845260#M393956</link>
      <description>Have you seen this previous answer for restoring system file permissions:&lt;BR /&gt;&lt;A href="http://forums.itrc.hp.com/cm/QuestionAnswer/1,,0xa7ef6c96588ad4118fef0090279cd0f9,00.html" target="_blank"&gt;http://forums.itrc.hp.com/cm/QuestionAnswer/1,,0xa7ef6c96588ad4118fef0090279cd0f9,00.html&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;Regards,&lt;BR /&gt;John</description>
      <pubDate>Tue, 16 Apr 2002 13:17:12 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/fixing-permissions/m-p/4845260#M393956</guid>
      <dc:creator>John Palmer</dc:creator>
      <dc:date>2002-04-16T13:17:12Z</dc:date>
    </item>
    <item>
      <title>Re: Fixing permissions</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/fixing-permissions/m-p/4845261#M393957</link>
      <description>Hi:&lt;BR /&gt;&lt;BR /&gt;Andreas Voss once wrote a script to fix this very kind of problem:&lt;BR /&gt;&lt;BR /&gt;&lt;A href="http://forums.itrc.hp.com/cm/QuestionAnswer/1,,0xa7ef6c96588ad4118fef0090279cd0f9,00.html" target="_blank"&gt;http://forums.itrc.hp.com/cm/QuestionAnswer/1,,0xa7ef6c96588ad4118fef0090279cd0f9,00.html&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;Otherwise, if you are on 11.x, have a look at the 'check_patches' utility (see the man pages).&lt;BR /&gt;&lt;BR /&gt;Regards!&lt;BR /&gt;&lt;BR /&gt;...JRF...</description>
      <pubDate>Tue, 16 Apr 2002 13:19:20 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/fixing-permissions/m-p/4845261#M393957</guid>
      <dc:creator>James R. Ferguson</dc:creator>
      <dc:date>2002-04-16T13:19:20Z</dc:date>
    </item>
    <item>
      <title>Re: Fixing permissions</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/fixing-permissions/m-p/4845262#M393958</link>
      <description>We restored using an frecover tape. &lt;BR /&gt;&lt;BR /&gt;We are able to get in a do things now but many subsystems ie printing etc, are still not working.. &lt;BR /&gt; &lt;BR /&gt;&lt;BR /&gt;</description>
      <pubDate>Tue, 16 Apr 2002 13:19:24 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/fixing-permissions/m-p/4845262#M393958</guid>
      <dc:creator>rmueller58</dc:creator>
      <dc:date>2002-04-16T13:19:24Z</dc:date>
    </item>
    <item>
      <title>Re: Fixing permissions</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/fixing-permissions/m-p/4845263#M393959</link>
      <description>See: &lt;BR /&gt;&lt;A href="http://forums.itrc.hp.com/cm/QuestionAnswer/1,,0xa7ef6c96588ad4118fef0090279cd0f9,00.html" target="_blank"&gt;http://forums.itrc.hp.com/cm/QuestionAnswer/1,,0xa7ef6c96588ad4118fef0090279cd0f9,00.html&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;</description>
      <pubDate>Tue, 16 Apr 2002 13:22:06 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/fixing-permissions/m-p/4845263#M393959</guid>
      <dc:creator>Carlos Fernandez Riera</dc:creator>
      <dc:date>2002-04-16T13:22:06Z</dc:date>
    </item>
    <item>
      <title>Re: Fixing permissions</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/fixing-permissions/m-p/4845264#M393960</link>
      <description>This is a good start:&lt;BR /&gt;&lt;BR /&gt;Great topic:&lt;BR /&gt;&lt;A href="http://forums.itrc.hp.com/cm/QuestionAnswer/1,,0x96b70bce6f33d6118fff0090279cd0f9,00.html" target="_blank"&gt;http://forums.itrc.hp.com/cm/QuestionAnswer/1,,0x96b70bce6f33d6118fff0090279cd0f9,00.html&lt;/A&gt;&lt;BR /&gt;&lt;A href="http://forums.itrc.hp.com/cm/QuestionAnswer/1,,0x316efd3f91d3d5118ff40090279cd0f9,00.html" target="_blank"&gt;http://forums.itrc.hp.com/cm/QuestionAnswer/1,,0x316efd3f91d3d5118ff40090279cd0f9,00.html&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;Great help in finding them:&lt;BR /&gt;&lt;A href="http://forums.itrc.hp.com/cm/QuestionAnswer/1,,0x1e6f84534efbd5118ff40090279cd0f9,00.html" target="_blank"&gt;http://forums.itrc.hp.com/cm/QuestionAnswer/1,,0x1e6f84534efbd5118ff40090279cd0f9,00.html&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;live free or die&lt;BR /&gt;harry&lt;BR /&gt;</description>
      <pubDate>Tue, 16 Apr 2002 13:29:44 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/fixing-permissions/m-p/4845264#M393960</guid>
      <dc:creator>harry d brown jr</dc:creator>
      <dc:date>2002-04-16T13:29:44Z</dc:date>
    </item>
    <item>
      <title>Re: Fixing permissions</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/fixing-permissions/m-p/4845265#M393961</link>
      <description>so the check_patches utility should be able to find the correct ones they what would be the best method to fix them? &lt;BR /&gt;&lt;BR /&gt;</description>
      <pubDate>Tue, 16 Apr 2002 13:37:23 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/fixing-permissions/m-p/4845265#M393961</guid>
      <dc:creator>rmueller58</dc:creator>
      <dc:date>2002-04-16T13:37:23Z</dc:date>
    </item>
    <item>
      <title>Re: Fixing permissions</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/fixing-permissions/m-p/4845266#M393962</link>
      <description>At least all  for all system files patches/executables.&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;For users files you must write a script that read you backup tape ( only listing), and run chown for each file....&lt;BR /&gt;&lt;BR /&gt;If you  use tar:&lt;BR /&gt;&lt;BR /&gt;tar tvf /dev/rmt/xxx &amp;gt; /tmp/list.1&lt;BR /&gt;and then awk'd list.1&lt;BR /&gt;&lt;BR /&gt;</description>
      <pubDate>Tue, 16 Apr 2002 13:43:17 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/fixing-permissions/m-p/4845266#M393962</guid>
      <dc:creator>Carlos Fernandez Riera</dc:creator>
      <dc:date>2002-04-16T13:43:17Z</dc:date>
    </item>
    <item>
      <title>Re: Fixing permissions</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/fixing-permissions/m-p/4845267#M393963</link>
      <description>Just a note, I think you should assign some points to the help you have been given above. You don't seem good at doing so.&lt;BR /&gt;&lt;BR /&gt;Cheers,&lt;BR /&gt;James</description>
      <pubDate>Tue, 16 Apr 2002 13:53:45 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/fixing-permissions/m-p/4845267#M393963</guid>
      <dc:creator>James Beamish-White</dc:creator>
      <dc:date>2002-04-16T13:53:45Z</dc:date>
    </item>
    <item>
      <title>Re: Fixing permissions</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/fixing-permissions/m-p/4845268#M393964</link>
      <description>another problem, &lt;BR /&gt;&lt;BR /&gt;is there a quick fix to reactivate accounts globally?</description>
      <pubDate>Tue, 16 Apr 2002 14:08:02 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/fixing-permissions/m-p/4845268#M393964</guid>
      <dc:creator>rmueller58</dc:creator>
      <dc:date>2002-04-16T14:08:02Z</dc:date>
    </item>
    <item>
      <title>Re: Fixing permissions</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/fixing-permissions/m-p/4845269#M393965</link>
      <description>Hi Rex:&lt;BR /&gt;&lt;BR /&gt;You need to open a new thread for a new question.&lt;BR /&gt;&lt;BR /&gt;Also, you need to score ALL responses with something, even if that's an "N/A", although based on virtually every response thus far in this thread you have received a great out-pouring of help.&lt;BR /&gt;&lt;BR /&gt;...JRF...</description>
      <pubDate>Tue, 16 Apr 2002 14:13:56 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/fixing-permissions/m-p/4845269#M393965</guid>
      <dc:creator>James R. Ferguson</dc:creator>
      <dc:date>2002-04-16T14:13:56Z</dc:date>
    </item>
    <item>
      <title>Re: Fixing permissions</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/fixing-permissions/m-p/4845270#M393966</link>
      <description>Closing old items - sorry for the delay.</description>
      <pubDate>Mon, 15 Aug 2005 08:28:30 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/fixing-permissions/m-p/4845270#M393966</guid>
      <dc:creator>rmueller58</dc:creator>
      <dc:date>2005-08-15T08:28:30Z</dc:date>
    </item>
  </channel>
</rss>

