<?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 frecover in Operating System - HP-UX</title>
    <link>https://community.hpe.com/t5/operating-system-hp-ux/frecover/m-p/2479136#M17939</link>
    <description>When performing a frecover as a non-root user the setuid "s" is being changed to an execute permission "x".  Is there anyway around this without logging in as root?</description>
    <pubDate>Thu, 04 Jan 2001 18:51:33 GMT</pubDate>
    <dc:creator>Jeffrey S. Bromley</dc:creator>
    <dc:date>2001-01-04T18:51:33Z</dc:date>
    <item>
      <title>frecover</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/frecover/m-p/2479136#M17939</link>
      <description>When performing a frecover as a non-root user the setuid "s" is being changed to an execute permission "x".  Is there anyway around this without logging in as root?</description>
      <pubDate>Thu, 04 Jan 2001 18:51:33 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/frecover/m-p/2479136#M17939</guid>
      <dc:creator>Jeffrey S. Bromley</dc:creator>
      <dc:date>2001-01-04T18:51:33Z</dc:date>
    </item>
    <item>
      <title>Re: frecover</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/frecover/m-p/2479137#M17940</link>
      <description>Jeffrey:&lt;BR /&gt;&lt;BR /&gt;According to 'frecover's man pages, "Use of frecover does not require special privileges. However, if a user does not have access permission to a given file, the file is not recovered."  Are you sure that the file in question is truly being recovered, or are you being mislead by the presence of a different version on disk?  What options are you using with the 'frecover'?&lt;BR /&gt;&lt;BR /&gt;...JRF...</description>
      <pubDate>Thu, 04 Jan 2001 19:05:31 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/frecover/m-p/2479137#M17940</guid>
      <dc:creator>James R. Ferguson</dc:creator>
      <dc:date>2001-01-04T19:05:31Z</dc:date>
    </item>
    <item>
      <title>Re: frecover</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/frecover/m-p/2479138#M17941</link>
      <description>I've tried several options with both commands, but the results are always the same.  The files are definitely be backed up, with the correct permissions, it is during the frecover that the permission is changed.&lt;BR /&gt;&lt;BR /&gt;fbackup -f /dev/rmt/0m -i &lt;PATH&gt; ( I've also tried it using a graph file.)&lt;BR /&gt;&lt;BR /&gt;frecover -f /dev/rmt/0m -xNv (Just to make sure the files are there.)&lt;BR /&gt;&lt;BR /&gt;frecover -f /dev/rmt/0m -rv (To restore the files)&lt;/PATH&gt;</description>
      <pubDate>Fri, 05 Jan 2001 12:20:31 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/frecover/m-p/2479138#M17941</guid>
      <dc:creator>Jeffrey S. Bromley</dc:creator>
      <dc:date>2001-01-05T12:20:31Z</dc:date>
    </item>
    <item>
      <title>Re: frecover</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/frecover/m-p/2479139#M17942</link>
      <description>I agree with James, try listing the backup files into a file, then vi the file to find out the exact state. &lt;BR /&gt;Use: frecover -f /dev/rmt/0m -I /tmp/filename&lt;BR /&gt;The vi /tmp/filename to check the files.</description>
      <pubDate>Fri, 05 Jan 2001 12:30:48 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/frecover/m-p/2479139#M17942</guid>
      <dc:creator>CHRIS_ANORUO</dc:creator>
      <dc:date>2001-01-05T12:30:48Z</dc:date>
    </item>
    <item>
      <title>Re: frecover</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/frecover/m-p/2479140#M17943</link>
      <description>Hi,&lt;BR /&gt;&lt;BR /&gt;I also cannot get frecover to leave the setuid or setgid bits set unless I am root.  I imagine that this is a security "feature" that frecover has.&lt;BR /&gt;&lt;BR /&gt;One thing that can be done is to set up sam so that a non-priviledged user can use backup and recovery.  Sam does preserve setuid and setgid bits even when a non-root user uses it.&lt;BR /&gt;&lt;BR /&gt;--Bruce</description>
      <pubDate>Fri, 05 Jan 2001 14:22:14 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/frecover/m-p/2479140#M17943</guid>
      <dc:creator>Bruce Regittko_1</dc:creator>
      <dc:date>2001-01-05T14:22:14Z</dc:date>
    </item>
    <item>
      <title>Re: frecover</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/frecover/m-p/2479141#M17944</link>
      <description>Jeffry,&lt;BR /&gt;Pls try this:&lt;BR /&gt;1&amp;gt; Write a simple shell script which will intake the directory or files  to be restored and the drive name. Then the script should call "frecover". &lt;BR /&gt;2&amp;gt; Call this script from a C program. Compile the code and make the executable setuid to root and executable by "world".&lt;BR /&gt;3&amp;gt; Now you can give this executable to any lay user for his restorations or you yourself can use it, withoput taking root login. &lt;BR /&gt;4&amp;gt; As the executable is setuid to root, the issue of retention of permissions will be resolved easily.&lt;BR /&gt;5&amp;gt; I am suggesting to write a C program, because, "setuid" shell scripts may not give desired results.&lt;BR /&gt;&lt;BR /&gt;Hope this helps....&lt;BR /&gt;Suhas.</description>
      <pubDate>Sat, 06 Jan 2001 14:07:46 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/frecover/m-p/2479141#M17944</guid>
      <dc:creator>Suhas_2</dc:creator>
      <dc:date>2001-01-06T14:07:46Z</dc:date>
    </item>
  </channel>
</rss>

