<?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: oracle in Operating System - HP-UX</title>
    <link>https://community.hpe.com/t5/operating-system-hp-ux/oracle/m-p/3990329#M755458</link>
    <description>hi vilas,&lt;BR /&gt;&lt;BR /&gt;6777 is a 4-digit Octal notation method for representing Unix permissions.&lt;BR /&gt;&lt;BR /&gt;With 3-digit octal notation, each numeral represents a different component of the permission set: user class, group class, and "others" class respectively.&lt;BR /&gt;&lt;BR /&gt;Each of these digits is the sum of its component bits. As a result, specific bits add to the sum as it is represented by a numeral:&lt;BR /&gt;&lt;BR /&gt;The read bit adds 4 to its total, &lt;BR /&gt;The write bit adds 2 to its total, and &lt;BR /&gt;The execute bit adds 1 to its total. &lt;BR /&gt;&lt;BR /&gt;These values never produce ambiguous combinations; each sum represents a specific set of permissions.&lt;BR /&gt;&lt;BR /&gt;Below a few examples of the Symbolic notation in octal notation:&lt;BR /&gt;&lt;BR /&gt;"-rwxr-xr-x" would be represented as 755 in 3-digit octal. &lt;BR /&gt;"-rw-rw-r--" would be represented as 664 in 3-digit octal. &lt;BR /&gt;"-r-x------" would be represented as 500 in 3-digit octal. &lt;BR /&gt;&lt;BR /&gt;Coming back to 6777, this is a 4-digit form of octal notation. In this scheme, the standard 3-digits described above becomes the last 3 digits. The 1st digit represents the additional permissions. On some systems, this 1st digit cannot be omitted - the 1st digit is then 0. &lt;BR /&gt;e.g. 0777&lt;BR /&gt;&lt;BR /&gt;This 1st digit is also the sum of component bits:&lt;BR /&gt;&lt;BR /&gt;The setuid bit adds 4 to the total, &lt;BR /&gt;The setgid bit adds 2 to the total, and &lt;BR /&gt;The sticky bit adds 1 to the total. &lt;BR /&gt;&lt;BR /&gt;E.g. "-rwsr-Sr-x" would be represented as 6745 in 4-digit octal. &lt;BR /&gt;&lt;BR /&gt;hope this helps!&lt;BR /&gt;&lt;BR /&gt;kind regards&lt;BR /&gt;yogeeraj&lt;BR /&gt;</description>
    <pubDate>Sat, 28 Apr 2007 00:19:08 GMT</pubDate>
    <dc:creator>Yogeeraj_1</dc:creator>
    <dc:date>2007-04-28T00:19:08Z</dc:date>
    <item>
      <title>oracle</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/oracle/m-p/3990326#M755455</link>
      <description>&lt;!--!*#--&gt;how to check following mentioned permission in oracle&lt;BR /&gt;&lt;BR /&gt;check for the permissions of the /tmp and /var/tmp directories.&lt;BR /&gt;&lt;BR /&gt;They should be 6777.&lt;BR /&gt;</description>
      <pubDate>Fri, 27 Apr 2007 18:52:02 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/oracle/m-p/3990326#M755455</guid>
      <dc:creator>vilas_2</dc:creator>
      <dc:date>2007-04-27T18:52:02Z</dc:date>
    </item>
    <item>
      <title>Re: oracle</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/oracle/m-p/3990327#M755456</link>
      <description>Hi:&lt;BR /&gt;&lt;BR /&gt;Well, for 6777 your directory would look like:&lt;BR /&gt;&lt;BR /&gt;# ls -ld /tmp&lt;BR /&gt;drwsrwsrwx&lt;BR /&gt;&lt;BR /&gt;That is, the setuid bit is on (4000) as is the setgid bit (2000) and read/write/execute permissions for the owner, group and world (777).&lt;BR /&gt;&lt;BR /&gt;Normally the '/tmp' and '/var/tmp' directory permissions are set as 1777; that is with the sticky-bit on to allow only the owner of a file to delete it.&lt;BR /&gt;&lt;BR /&gt;Regards!&lt;BR /&gt;&lt;BR /&gt;...JRF...&lt;BR /&gt;Regards!&lt;BR /&gt;&lt;BR /&gt;...JRF...</description>
      <pubDate>Fri, 27 Apr 2007 19:04:55 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/oracle/m-p/3990327#M755456</guid>
      <dc:creator>James R. Ferguson</dc:creator>
      <dc:date>2007-04-27T19:04:55Z</dc:date>
    </item>
    <item>
      <title>Re: oracle</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/oracle/m-p/3990328#M755457</link>
      <description>cd /tmp&lt;BR /&gt;ls -la&lt;BR /&gt;Look for an 's' where the user 'x' bit is normally found (setuid bit, 4000) and another 's' in the group 'x' position (setgid bit, 2000).</description>
      <pubDate>Fri, 27 Apr 2007 19:22:16 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/oracle/m-p/3990328#M755457</guid>
      <dc:creator>A. Clay Stephenson</dc:creator>
      <dc:date>2007-04-27T19:22:16Z</dc:date>
    </item>
    <item>
      <title>Re: oracle</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/oracle/m-p/3990329#M755458</link>
      <description>hi vilas,&lt;BR /&gt;&lt;BR /&gt;6777 is a 4-digit Octal notation method for representing Unix permissions.&lt;BR /&gt;&lt;BR /&gt;With 3-digit octal notation, each numeral represents a different component of the permission set: user class, group class, and "others" class respectively.&lt;BR /&gt;&lt;BR /&gt;Each of these digits is the sum of its component bits. As a result, specific bits add to the sum as it is represented by a numeral:&lt;BR /&gt;&lt;BR /&gt;The read bit adds 4 to its total, &lt;BR /&gt;The write bit adds 2 to its total, and &lt;BR /&gt;The execute bit adds 1 to its total. &lt;BR /&gt;&lt;BR /&gt;These values never produce ambiguous combinations; each sum represents a specific set of permissions.&lt;BR /&gt;&lt;BR /&gt;Below a few examples of the Symbolic notation in octal notation:&lt;BR /&gt;&lt;BR /&gt;"-rwxr-xr-x" would be represented as 755 in 3-digit octal. &lt;BR /&gt;"-rw-rw-r--" would be represented as 664 in 3-digit octal. &lt;BR /&gt;"-r-x------" would be represented as 500 in 3-digit octal. &lt;BR /&gt;&lt;BR /&gt;Coming back to 6777, this is a 4-digit form of octal notation. In this scheme, the standard 3-digits described above becomes the last 3 digits. The 1st digit represents the additional permissions. On some systems, this 1st digit cannot be omitted - the 1st digit is then 0. &lt;BR /&gt;e.g. 0777&lt;BR /&gt;&lt;BR /&gt;This 1st digit is also the sum of component bits:&lt;BR /&gt;&lt;BR /&gt;The setuid bit adds 4 to the total, &lt;BR /&gt;The setgid bit adds 2 to the total, and &lt;BR /&gt;The sticky bit adds 1 to the total. &lt;BR /&gt;&lt;BR /&gt;E.g. "-rwsr-Sr-x" would be represented as 6745 in 4-digit octal. &lt;BR /&gt;&lt;BR /&gt;hope this helps!&lt;BR /&gt;&lt;BR /&gt;kind regards&lt;BR /&gt;yogeeraj&lt;BR /&gt;</description>
      <pubDate>Sat, 28 Apr 2007 00:19:08 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/oracle/m-p/3990329#M755458</guid>
      <dc:creator>Yogeeraj_1</dc:creator>
      <dc:date>2007-04-28T00:19:08Z</dc:date>
    </item>
  </channel>
</rss>

