Download Oracle Linux 6 Implementation Essentials.1z0-460.CertDumps.2018-07-04.40q.vcex

Vendor: Oracle
Exam Code: 1z0-460
Exam Name: Oracle Linux 6 Implementation Essentials
Date: Jul 04, 2018
File Size: 364 KB

How to open VCEX files?

Files with VCEX extension can be opened by ProfExam Simulator.

Purchase
Coupon: EXAM_HUB

Discount: 20%

Demo Questions

Question 1
Identify the option with two files that are found in the /etc/sysconfig directory.
  1. /etc/sysconfig/autofs and/etc/sysconfig/authconfig
  2. /etc/sysconfig/ifcfg-eth0 and/etc/sysconfig/atd
  3. /etc/sysconfig/resolv.conf and/etc/sysconfig/network
  4. /etc/sysconfig/resolv.conf and/etc/sysconfig/grub.conf
Correct answer: A
Explanation:
* The /etc/sysconfig/autofs file defines custom options for the automatic mounting of devices. * The /etc/sysconfig/authconfig file sets the kind of authorization to be used on the host. Note: * /etc/sysconfig/networkUsed to configure networking options. Incorrect:Not C, Not D: * The program that resolves hostnames to IP addresses reads a file called resolv.conf.  This file is located in /etc/resolv.conf directory.
* The /etc/sysconfig/autofs file defines custom options for the automatic mounting of devices. 
* The /etc/sysconfig/authconfig file sets the kind of authorization to be used on the host. 
Note: * /etc/sysconfig/network
Used to configure networking options. 
Incorrect:
Not C, Not D: 
* The program that resolves hostnames to IP addresses reads a file called resolv.conf.  
This file is located in /etc/resolv.conf directory.
Question 2
Which two options can be completed when using the Firewall Configuration Tool, system – config – firewall?
  1. Write complex firewall rules for checking, logging, and rejecting inbound and outbound connections
  2. Enabling or disabling the firewall entirely
  3. Build a filter to obfuscate sensitive data (national ID numbers, Credit Cards, and so on)
  4. Select the services that have access to the network resource
Correct answer: BC
Explanation:
system-config-firewall The GUI screen to control the firewall is available from the menu (System > Administration > Firewall) or can be started from the command line using the system-config-firewall command. Once started, the toolbar provides buttons to allow the firewall to be enabled/disabled (B). You can also configure basic trusted services, such as SSH, FTP and HTTP (C), by putting a tick in the appropriate checkbox and clicking the "Apply" button on the toolbar.      The "Other Ports" section allows you to open ports that are not covered in the "Trusted Services" section.
system-config-firewall 
The GUI screen to control the firewall is available from the menu (System > Administration > Firewall) or can be started from the command line using the system-config-firewall command. 
Once started, the toolbar provides buttons to allow the firewall to be enabled/disabled (B). You can also configure basic trusted services, such as SSH, FTP and HTTP (C), by putting a tick in the appropriate checkbox and clicking the "Apply" button on the toolbar. 
   
  
The "Other Ports" section allows you to open ports that are not covered in the "Trusted Services" section.
Question 3
Identify the Oracle-supported source for obtaining Oracle Linux
  1. From any good Linux distribution
  2. From Oracle's eDelivery software delivery cloud
  3. From Oracle Metalink Support
  4. From Linux vendors such as Red Hat or SUSE
  5. From Anaconda Installer
Correct answer: B
Explanation:
* Oracle Software Delivery Cloud. Here you can find downloads for the Oracle Linux Operating System, Oracle VM, and Oracle VM Templates for both Linux and Solaris.
* Oracle Software Delivery Cloud. Here you can find downloads for the Oracle Linux Operating System, Oracle VM, and Oracle VM Templates for both Linux and Solaris.
Question 4
View the output below. As oracle user, you run the following command on your Oracle Linux 6 system: 
[oracle@dbhost ~ ] $ 
[oracle@dbhost ~] $ nice - - 10 ./myscript.sh & 
[1] 2735 
[oracle@dbhost ~] $ nice: cannot set niceness: permission denied
Why is the nice command failing?
  1. Shell scripts cannot be assigned a negative nice value.
  2. There is already another process running with same niceness value on this system.
  3. A negative nice value can be set by the root user.
  4. A nice value of -10 is not the permissible niceness range.
