Examine the following command sequence:
Which three are true?
A.
User jill, a member of the group other, can do a long listing (is �1) of user jack�s home directory.
B.
User oracle, not a member of the group other, cannot execute the shell script.
C.
User jill, a member of the group other, can make a copy of testfile in dira.
D.
User jill, a member of the group other, can edit the data content of testfile.
E.
User jill, a member of the group other, cannot delete testfile.
F.
User oracle, not a member of the group other, can do a short listing (1s) of dirb.
A,B & E is the correct
its a, b ,c.
Pls be noted that “other” is group and other is another other.
So B is wrong, oracle user’s privilege is r-x. has the execute privilege.
D is only read privilege
A.C.E is correct
Yes correct answers are A,C and E
whoami; id
jill
uid=101(jill) gid=10(staff)
A)
ls -l /export/home/iiteam/
total 3
drwxr-xr-x 3 iiteam staff 3 Nov 25 19:31 dira
C)
ls -lR /export/home/iiteam/
/export/home/iiteam/:
total 3
drwxr-xr-x 3 iiteam staff 3 Nov 25 19:31 dira
/export/home/iiteam/dira:
total 3
drwxr-xr-x 2 iiteam staff 4 Nov 25 19:33 dirb
/export/home/iiteam/dira/dirb:
total 5
-rwxr-xr-x 1 iiteam staff 646 Nov 25 19:33 scriptfile
-rw-r–rw- 1 iiteam staff 1 Nov 25 19:30 testfiel
-bash-4.1$ cp /export/home/iiteam/dira/dirb/testfiel /tmp,/b>
-bash-4.1$ ls -la /tmp/,/b>
total 45
drwxrwxrwt 3 root sys 254 Nov 25 19:39 .
drwxr-xr-x 26 root root 29 Nov 25 14:42 ..
drwx—— 2 root root 117 Nov 25 17:51 hsperfdata_root
-rw-r–r– 1 jill staff 1 Nov 25 19:39 testfiel
E)
-bash-4.1$ rm /export/home/iiteam/dira/dirb/testfiel
rm: /export/home/iiteam/dira/dirb/testfiel: override protection 646 (yes/no)? ye s
rm: /export/home/iiteam/dira/dirb/testfiel not removed: Permission denied
Sorry A,E and probably B
C)
-bash-4.1$ whoami;id
jill
uid=101(jill) gid=10(staff)
-bash-4.1$ cp /export/home/iiteam/dira/dirb/testfiel /export/home/iiteam/dira/
cp: cannot create /export/home/iiteam/dira//testfiel: Permission denied
F)
-bash-4.1$ whoami; id
oracle
uid=102(oracle) gid=102(develop)
-bash-4.1$ ls /export/home/iiteam/dira
/export/home/iiteam/dira: Permission denied
The correct sequence of command in the question probably was the following:
cd
ls -ld .
ls -ld dira
ls -lR dira
But the permissions of dirb is not shown in the question. If it’s created by default values, then the correct answers are following:
A,B,E
Answer C means, that user jill can copy the file testfile from dirb to dira, which is not true. D and F also are false answers. This can be tested.
A,B,E
A C E
[x] A) Jacks home has rxwr-xr–
So the group “other” is able to view his homedir.
Jill is able to make ls -l on jacks home
B) Of course the User Oracle is able to execute the scriptfile, even he’s no member of the group “other”. so he IS other. but it takes no matter, if he is in the group other, or “a” other — group and others have r-x on the file.
C) The group “other” isn’t allowed to write into “dira”, so isnt able to copy something from /jack/dira/dirb to /jack/dira/
D) The group “other” isn’t allowd to write to the testfile (r–)
[x]E) because of D) jill isnt allowed to delete the testfile: group “other” has r–
[x]F) must be the last answer – we can’t see the rights on “dirb”. normaly umask is “0022” -> drwxr-xr-x , like dira.
A B & E
A and E correct
B, C, and D false
F: we can’t see the rights on dirb—–> must be the last answer (i think dirb has the same rights with dira so F correct)
Cleared 1Z0-821 exam with a good score of 90% (the passing line is 64% now)!
Got 70 questions in total, and questions were on:
1. Installing Oracle Solaris 11 using an Interactive Installer
2. Administering Services
3. Setting Up and Administering Data Storage
4. Administering Oracle Solaris Zones
5. Setting Up and Administering User Accounts
6. Controlling Access to Systems and Files
(New) 7. Managing the SYSLOG facilityManaging the CRON facility
(New) 8. Managing the SYSLOG facility
Pay close attention to the up 7 & 8 topics when preparing for the 1Z0-821 exam. Questions on those two topics are not available on this site.
And, you can refer to the most valid 1Z0-821 dumps (2017 version) here:
http://www.oraclebraindump.com/?s=1Z0-821
(Those questions are part of PassLeader 1Z0-821 dumps, recommend to get its full version 1Z0-821 dumps with VCE and PDF.)
Good Luck!
BTW, part of PassLeader 1Z0-822 dumps are also available here for your reference:
http://www.oraclebraindump.com/?s=1Z0-822
Best Regards!!!
A,E,F tested