Question # 1
Which two statements are correct regarding IPS repositories?
| A. Remote client access is governed by svc:/application/pkg/server.
| B. Every new repository contains the solaris publisher by default.
| C. One repository can replicate the contents of another.
| D. The pkg.depotd process makes all local repositories remotely available.
| E. A repository uses separate protocols for pkg and browser clients.
|
A. Remote client access is governed by svc:/application/pkg/server.
D. The pkg.depotd process makes all local repositories remotely available.
Explanation: A: The pkd.depotd service is managed by SMF under the service identifier svc:/application/pkg/server.
D: * Example: Configure pkg.depotd to provide remote access. pkg.depotd provides an HTTP interface to a pkg repo. Here we are going to make the repo server listen on port 10000, and use the repo dir we created as its default. # svcadm disable pkg/server # svccfg -s pkg/server setprop pkg/inst_root = /data/myrepo # svccfg -s pkg/server setprop pkg/port = 10000 # svcadm refresh pkg/server # svcadm enable pkg/server * pkg.depotd is the depot server for the image packaging system. It provides network access to the data contained within a package repository. Clients that do not support direct access to a repository through the file system, or for which network access is the only available or preferred method of transport, typically use the package depot.
Question # 2
The http://pkg.oracle.com/solaris/release publisher is available on this server. A new repository has been created in the /export/sllReaseRepo file system and you want to add the gzip package to this repository. Which is a valid method for adding the gzip package to the /export/sllReleaseRepo repository?
| A. pkgrecv –s http://pkg.oracle.com/solaris/release –d /export/sllReleaseRepo gzip
| B. pkgrecv –s /export/sllReleaseRepo –d http://pkg.oracle.com/solaris/release gzip
| C. pkgrecv –s pkgrecv –d /export/sllReleaseRepo gzip
| D. rsync –aP http://pkg.oracle.com/solaris/release –d /export/sllReleaseRepo gzip
|
A. pkgrecv –s http://pkg.oracle.com/solaris/release –d /export/sllReleaseRepo gzip
Explanation: * pkgrecv - Image Packaging System content retrieval utility pkgrecv allows the user to retrieve packages from a pkg repository or package archive. pkgrecv can also optionally republish the retrieved packages to a different package repository or archive them.
-s src_repo_uri A URI representing the location of a pkg repository or package archive from which to receive package data. -d path_or_uri The file system path or URI of the target to republish packages to. If -a is specified, the target is a new package archive that cannot already exist. Otherwise, the target must be a package repository that already exists. New repositories can be created using pkgrepo(1).
Question # 3
The following information describes the current dump configuration of your server:

