Exam2pass
0 items Sign In or Register
  • Home
  • IT Exams
  • Guarantee
  • FAQs
  • Reviews
  • Contact Us
  • Demo
Exam2pass > Oracle > Oracle Certifications > 1Z0-460 > 1Z0-460 Online Practice Questions and Answers

1Z0-460 Online Practice Questions and Answers

Questions 4

As user bob, you have logged in to the system on a terminal and issued the following command to make the top command run in the background.

[bob@host - ] topand

You exit from the terminal and log back as bob into the system at the same terminal. How is the background job affected?

A. The background job gets the foreground as soon as bob logs into the system.

B. The background job is suspended temporarily from the job and resumes when user bob logs back in to the system.

C. The background job starts running in the background again as soon as bob logs into the system.

D. The background job will not be affected.

E. The background job is deleted from the job pool and does not get listed using jobs command.

Buy Now

Correct Answer: E

Questions 5

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 and

[1] 2735 [oracle@dbhost ~] $ nice: cannot set niceness: permission denied

Why is the nice command failing?

A. Shell scripts cannot be assigned a negative nice value.

B. There is already another process running with same niceness value on this system.

C. A negative nice value can be set by the root user.

D. A nice value of -10 is not the permissible niceness range.

Buy Now

Correct Answer: C

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 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).

Questions 6

You have to find the default runlevel of your Oracle Linux system. Which file will help you find this information?

A. /boot/grub/grub.conf

B. /etc/inittab

C. /etc/rc.d/rc.sysinit

D. /etc/rc.local

E. /etc/rc.d/init.d

Buy Now

Correct Answer: B

The default run level is specified in the /etc/inittab file.

Questions 7

You have executed the following commands as the root user:

# find /home | cpio o H tar F root@HostA: /dev/nst0 - - rsh command = /usr/bin/ssh

What is the purpose of issuing this command?

A. To archive the contents of the /home directory in the tar format to a remote host system's tape drive device /dev/nst0

B. To archive the contents of the /home directory in the cpio format to a remote host system's tape device /dev/nst0

C. To archive the contents of the /home directory in the cpio and tar formats to a remote system's tape drive device /dev/nst0

D. To extract the contents of the /home directory from the tape drive device /dev/nst0

Buy Now

Correct Answer: A

Note:

*

The cpio command is one of standard Unix backup utilities. It stands for "copy in/out." It is much less well known and more rarely used Unix utility in comparison with tar.

*

The cpio command is one of standard Unix backup utilities. It stands for "copy in/out." It is much less well known and more rarely used Unix utility in comparison with tar.

* -H format. Here tar

Questions 8

Your Oracle Linux system has two network interfaces eth0 and eth1. You have to change the netmask and the IP address of the eth1 network interface. Which configuration file would you edit to make these changes?

A. /proc/net/ifcg-eth1

B. /etc/sysconfig/network-scripts/eth1

C. /etc/sysconfig/network/ifcg-eth1

D. /etc/sysconfig/network-scripts/ifcfg-eth1

Buy Now

Correct Answer: D

The "/etc/sysconfig/network-scripts/ifcfg-eth0" file holds the network configuration for the "eth0" adapter. If you have multiple network adapters, you would expect additional configuration files (eth1, eth2 etc.).

Note:

* The "/etc/sysconfig/network" file holds top-level networking configuration, including the hostname and gateway settings.

Questions 9

You have to collect information about your Oracle Linux 6 system, such as hardware configuration, installed software packages, configuration, and operational state send it to Oracle Support. Which tool will help you gather this information for sending it to Oracle Support?

A. sosreport

B. iostat

C. kdump

D. strace

E. systemstat

Buy Now

Correct Answer: A

sosreport - Generate debugging information for this system

sosreport generates a compressed tarball of debugging information for the system it is run on that can be sent to technical support reps that will give them a more complete view of the overall system status.

Incorrect: Not B: The iostat command is used for monitoring system input/output device loading by observing the time the devices are active in relation to their average transfer rates. The iostat command generates reports that can be used to change system configuration to better balance the input/output load between physical disks.

Not C: kdump.conf is a configuration file for the kdump kernel crash collection service.

kdump.conf provides post-kexec instructions to the kdump kernel. It is stored in the initrd file managed by the kdump service. If you change this file and do not want to restart before it takes effect, restart the kdump service to rebuild to initrd. Not D: strace - trace system calls and signals

Questions 10

Examine the following snippet from the rsyslog.conf file.

kern.crit /dev/console kern.info; kern.!err /var/adm/kernel.log

What do these two rules mean?

A. Direct all kernel messages of the priority crit and higher to machine console. Additionally, log all kernel messages that come with priorities from info and up in the /var/adm/kernel.log file.

B. Direct all kernel messages of the priority crit and higher to machine console. Additionally, log all kernel messages that come with priorities from info up to warning in the /var/adm/kernel.log file.