Correct answer: C
Explanation:
Only a privileged user may run a process with lower niceness:$ nice -n -1 nice nice: cannot set niceness: Permission denied0 $ sudo nice -n -1 nice -1 Note: Sudo stands for either "substitute user do" or "super user do" (depending upon how you want to look at it). What sudo does is incredibly important and crucial to many Linux distributions. Effectively, sudo allows a user to run a program as another user (most often the root user).
Only a privileged user may run a process with lower niceness:
$ nice -n -1 nice 
nice: cannot set niceness: Permission denied
$ sudo nice -n -1 nice 
-1 
Note: Sudo stands for either "substitute user do" or "super user do" (depending upon how you want to look at it). What sudo does is incredibly important and crucial to many Linux distributions. Effectively, sudo allows a user to run a program as another user (most often the root user).
Question 5
You have to mount the Oracle Linux ISO image file OracleLinux –R6 – U2 – Server – X86_64-dvd.iso to the /media/cdrom mount point. 
Which command will help you mount the Oracle Linux ISO image file?
  1. # mount OracleLinux –R6 –U2 –Server X86_64-dvd.iso /media/cdrom
  2. # mount –t DVD OracleLinux –R6 –U2-Server-X86_64-DVD.iso/media/cdrom
  3. # mount /dvd/OracleLinux -R6 -U2- Server=X86_64-dvd.iso /media/cdrom/OracleLinux-R6-UI-Server-X86_64-dvd.iso
  4. # mount – 0 ro, loop oracleLinux –R6 –U2 –Server –X86_64 –dvd.iso /media/cdrom
Correct answer: D
Explanation:
Mount the DVD iso of the desired update of Oracle Linux Release 5.  Use the following command for mounting the DVD media inserted in /dev/cdrom # mount -r -o loop -t iso9660 /dev/cdrom /mnt Use following command to mount iso image file # mount -o loop <iso image file name> /mnt
Mount the DVD iso of the desired update of Oracle Linux Release 5.  
Use the following command for mounting the DVD media inserted in /dev/cdrom 
# mount -r -o loop -t iso9660 /dev/cdrom /mnt 
Use following command to mount iso image file 
# mount -o loop <iso image file name> /mnt
Question 6
You have to find the default runlevel of your Oracle Linux system. Which file will help you find this information?
  1. /boot/grub/grub.conf
  2. /etc/inittab
  3. /etc/rc.d/rc.sysinit
  4. /etc/rc.local
  5. /etc/rc.d/init.d
Correct answer: B
Explanation:
The default run level is specified in the /etc/inittab file.
The default run level is specified in the /etc/inittab file.
Question 7
Examine the following commands: 
# groupadd project 
# mkdir /usr/share/project 
# chown –R root.project /usr/share/project 
# qpasswd –a scott project 
# qpasswd –a foo project 
# chmod 2775 /usr/share/project 
Based on the commands, which statement is correct?
  1. Any new file created in the /usr/share/project folder by user scott will not be possible for foo to modify it.
  2. All members of the project group need the administrator’s help to change the file permission every time users write new files in the /usr/share/project folder.
  3. Files created by all members of the project group in the /usr/share/project folder will get the same group permission as the folder itself.
  4. The chmod command can only take a three-digit argument.