Assume that the following command lines have been run on a system: (root) # coreadm –g $HOME/var/core/%m.core.%f.%t (non-root) $ coreadm –p core.%f.%p Identify the result of a subsequent process crash. | A. A copy of a core file will appear in /var/core.
| B. A copy of a core file will appear in the process' current working directory.
| C. The root copy will include the taskid of the process.
| D. The nonroot copy will include the day of the process crash.
| E. The global format will override the per-process format.
|
B. A copy of a core file will appear in the process' current working directory.
Explanation: * -p pattern Set the per-process core file name pattern to pattern for each of the specified process-IDs. The pattern can contain any of the special % variables * Variables: %f, executable file name, up to a maximum of MAXCOMLEN characters %p, process-ID * Example. The core file name pattern:
/var/core/core.%f.%p would result, for command foo with process-ID 1234, in the core file name: /var/core/core.foo.1234 * Example. Setting the core file name pattern When executed from a user's $HOME/.profile or $HOME/.login, the following command sets the core file name pattern for all processes run during the login session: example$ coreadm -p core.%f.%p $$ $$ is the process-id of the currently running shell. The per-process core file name pattern is inherited by all child processes.
Note (see synopsis 2 below). * The coreadm command is used to specify the name and location of core files produced by abnormally-terminating processes. SYNOPSIS coreadm [-g pattern] [-i pattern] [-d option...] [-e option...] coreadm [-p pattern] [pid...] coreadm –u The first form shown in the synopsis can be executed only by the super-user and is used to configure system-wide core file options, including a global core file name pattern and a perprocess core file name pattern for the init(1M) process. The second form can be executed by non-privileged users and is used to specify the file name pattern to be used by the operating system when generating a per-process core file.
Question # 4
What does the following command change? pkg set-publisher –G ‘*’ –g http://server1.domain.com solaris | A. It updates all Solaris publishers and deletes the server1.domain.com origin. | B. It deletes all Solaris publishers and adds the server1.domain.com origin.
| C. It adds server1.domain.com to the Solaris publisher list.
| D. It sets the origin for the Solaris publisher to server1.domain.com.
| E. It adds the server1.domain.com repository as an origin for the solaris publisher. |
B. It deletes all Solaris publishers and adds the server1.domain.com origin.
Question # 5
You are tasked to reconfigure zone1 to use virtual interface vnic1 as its network interface. Which two steps must be included?
| A. Disable IP Filter and IPsec.
| B. Configure the NWAM NCP to Automatic.
| C. Change the shared IP zone to an exclusive IP zone.
| D. Reboot zone1 so that changes made with zonecfg take effect.
| E. From the global zone, set the IP address of vnic1 and configure the default route.
|
C. Change the shared IP zone to an exclusive IP zone.
D. Reboot zone1 so that changes made with zonecfg take effect.
Explanation: * How to Reconfigure a Zone to Use a VNIC 1. Become an administrator. 2. Create the VNIC. (C) 3. Change the zone's IP type from shared to exclusive. 4.Change the zone's interface to use a VNIC. 5. Verify and commit the changes you have implemented and then exit the zone. (D) 6. Reboot the zone. 7. Log in to the zone. 8. Configure the VNIC with a valid IP address. * Example. Reconfiguring a Zone Configuration to Use a VNIC In this example, zone2 already exists as a shared zone. The zone also uses the primary interface of the system rather than a virtual link. You need to modify zone2 to use vnic2. To use vnic2, zone2's IP type must first be changed to exclusive. Note that some of the output is truncated to focus on the relevant information that relates to virtual networks. global# dladm create-vnic -l net0 vnic2 global# zonecfg -z zone2 (C) zonecfg:zone1> set ip-type=exclusive zonecfg:zone1> remove net physical=net0 zonecfg:zone1> add net zonecfg:zone1:net> set physical=vnic2 zonecfg:zone1:net> end zonecfg:zone1> verify zonecfg:zone1> commit zonecfg:zone1> exit (D) global# zoneadm -z zone2 reboot global# zlogin zone2 zone2# ipadm create-ip vnic2 zone2# ipadm create-addr -a 192.168.3.85/24 vnic2 ipadm: vnic2/v4 zone2# exit global# vi /etc/hosts # 1 localhost 127.0.0.1 localhost 192.168.3.70 loghost #For net0 192.168.3.80 zone1 #using vnic1 192.168.3.85 zone2 #using vnic2
Question # 6
You administer an Oracle Solaris 11 server with multiple zones. You want to configure it so that all nonprivileged users in the global zone see only their own process. What must you do to make the change?
| A. Modify the LIMITPRIV variable in the /etc/usr/user_attr file.
| B. Modify the basic privilege ser in the /etc/security/policy.conf file.
| C. Configure the priv= attribute in the /etc/security/prof_attr.d/core-os file.
| D. Configure privileges for the ps command in the /etc/security/exec_attrd/core-os file.
|
B. Modify the basic privilege ser in the /etc/security/policy.conf file.
Explanation: * policy.conf policy.conf– configuration file for security policy. The policy.conf file provides the security policy configuration for user-level attributes. * Example: Modifying Every User's Basic Privilege Set
In this example, the security administrator of a large Sun Ray installation does not want regular users to view the processes of other Sun Ray users. Therefore, on every system that is configured with Trusted Extensions, the root role removes proc_info from the basic set of privileges. The PRIV_DEFAULT setting in the /etc/policy.conf file is uncommented and modified as follows: PRIV_DEFAULT=basic,!proc_info
Question # 7

