<?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: Create new user with root privileges in Operating System - HP-UX</title>
    <link>https://community.hpe.com/t5/operating-system-hp-ux/create-new-user-with-root-privileges/m-p/4249856#M331359</link>
    <description>Alright, I will try to use sudo. Thanks everybody for your valuable advice :)</description>
    <pubDate>Mon, 11 Aug 2008 23:20:07 GMT</pubDate>
    <dc:creator>maxell_1</dc:creator>
    <dc:date>2008-08-11T23:20:07Z</dc:date>
    <item>
      <title>Create new user with root privileges</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/create-new-user-with-root-privileges/m-p/4249849#M331352</link>
      <description>Hi Guys,&lt;BR /&gt;&lt;BR /&gt;I do not wish to use the default root user due to security reasons and thus trying to create a new user with root privileges to do my admin tasks.&lt;BR /&gt;&lt;BR /&gt;What is the appropriate useradd command options to use in order to do this. The username I wish to use is "admin". &lt;BR /&gt;&lt;BR /&gt;Thanks</description>
      <pubDate>Mon, 11 Aug 2008 15:49:57 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/create-new-user-with-root-privileges/m-p/4249849#M331352</guid>
      <dc:creator>maxell_1</dc:creator>
      <dc:date>2008-08-11T15:49:57Z</dc:date>
    </item>
    <item>
      <title>Re: Create new user with root privileges</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/create-new-user-with-root-privileges/m-p/4249850#M331353</link>
      <description>Hi,&lt;BR /&gt;&lt;BR /&gt;There's really no such thing as "root privileges," but you can obtain what you are looking for mostly by assigning many secondary groups to your "admin" user.</description>
      <pubDate>Mon, 11 Aug 2008 15:54:15 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/create-new-user-with-root-privileges/m-p/4249850#M331353</guid>
      <dc:creator>candlejack</dc:creator>
      <dc:date>2008-08-11T15:54:15Z</dc:date>
    </item>
    <item>
      <title>Re: Create new user with root privileges</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/create-new-user-with-root-privileges/m-p/4249851#M331354</link>
      <description>Implement sudo.</description>
      <pubDate>Mon, 11 Aug 2008 15:57:29 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/create-new-user-with-root-privileges/m-p/4249851#M331354</guid>
      <dc:creator>Court Campbell</dc:creator>
      <dc:date>2008-08-11T15:57:29Z</dc:date>
    </item>
    <item>
      <title>Re: Create new user with root privileges</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/create-new-user-with-root-privileges/m-p/4249852#M331355</link>
      <description>&amp;gt;&amp;gt;I do not wish to use the default root user due to security reasons and thus trying to create a new user with root privileges to do my admin tasks&lt;BR /&gt;&lt;BR /&gt;If you create another user with root privelages it  negates any security concerns because that user can then do anything that root can do... &lt;BR /&gt;&lt;BR /&gt;If you wish to only give "some" privelages to another user then either sudo or restricted SAM is the way to go.&lt;BR /&gt;&lt;BR /&gt;Again, if you wish to create another username with complete "root" privs then you might as well just give them the root password.&lt;BR /&gt;&lt;BR /&gt;</description>
      <pubDate>Mon, 11 Aug 2008 15:58:58 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/create-new-user-with-root-privileges/m-p/4249852#M331355</guid>
      <dc:creator>Tim Nelson</dc:creator>
      <dc:date>2008-08-11T15:58:58Z</dc:date>
    </item>
    <item>
      <title>Re: Create new user with root privileges</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/create-new-user-with-root-privileges/m-p/4249853#M331356</link>
      <description>Not really totally becoming root actually.&lt;BR /&gt;&lt;BR /&gt;Rather my intention is to allow this new user to be able to perform tasks and execute commands pertaining to Network configuration and troubleshooting, DNS configuration, Backup as well as NFS.&lt;BR /&gt;&lt;BR /&gt;Do i really need to assign this new user a user ID of 0?</description>
      <pubDate>Mon, 11 Aug 2008 15:59:16 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/create-new-user-with-root-privileges/m-p/4249853#M331356</guid>
      <dc:creator>maxell_1</dc:creator>
      <dc:date>2008-08-11T15:59:16Z</dc:date>
    </item>
    <item>
      <title>Re: Create new user with root privileges</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/create-new-user-with-root-privileges/m-p/4249854#M331357</link>
      <description>Hi:&lt;BR /&gt;&lt;BR /&gt;The 'root' user is *any* user with a uid=0.&lt;BR /&gt;&lt;BR /&gt;Do *not* have multiple user accounts with uid=0.  Not only is this a great security risk, but it is dangerous for the following reason:&lt;BR /&gt;&lt;BR /&gt;# find / -user someuser -exec rm -rf {} \+&lt;BR /&gt;&lt;BR /&gt;...you *thought* you were cleaning up "someuser" but when its uid=0, you just removed 'root's files and directories!&lt;BR /&gt;&lt;BR /&gt;Using 'sudo' is the most appropriate, safe way to do what you want.&lt;BR /&gt;&lt;BR /&gt;Regards!&lt;BR /&gt;&lt;BR /&gt;...JRF...</description>
      <pubDate>Mon, 11 Aug 2008 16:10:22 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/create-new-user-with-root-privileges/m-p/4249854#M331357</guid>
      <dc:creator>James R. Ferguson</dc:creator>
      <dc:date>2008-08-11T16:10:22Z</dc:date>
    </item>
    <item>
      <title>Re: Create new user with root privileges</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/create-new-user-with-root-privileges/m-p/4249855#M331358</link>
      <description>No, install sudo.</description>
      <pubDate>Mon, 11 Aug 2008 16:11:44 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/create-new-user-with-root-privileges/m-p/4249855#M331358</guid>
      <dc:creator>Court Campbell</dc:creator>
      <dc:date>2008-08-11T16:11:44Z</dc:date>
    </item>
    <item>
      <title>Re: Create new user with root privileges</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/create-new-user-with-root-privileges/m-p/4249856#M331359</link>
      <description>Alright, I will try to use sudo. Thanks everybody for your valuable advice :)</description>
      <pubDate>Mon, 11 Aug 2008 23:20:07 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/create-new-user-with-root-privileges/m-p/4249856#M331359</guid>
      <dc:creator>maxell_1</dc:creator>
      <dc:date>2008-08-11T23:20:07Z</dc:date>
    </item>
    <item>
      <title>Re: Create new user with root privileges</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/create-new-user-with-root-privileges/m-p/4249857#M331360</link>
      <description>Shalom,&lt;BR /&gt;&lt;BR /&gt;sudo is available from &lt;A href="http://software.hp.com" target="_blank"&gt;http://software.hp.com&lt;/A&gt; as part of Internet Express.&lt;BR /&gt;&lt;BR /&gt;Search for it and you can choose to download sudo alone.&lt;BR /&gt;&lt;BR /&gt;This will include all dependencies which the version from the Porting and Archive Center make you do for yourself.&lt;BR /&gt;&lt;BR /&gt;sudo is the way to go.&lt;BR /&gt;&lt;BR /&gt;SEP</description>
      <pubDate>Tue, 12 Aug 2008 00:19:09 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/create-new-user-with-root-privileges/m-p/4249857#M331360</guid>
      <dc:creator>Steven E. Protter</dc:creator>
      <dc:date>2008-08-12T00:19:09Z</dc:date>
    </item>
    <item>
      <title>Re: Create new user with root privileges</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/create-new-user-with-root-privileges/m-p/4249858#M331361</link>
      <description>Hi Samuel sudo is the best practise you can monitor the activities if you are only want cetrain task then better to go restricted sam builder so user can only do the certain task&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;Regards&lt;BR /&gt;Safar</description>
      <pubDate>Tue, 12 Aug 2008 02:55:56 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/create-new-user-with-root-privileges/m-p/4249858#M331361</guid>
      <dc:creator>Safarali</dc:creator>
      <dc:date>2008-08-12T02:55:56Z</dc:date>
    </item>
    <item>
      <title>Re: Create new user with root privileges</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/create-new-user-with-root-privileges/m-p/4249859#M331362</link>
      <description>Good day smauel,&lt;BR /&gt;&lt;BR /&gt;HP-UX RBAC is an alternative to the traditional "all-or-nothing" root user model, which grants permissions to the root user for all operations, and denies permissions to non-root users for certain operations. HP-UX RBAC allows you to distribute administrative responsibilities by creating roles with appropriate authorizations and assigning them to non-root users and groups.&lt;BR /&gt;&lt;BR /&gt;&lt;A href="http://h20392.www2.hp.com/portal/swdepot/displayProductInfo.do?productNumber=A" target="_blank"&gt;http://h20392.www2.hp.com/portal/swdepot/displayProductInfo.do?productNumber=A&lt;/A&gt;&lt;BR /&gt;ccessControl&lt;BR /&gt;&lt;BR /&gt;&lt;A href="http://docs.hp.com/en/5992-2395/ch05s05.html" target="_blank"&gt;http://docs.hp.com/en/5992-2395/ch05s05.html&lt;/A&gt; &lt;BR /&gt;&lt;BR /&gt;Regards,&lt;BR /&gt;Asif Sharif</description>
      <pubDate>Tue, 12 Aug 2008 03:36:53 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/create-new-user-with-root-privileges/m-p/4249859#M331362</guid>
      <dc:creator>Asif Sharif</dc:creator>
      <dc:date>2008-08-12T03:36:53Z</dc:date>
    </item>
    <item>
      <title>Re: Create new user with root privileges</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/create-new-user-with-root-privileges/m-p/4249860#M331363</link>
      <description>I was going to mention rbac as HP doesn't support sudo, but rbac is a pain to setup and make changes to IMO. Sudo is a lot easier to implement.</description>
      <pubDate>Tue, 12 Aug 2008 16:45:08 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/create-new-user-with-root-privileges/m-p/4249860#M331363</guid>
      <dc:creator>Court Campbell</dc:creator>
      <dc:date>2008-08-12T16:45:08Z</dc:date>
    </item>
  </channel>
</rss>