Correct answer: B
Question 8
Which three statements describe the Unbreakable Enterprise Kernel (UEK)?
  1. The UEK contains proprietary Linux Kernel enhancements only available to Oracle Linux.
  2. The UEK is available for x86 (32 bit), x86-64 (64 bit), ARM 32 bit, and ARM 64 bit servers.
  3. Existing applications run unchanged with the UEK in place because all system libraries remain unchanged.
  4. The UEK has more recent kernel enhancements for features like power management than the Red Hat Compatible Kernel.
  5. The UEK has ASMlib included by default.
Correct answer: ACE
Explanation:
A: The Unbreakable Enterprise Kernel Release 2 is Oracle's second major release of its heavily tested and optimized operating system kernel for Oracle Linux 5 and Oracle Linux 6.C: Oracle claims that the Unbreakable Enterprise Kernel is compatible with RHEL, and Oracle middleware and third-party RHEL-certified applications can be installed and run unchanged on Unbreakable Enterprise Kernel.E: Oracle ASMlib is included by defaultIncorrect:Not B: Unbreakable Enterprise Kernel is available for x86-64 servers.
A: The Unbreakable Enterprise Kernel Release 2 is Oracle's second major release of its heavily tested and optimized operating system kernel for Oracle Linux 5 and Oracle Linux 6.
C: Oracle claims that the Unbreakable Enterprise Kernel is compatible with RHEL, and Oracle middleware and third-party RHEL-certified applications can be installed and run unchanged on Unbreakable Enterprise Kernel.
E: Oracle ASMlib is included by default
Incorrect:
Not B: Unbreakable Enterprise Kernel is available for x86-64 servers.
Question 9
Identify three valid modes for SELinux.
  1. Disabled
  2. Enforcing
  3. Running
  4. Permissive
  5. Enabled
  6. High_level
  7. Label_only
Correct answer: ABD
Explanation:
SELinux has three modes:Enforcing: SELinux policy is enforced. SELinux denies access based on SELinux policy rules.Permissive: SELinux policy is not enforced. SELinux does not deny access, but denials are logged for actions that would have been denied if running in enforcing mode.Disabled: SELinux is disabled. Only DAC rules are used.
SELinux has three modes:
Enforcing: SELinux policy is enforced. SELinux denies access based on SELinux policy rules.
Permissive: SELinux policy is not enforced. SELinux does not deny access, but denials are logged for actions that would have been denied if running in enforcing mode.
Disabled: SELinux is disabled. Only DAC rules are used.
Question 10
Which two features are available with the Unbreakable kernel R2, but not with the Red Hat Compatible Kernel?
  1. Oracle Clusterware for Linux
  2. Up to 4-petabyte cluster volumes with OCFS2
  3. Ksplice zero downtime patching
  4. Transparent Huge Pages support (that is, 2 MB instead of 4 KB)
Correct answer: AB
Explanation:
Oracle’s Unbreakable Enterprise Kernel KEY FEATURES: Modern kernel based on 2.6.32, optimized by Oracle for server deployments Includes OCFS (Oracle Cluster File System)2 1.6 for clustered volumes Includes OFED 1.5.1 Advanced NUMA support New diagnostic and tracing tools, including performance counters  Complete data integrity checking from application to disk Hardware fault management
Oracle’s Unbreakable Enterprise Kernel 
KEY FEATURES: 
  • Modern kernel based on 2.6.32, optimized by Oracle for server deployments 
  • Includes OCFS (Oracle Cluster File System)2 1.6 for clustered volumes 
  • Includes OFED 1.5.1 
  • Advanced NUMA support 
  • New diagnostic and tracing tools, including performance counters  
  • Complete data integrity checking from application to disk 
  • Hardware fault management
HOW TO OPEN VCE FILES

Use VCE Exam Simulator to open VCE files
Avanaset

HOW TO OPEN VCEX AND EXAM FILES

Use ProfExam Simulator to open VCEX and EXAM files
ProfExam Screen

ProfExam
ProfExam at a 20% markdown

You have the opportunity to purchase ProfExam at a 20% reduced price

Get Now!