Ensurepass.com : Ensure you pass the IT Exams
2018 Jan Oracle Official New Released 1z0-878
100% Free Download! 100% Pass Guaranteed!
http://www.EnsurePass.com/1z0-878.html
Oracle Solaris 10 System Administrator Certified Professional Exam, Part II
Question No: 151 – (Topic 2)
The client-server model describes the communication process between two computers or programs. Which two statements are true about a server in the client server model?
(Choose two.)
-
A server host can only manage one service.
-
A server host can manage many different services.
-
A server is a host or process that provides services to a client.
-
A service can only be provided by one server host on a network.
-
A program providing a service must be accessed across the network.
Answer: B,C
Question No: 152 – (Topic 2)
A junior administrator is having difficulty getting a service installed and configured on a Solaris 10 OS and has asked for assistance. The service must be started automatically from inetd.
The installation script places entries appropriate to the service in /etc/inetd.conf and they are formatted correctly. The service does NOT start on demand and the administrator has issued several pkill -HUP inetd commands. This same service installs and works fine on a Solaris 9 OS. There are no problems with the binaries associated with the service. What command must be run to configure and enable this service on the Solaris 10 OS?
-
reboot
-
inetadm -l
-
inetconv -e -f
-
inetadm -e /etc/inetd.conf
Answer: C
Question No: 153 – (Topic 2)
You are configuring a system on a public network. Because of the risk of other systems snooping network traffic and obtaining login and password information that is sent in clear text, you want to force users who access this system remotely to use ssh instead of telnet. To do this, you want to disable in.telnetd. Which two commands accomplish this? (Choose two.)
-
inetadm -d svc:/network/telnet
-
inetd delete svc:/network/telnet
-
svcadm disable svc:/network/telnet
-
inetadm delete svc:/network/telnet
-
svcadm destroy svc:/network/telnet
-
grep -v in.telnetd /etc/inetd.conf gt; /etc/inetd.conf
Answer: A,C
Question No: 154 – (Topic 2)
Which two statements are true about the inetd process on a system running the Solaris 10 OS? (Choose two.)
-
It only runs on servers.
-
It is considered the master restarter.
-
It starts well-known services on demand that are NOT automatically started at boot time.
-
It consults /etc/inet/services to determine which service to start when a request is received on a port.
Answer: C,D
Question No: 155 – (Topic 2)
Which three statements are true about well-known ports? (Choose three.)
-
They must be agreed upon by all users.
-
They are listed in /etc/inet/services.
-
They are published by the Central Authority.
-
They change assignments between reboots.
-
The assignments are generated on demand by the Central Authority.
Answer: A,B,C
Question No: 156 – (Topic 2)
To save time configuring some custom network facilities, a junior administrator in your company attempts to copy some entries from the /etc/inetd.conf file on a Solaris 8 OS server into the /etc/inetd.conf on a Solaris 10 OS server. The junior administrator is unable to determine why services do not start. Which two commands can you run on the Solaris 10 OS server to start the services? (Choose two.)
-
inetconv -f
-
inetcfg -i /etc/inetd.conf
-
inetcfg -o /etc/inetd.conf
-
inetconv -f -i /etc/inetd.conf
-
inetconv -forceimport -o /etc/inetd.conf
Answer: A,D
Question No: 157 – (Topic 2)
Assuming the directory /swapdir exists, what is the result of executing the following command?
# mkfile 100m /swapdir/file1
-
A 100 megabyte swap file named /swapdir/file1 is created.
-
A 100 megabyte swap file named /swapdir/file1 is added to the existing swap space.
-
The size of the existing swap partition is increased by 100 megabyte using a file named
/swapdir/file1.
-
This command fails, because swap space can be created only during the initial installation of the operating system.
Answer: A
Question No: 158 – (Topic 2)
You receive error messages that the /lard file system is full. You check and see that it has a large file called swapfile. Your system has more than enough swap space. You suspect that the file is in use as swap space.
Which sequence of commands confirms that the file is in use as swap space, and helps correct the file system problem?
-
swap -r /lard/swapfile ; rm /lard/swapfile
-
swap -l ; swap -d /lard/swapfile ; rm /lard/swapfile
-
swap -l ; rm /lard/swapfile ; swap -d /lard/swapfile
-
swap -l ; swap -r /lard/swapfile ; rm /lard/swapfile
Answer: B
Question No: 159 – (Topic 2)
The production server needs additional swap space due to lack of physical memory.
The system has only one disk and is partitioned as follows: Part Tag Flag Cylinders Size Blocks
0 root wm 1041 – 38491 18.00GB (37451/0/0) 37750608
1 swap wu 0 – 1040 512.37MB (1041/0/0) 1049328
2 backup wm 0 – 39532 19.00GB (39533/0/0) 39849264
-
unassigned wm 0 0 (0/0/0) 0
-
unassigned wm 0 0 (0/0/0) 0
-
unassigned wm 0 0 (0/0/0) 0
-
unassigned wm 0 0 (0/0/0) 0
-
unassigned wm 0 0 (0/0/0) 0
There is one swap slice configured and active:
# swap -l
swapfile dev swaplo blocks free
/dev/dsk/c0t0d0s1 136,1 16 1049312 0 The root file system is a flat file system:
# df -k /
Filesystem kbytes used avail capacity Mounted on
/dev/dsk/c0t0d0s0 18575269 9549546 9025723 53% /
Which two methods can be used to temporarily add swap space? (Choose two.)
-
add slice 2 as swap:
# swap -a /dev/dsk/c0t0d0s2
-
create a 512 megabyte swap file on the root disk:
# mkfile 512m /swapfile
# swap -a /swapfile
-
remove the existing swap and read it using swap compression: # swap -d
/dev/dsk/c0t0d0s3
# swap -a -c /dev/dsk/c0t0d0s3
-
repartition the disk so that slice 3 contains the unused cylinders 38492 through 39532, and then add slice 3 as swap:
# swap -a /dev/dsk/c0t0d0s3
-
use NFS to mount a file system from the development server, and then create and use a swap file on the remote system:
# mkdir /data
# mount -F nfs tokyo:/export/data /data
# mkfile /data/swapfile
# swap -a /data/swapfile
Answer: B,D
Question No: 160 – (Topic 2)
What is the minimum size requirement for swap space on a Solaris 10 OS for the system to boot properly?
-
zero
-
twice the amount of physical RAM
-
equal to the amount of physical RAM
-
one half the amount of physical RAM
Answer: A
100% Ensurepass Free Download!
–Download Free Demo:1z0-878 Demo PDF
100% Ensurepass Free Guaranteed!
–1z0-878 Dumps
EnsurePass | ExamCollection | Testking | |
---|---|---|---|
Lowest Price Guarantee | Yes | No | No |
Up-to-Dated | Yes | No | No |
Real Questions | Yes | No | No |
Explanation | Yes | No | No |
PDF VCE | Yes | No | No |
Free VCE Simulator | Yes | No | No |
Instant Download | Yes | No | No |
100-105 Dumps VCE PDF
200-105 Dumps VCE PDF
300-101 Dumps VCE PDF
300-115 Dumps VCE PDF
300-135 Dumps VCE PDF
300-320 Dumps VCE PDF
400-101 Dumps VCE PDF
640-911 Dumps VCE PDF
640-916 Dumps VCE PDF
70-410 Dumps VCE PDF
70-411 Dumps VCE PDF
70-412 Dumps VCE PDF
70-413 Dumps VCE PDF
70-414 Dumps VCE PDF
70-417 Dumps VCE PDF
70-461 Dumps VCE PDF
70-462 Dumps VCE PDF
70-463 Dumps VCE PDF
70-464 Dumps VCE PDF
70-465 Dumps VCE PDF
70-480 Dumps VCE PDF
70-483 Dumps VCE PDF
70-486 Dumps VCE PDF
70-487 Dumps VCE PDF
220-901 Dumps VCE PDF
220-902 Dumps VCE PDF
N10-006 Dumps VCE PDF
SY0-401 Dumps VCE PDF