| A. No default route is configured. | B. in.mpathd cannot identify failed interfaces.
| C. There are no active interfaces in the group.
| D. There are three standby interfaces in the group.
| E. The property transitive-probing is false. |
E. The property transitive-probing is false.
Explanation: Disabled in the MODE column means that all probe-based failure detection is disabled. You must enable transitive probing to use this failure detection method that does not require test addresses. Note: * ipmpstat - display IPMP subsystem status The ipmpstat command concisely displays information about the IPMP subsystem. The -t option identifies the probe targets that are associated with each IP interface in an IPMP group. * Target mode displays IPMP probe target information. The following output fields are supported: / INTERFACE The IP interface name associated with the information. / MODE The probe target discovery mode:
routes Probe targets found by means of the routing table. multicast Probe targets found by means of multicast ICMP probes. disabled All probe-based failure detection is disabled. transitive Failure detection is by means of transitive probing, where the health of the IP interface is determined by probing other active interfaces in the group. / TESTADDR The source address used in outgoing probes. Active interfaces that are being used for data traffic, as well as interfaces that have been explicitly configured with NOFAILOVER test addresses, will have the hostname (or IP address) that is used for sending and receiving the ICMP probes. All other interfaces in the group will display the name of the interface from which the probes are sent. Note that if an active IP interface is configured with both IPv4 and IPv6 test addresses, probe target information will be displayed separately for each test address. / TARGETS A space-separated list of probe target hostnames (or IP addresses) for ICMP probes, or target interfaces for transitive probes. The IP targets will be listed in firing order, and, if no probe targets could be found, this field will be empty.
Oracle 1z0-822 Exam Dumps
5 out of 5
Pass Your Oracle Solaris 11 Advanced System Administration Exam in First Attempt With 1z0-822 Exam Dumps. Real Oracle Solaris Exam Questions As in Actual Exam!
— 140 Questions With Valid Answers
— Updation Date : 15-Apr-2025
— Free 1z0-822 Updates for 90 Days
— 98% Oracle Solaris 11 Advanced System Administration Exam Passing Rate
PDF Only Price 49.99$
19.99$
Buy PDF
Speciality
Additional Information
Testimonials
Related Exams
- Number 1 Oracle Oracle Solaris study material online
- Regular 1z0-822 dumps updates for free.
- Oracle Solaris 11 Advanced System Administration Practice exam questions with their answers and explaination.
- Our commitment to your success continues through your exam with 24/7 support.
- Free 1z0-822 exam dumps updates for 90 days
- 97% more cost effective than traditional training
- Oracle Solaris 11 Advanced System Administration Practice test to boost your knowledge
- 100% correct Oracle Solaris questions answers compiled by senior IT professionals
Oracle 1z0-822 Braindumps
Realbraindumps.com is providing Oracle Solaris 1z0-822 braindumps which are accurate and of high-quality verified by the team of experts. The Oracle 1z0-822 dumps are comprised of Oracle Solaris 11 Advanced System Administration questions answers available in printable PDF files and online practice test formats. Our best recommended and an economical package is Oracle Solaris PDF file + test engine discount package along with 3 months free updates of 1z0-822 exam questions. We have compiled Oracle Solaris exam dumps question answers pdf file for you so that you can easily prepare for your exam. Our Oracle braindumps will help you in exam. Obtaining valuable professional Oracle Oracle Solaris certifications with 1z0-822 exam questions answers will always be beneficial to IT professionals by enhancing their knowledge and boosting their career.
Yes, really its not as tougher as before. Websites like Realbraindumps.com are playing a significant role to make this possible in this competitive world to pass exams with help of Oracle Solaris 1z0-822 dumps questions. We are here to encourage your ambition and helping you in all possible ways. Our excellent and incomparable Oracle Oracle Solaris 11 Advanced System Administration exam questions answers study material will help you to get through your certification 1z0-822 exam braindumps in the first attempt.
Pass Exam With Oracle Oracle Solaris Dumps. We at Realbraindumps are committed to provide you Oracle Solaris 11 Advanced System Administration braindumps questions answers online. We recommend you to prepare from our study material and boost your knowledge. You can also get discount on our Oracle 1z0-822 dumps. Just talk with our support representatives and ask for special discount on Oracle Solaris exam braindumps. We have latest 1z0-822 exam dumps having all Oracle Oracle Solaris 11 Advanced System Administration dumps questions written to the highest standards of technical accuracy and can be instantly downloaded and accessed by the candidates when once purchased. Practicing Online Oracle Solaris 1z0-822 braindumps will help you to get wholly prepared and familiar with the real exam condition. Free Oracle Solaris exam braindumps demos are available for your satisfaction before purchase order.
Send us mail if you want to check Oracle 1z0-822 Oracle Solaris 11 Advanced System Administration DEMO before your purchase and our support team will send you in email.
If you don't find your dumps here then you can request what you need and we shall provide it to you.
Bulk Packages
$50
- Get 3 Exams PDF
- Get $33 Discount
- Mention Exam Codes in Payment Description.
Buy 3 Exams PDF
$70
- Get 5 Exams PDF
- Get $65 Discount
- Mention Exam Codes in Payment Description.
Buy 5 Exams PDF
$100
- Get 5 Exams PDF + Test Engine
- Get $105 Discount
- Mention Exam Codes in Payment Description.
Buy 5 Exams PDF + Engine
 Jessica Doe
Oracle Solaris
We are providing Oracle 1z0-822 Braindumps with practice exam question answers. These will help you to prepare your Oracle Solaris 11 Advanced System Administration exam. Buy Oracle Solaris 1z0-822 dumps and boost your knowledge.
|