Question # 1 The zpool configuration on serverA is: pool 1 c3t2d0 c3t3d0 pool 2 c3t4d0 c3t5d0 The zpool configuration on servetB is: pool1
mirror-0 c3t2d0 c3t3d0 mirror-1 c3t4d0 c3t5d0 Which option will modify the configuration on serverA to match serverB?
A. zpool destroy pool2zpool attach pool1 c3t4d0 c3t5d0
B. zpool destroy pool2zpool attach pool1 c3t2d0 c3t2d0 c3t4d0 c3t5d0
C. zpool destroy pool2zpool add pool1 c3t4d0 c3t5d0
D. zpool destroy pool2zpool mirror pool1 pool2
E. zpool destroy pool2zpool attach pool1 c3t2d0 attach pool1 c3t3d0zpool attach pool1 c3t4d0 attach pool1 c3t5d0
Click for Answer
Answer Description Explanation: Example;root@solaris:~# zpool create pool1 mirror c8t0d0 c8t1d0 mirror c8t3d0 c8t4d0 root@solaris:~# zpool status pool: pool1 state: ONLINE scan: none requested config: NAME STATE READ WRITE CKSUM pool1 ONLINE 0 0 0 mirror-0 ONLINE 0 0 0 c8t0d0 ONLINE 0 0 0 c8t1d0 ONLINE 0 0 0 mirror-1 ONLINE 0 0 0 c8t3d0 ONLINE 0 0 0
Question # 2 Which utility/service must you use to set processes with FSS by default?
A. priocntl
B. svc:/system/scheduler:default
C. dispadmin
D. projmod
Click for Answer
Answer Description Explanation: Set the default scheduler for the system to be the FSS. # dispadmin -d FSS
Question # 3 A server has a nonglobal zone named zoneA. The following boot environments are listed in the global zone.
Which three statements describe the current state of the system?
A. The BE1 boot environment cannot be activated from the nonglobal zone.
B. The nonglobal zone cannot be booted to solaris-1 BE at this time.
C. The solaris-1 BE cannot be activated from the nonglobal zone.
D. To boot the nonglobal zone to the solaris-1 BE, the global zone must first be booted to the solaris-1 BE.
E. The solaris-1 BE has been activated in the nonglobal zone.
Click for Answer
B. The nonglobal zone cannot be booted to solaris-1 BE at this time.
C. The solaris-1 BE cannot be activated from the nonglobal zone.
Answer Description Explanation: C: You cannot activate an unbootable BE in a nested BE. BE solaris-1 is marked with !R. Unbootable BEs inside of a nested BE are represented by an exclamation point (!) BF: BE solaris-1 is marked with !R. Unbootable BEs inside of a nested BE are represented by an exclamation point (!) Incorrect: Not A: BE1 can be activated. It is bootable (not marked with a !) Not D: Different BEs can be used in the two zones. Not E: BE solaris-1 is not marked with an N. The Active field indicates whether the boot environment is active now, represented by N
Question # 4 You are configuring a system on your network that was installed using LiveCD. You configured applied a static IP address to the system. You now need to configure a default router. Assume that name services are file based and the router’s IP address is 172.31.10.1. Which two methods should you use to configure a default route on this Oracle Solaris 11 system?
A. svccfg –s network/physical setprop config/defroute=172.31.10.1;svcadm refresh network/physical; svcadm restart network/physical
B. svccfg –s routing/route setprop config/defroute=172.31.10.1;svcadm refresh routing/route; svcadm restart routing/route
C. Add the IP address to the /etc/defaultrouter file and run route add default 172.31.10.1.
D. netadm modify –p ncp DefaultFixed set-prop –p defroute=172.31.10.1
E. ipadm set-prop –p defaultrouter=172.31.10.1
Click for Answer
C. Add the IP address to the /etc/defaultrouter file and run route add default 172.31.10.1.
Answer Description Explanation: * AI Server Software Requirements include: Default router Ensure that your AI server has a default route set by using the netstat command to show network status. If your AI server does not have a default route set, you can set a static default route by populating the /etc/defaultrouter file with the IP address of a static default route for your server's network. * For any currently active NCP (fixed or reactive), use the route command with the -p option to persistently add a route: # route -p add default ip-address
Because this command applies the specified route to the currently active NCP, the default route is removed and potentially replaced, if the active NCP changes. Incorrect: Not A, Not B: The svccfg command manipulates data in the service configuration repository. svccfg can be invoked interactively, with an individual subcommand, or by specifying a command file that contains a series of subcommands.
Question # 5 Frank is a member of two projects on you system. He has a process running in a project called project-clock and needs to move it under the other project he belongs to. Which command must Frank use to move the process?
A. setproject
B. newtask
C. projmod
D. prtcl
Click for Answer
Answer Description Explanation: How to Move a Running Process Into a New Task This example shows how to associate a running process with a different task and new project. To perform this action, you must either be superuser, or be the owner of the process and be a member of the new project. 1. Become superuser or assume an equivalent role 2. Obtain the process ID of thebook_catalogprocess. # pgrep book_catalog 8100 3. Associate process8100with a new task ID in thebooksiteproject. # newtask -v -p booksite -c 8100 17 The -coption specifies that newtaskoperate on the existing named process. 4. Confirm the task to process ID mapping. # pgrep -T 17 8100
Incorrect: Not C: projmod does not change the processes of a project. The projmod utility modifies a project's definition on the system. projmod changes the definition of the specified project and makes the appropriate project-related system file and file system changes.
Question # 6 Your organization uses a fixed base configuration for all Oracle Solaris native brand zones that are created. You want to configure your server so that it will use your company template when the create command is issued. Identify the preferred way to accomplish this.
A. Change the /etc/zones/SYSblank.xml link to link to your company template and use create –b.
B. Set the default_template property in the system/zones service to your company template.
C. Change the /etc/zones/SYSsolaris.xml link to link to your company template.
D. Set the zone_default_template parameter in the /etc/default/zones file.
Click for Answer
B. Set the default_template property in the system/zones service to your company template.
Answer Description Explanation: create uses a default template of SYSdefault. The default template can be changed on a system-wide basis using the default_template SMF property of the svc:/system/zones:default service. Note: create [-F] [ -a path |-b | -t template] Create an in-memory configuration for the specified zone. Use create to begin to configure a new zone
Question # 7
A. pkgrepo create /export/sllReleaseRepopkgrecv –s /remoteRepo –d /export/sllReleaseRepo
B. pkgrecv –s file:///remoteRepo –d file:///export/sllReleaseRepo ‘*’
C. pkgrecv –s /remoteRepo –d /export/sllReleaseRepo ‘*’
D. pkgrecv –s /remoteRepo –d file:///export/sllReleaseRepo ‘*’
E. rsync –aP /remoteRepo /export/sllReleaseRepo
Click for Answer
A. pkgrepo create /export/sllReleaseRepopkgrecv –s /remoteRepo –d /export/sllReleaseRepo
Answer Description Explanation: * pkgrepo provides the ability to create and manage pkg package repositories. Package repositories are a predefined set of directories and files that permit the storage and retrieval of package data by pkg and publication clients such as pkgsend or pkgrecv. * Use the pkgrecv command to copy the repository. Example: # pkgrecv -s http://pkg.oracle.com/solaris/release/ -d /export/repoSolaris11 '*' Processing packages for publisher solaris ... Creating Plan Retrieving and evaluating 4288 package(s)... PROCESS ITEMS GET (MB) SEND (MB) developer/build/cmake 446/4288 332.1/4589.7 1000.2/14511.8 Completed 4288/4288 4589.7/4589.7 14511.8/14511.8
Question # 8 Which two statements are true regarding the audit_remote plugin and the audit service?
A. audit_remote is not loaded by default.
B. The standard service port defined by IANA is 16162.
C. Audit records are sent to all configured remote hosts.
D. The required GSS_API mechanism is kerberos_v5.
E. The maximum number of audit records queued before sending is 100.
Click for Answer
A. audit_remote is not loaded by default.
B. The standard service port defined by IANA is 16162.
Answer Description Explanation: A: The audit_remote plugin is loaded by auditd if the plugin is configured as an active via auditconfig. Use the auditconfig -setplugin option to change all the plugin related configuration parameters B: The solaris-audit service port assigned by IANA is 16162. Incorrect: Not D: audit_remote authenticates itself to the remote audit service by way of GSS-API (libgss(3LIB)). Default gss credentials are used as provided by the gss implementation mechanism, such as Kerberos. Note: audit_remote - send Solaris audit logs to a remote server
Up-to-Date
We always provide up-to-date 1z0-822 exam dumps to our clients. Keep checking website for updates and download.
Excellence
Quality and excellence of our Oracle Solaris 11 Advanced System Administration practice questions are above customers expectations. Contact live chat to know more.
Success
Your SUCCESS is assured with the 1z0-822 exam questions of passin1day.com. Just Buy, Prepare and PASS!
Quality
All our braindumps are verified with their correct answers. Download Oracle Solaris Practice tests in a printable PDF format.
Basic
$80
Any 3 Exams of Your Choice
3 Exams PDF + Online Test Engine
Buy Now
Premium
$100
Any 4 Exams of Your Choice
4 Exams PDF + Online Test Engine
Buy Now
Gold
$125
Any 5 Exams of Your Choice
5 Exams PDF + Online Test Engine
Buy Now
Passin1Day has a big success story in last 12 years with a long list of satisfied customers.
We are UK based company, selling 1z0-822 practice test questions answers. We have a team of 34 people in Research, Writing, QA, Sales, Support and Marketing departments and helping people get success in their life.
We dont have a single unsatisfied Oracle customer in this time. Our customers are our asset and precious to us more than their money.
1z0-822 Dumps
We have recently updated Oracle 1z0-822 dumps study guide. You can use our Oracle Solaris braindumps and pass your exam in just 24 hours. Our Oracle Solaris 11 Advanced System Administration real exam contains latest questions. We are providing Oracle 1z0-822 dumps with updates for 3 months. You can purchase in advance and start studying. Whenever Oracle update Oracle Solaris 11 Advanced System Administration exam, we also update our file with new questions. Passin1day is here to provide real 1z0-822 exam questions to people who find it difficult to pass exam
Oracle Solaris can advance your marketability and prove to be a key to differentiating you from those who have no certification and Passin1day is there to help you pass exam with 1z0-822 dumps. Oracle Certifications demonstrate your competence and make your discerning employers recognize that Oracle Solaris 11 Advanced System Administration certified employees are more valuable to their organizations and customers. We have helped thousands of customers so far in achieving their goals. Our excellent comprehensive Oracle exam dumps will enable you to pass your certification Oracle Solaris exam in just a single try. Passin1day is offering 1z0-822 braindumps which are accurate and of high-quality verified by the IT professionals. Candidates can instantly download Oracle Solaris dumps and access them at any device after purchase. Online Oracle Solaris 11 Advanced System Administration practice tests are planned and designed to prepare you completely for the real Oracle exam condition. Free 1z0-822 dumps demos can be available on customer’s demand to check before placing an order.
What Our Customers Say
Jeff Brown
Thanks you so much passin1day.com team for all the help that you have provided me in my Oracle exam. I will use your dumps for next certification as well.
Mareena Frederick
You guys are awesome. Even 1 day is too much. I prepared my exam in just 3 hours with your 1z0-822 exam dumps and passed it in first attempt :)
Ralph Donald
I am the fully satisfied customer of passin1day.com. I have passed my exam using your Oracle Solaris 11 Advanced System Administration braindumps in first attempt. You guys are the secret behind my success ;)
Lilly Solomon
I was so depressed when I get failed in my Cisco exam but thanks GOD you guys exist and helped me in passing my exams. I am nothing without you.