C. Direct all kernel messages of the priority crit and higher to machine console. Additionally, log all messages that come with priorities from info and err in the /var/adm/kernel.log file.

D. Direct all kernel messages of the priority crit and higher to machine console. Additionally, log all kernel messages that come with priorities other than info and err into the /var/adm/kernel.log file.

Buy Now

Correct Answer: B

Example:

kern.* /var/adm/kernel kern.crit @finlandia;RFC3164fmt kern.crit /dev/console kern.info;kern.!err /var/adm/kernel-info

The first rule direct any message that has the kernel facility to the file /var/adm/kernel.

The second statement directs all kernel messages of the priority crit and higher to the remote host finlandia. This is useful, because if the host crashes and the disks get irreparable errors you might not be able to read the stored messages. If they're on a remote host, too, you still can try to find out the reason for the crash.

The third rule directs these messages to the actual console, so the person who works on the machine will get them, too.

The fourth line tells rsyslogd to save all kernel messages that come with priorities from info up to warning in the file /var/adm/kernel-info. Everything from err and higher is excluded.

Questions 11

What does the following line in the modprobe.conf file indicate? options netconsole netconsole = 6666@192.168.1.200/eth0, 514@192.168.1.100/00:0C:A3:35:9C

A. Netconsole logging is set up to send messages to a server at the IP address 192.168.1.200 by using the eth0 device.

B. Netconsole logging is set up to send messages to a server at the IP address 192.168.1.200 by using the port number 6666.

C. Netconsole logging is set up to send messages to a server at IP address 192.168.1.200 by using the UDP port 514.

D. Netconsole logging is set up for two clients with IP addresses of 192.168.1.200 and 192.168.1.100 on this server.

Buy Now

Correct Answer: B

Example: options netconsole netconsole=6666@10.0.0.1/eth0,514@10.0.0.2/00:1A:A0:D2:55:66

6666 => Server source port

10.0.0.1 => Server IP eth0 => Server NIC 514 => Client listening port

10.0.0.2 => Client IP 00:1A:A0:D2:55:66 => Client MAC

Questions 12

The Oracle "helper" package (RPM), formerly known as "Oracle-validated" (which helps meet prerequisites for installing Oracle software), has been renamed. What is the new name?

A. Oracle-11gR2-validated

B. Oracle-11fR2-valid_package

C. Oracle-rdbms-server-11gR2-preinstall

D. Oracle-11gR2-preinstall

Buy Now

Correct Answer: C

Now that the certification of the Oracle Database 11g R2 with Oracle Linux 6 and the Unbreakable Enterprise Kernel has been announced, we are glad to announce the availability of oracle-rdbms-server11gR2-preinstall, the Oracle RDBMS Server 11gR2 Pre-install RPM package (formerly known as oracle-validated). Designed specifically for Oracle Linux 6, this RPM aids in the installation of the Oracle Database.

Reference: Oracle RDBMS Server 11gR2 Pre-Install RPM for Oracle Linux 6 has been released

Questions 13

Which two statements are true about Oracle Clusterware Software?

A. Oracle Clusterware is a portable software that allows clustering of single servers so that they cooperate as single system.

B. Oracle Clusterware is a portable cluster software that can be installed on Oracle Engineered Systems.

C. Oracle Linux Support customers at the Basic or premier level are entitled, at no additional license and support costs, to download and deploy Oracle Clusterware in Linux cluster covered their Linux Support agreement.

D. Oracle Clusterware is an add-on software that is supported Oracle Linux only.

Buy Now

Correct Answer: AC

A: Oracle Clusterware is software that enables servers to operate together as if they are one server. Each server looks like any standalone server. However, each server has additional processes that communicate with each other so the separate servers appear as if they are one server to applications and end users.

C: Oracle Linux support customers at the Basic and Premier support levels can download and deploy Oracle Clusterware at no additional license fee or support cost.

Incorrect:

Not D: Oracle ClusterWare services are available for Unix, Linux, and Windows.

Exam Code: 1Z0-460
Exam Name: Oracle Linux 6 Implementation Essentials
Last Update: May 30, 2026
Questions: 71

PDF (Q&A)

$45.99
ADD TO CART

VCE

$49.99
ADD TO CART

PDF + VCE

$59.99
ADD TO CART

Exam2Pass----The Most Reliable Exam Preparation Assistance

There are tens of thousands of certification exam dumps provided on the internet. And how to choose the most reliable one among them is the first problem one certification candidate should face. Exam2Pass provide a shot cut to pass the exam and get the certification. If you need help on any questions or any Exam2Pass exam PDF and VCE simulators, customer support team is ready to help at any time when required.

Home | Guarantee & Policy |  Privacy & Policy |  Terms & Conditions |  How to buy |  FAQs |  About Us |  Contact Us |  Demo |  Reviews

2026 Copyright @ exam2pass.com All trademarks are the property of their respective vendors. We are not associated with any of them.