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

1Z0-100 Online Practice Questions and Answers

Questions 4

You must remove the user harhest from your Oracle Linux system because the person has left the company:

User harhest has numerous files, directories, and a crontab.

You issue:

Userdel r harhest

Which three outcomes result from the execution of this command?

A. Files in the harhest home directory are removed.

B. The home directory of harhest is removed.

C. Files owned by narhest in any directory are removed.

D. All directories owned by harhest are removed.

E. The /var/spool/mail/harhest mailbox is removed.

F. crontab /var/spool/cron/harhest is removed.

Buy Now

Correct Answer: ABE

The userdel command modifies the system account files, deleting all entries that refer to the user name LOGIN. The named user must exist.

parameter r -r, --remove Files in the user's home directory will be removed along with the home directory itself and the user's mail spool. Files located in other file systems will have to be searched for and deleted manually.

Questions 5

Examine the line from /etc/rsyslog.conf: Mail.* -/var/log/maillog

Which statement correctly describes this rule?

A. The rule name prefix of "-" is tolerated for syslog and syslog.sys compatibility with no impact or rsyslog behavior regardless of the global directive settings.

B. The file name prefix of "-" is a way of disabling mail log messages under certain conditions to /var/log/ maillog.

C. The filename prefix of "-" is a performance enhancement. It stops file syncing on every message. The log certain will be the same whether a minus prefix is used or not.

D. The file name prefix of "-" forces file syncing after every message is logged to ensure each message is written to disk force before attempting to write a subsequent message to the same file.

Buy Now

Correct Answer: D

*

# Log all the mail messages in one place.

mail.* -/var/log/maillog

*

Example:

To select all kernel syslog messages with any priority, add the following text into the configuration file:

kern.*

*

Example 2:

the following rule is comprised of a selector that selects all cron syslog messages and an action that saves

them into the /var/log/cron.log log file:

cron.* /var/log/cron.log

Note:

*

For those files that are controlled by the system logging daemon rsyslogd, the main configuration file is / etc/rsyslog.conf, which contains global directives, module directives, and rules.

*

The main configuration file for rsyslog is /etc/rsyslog.conf. Here, you can specify global directives, modules, and rules that consist of filter and action parts.

*

The most used and well-known way to filter syslog messages is to use the facility/priority- based filters

which filter syslog messages based on two conditions: facility and priority separated by a comma. To

create a selector, use the following syntax:

FACILITY.PRIORITY

where:

FACILITY specifies the subsystem that produces a specific syslog message.

PRIORITY specifies a priority of a syslog message.

You may also use an asterisk (*) to define all facilities or priorities (depending on where you place the

asterisk, before or after the comma).

Questions 6

Identify two true statements about the nice command.

A. It may the used to raise the priority of existing processes.

B. It may be used to set the initial priority of a process.

C. A higher nice value makes a process run at a lower priority.

D. By default, a normal user can make a process run at a higher priority.

E. It may be used to lower the priority of existing processes.

Buy Now

Correct Answer: CE

nice - run a program with modified scheduling priority. Synopsis

nice [OPTION] [COMMAND [ARG]...] Description

Run COMMAND with an adjusted niceness, which affects process scheduling. With no COMMAND, print the current niceness. Nicenesses range from -20 (most favorable scheduling) to 19 (least favorable).

Questions 7

Which two actions should be completed when the firstboot utility runs under runlevel 5 in Oracle Linux?

A. Agreeing to the license agreement

B. Registering for software updated

C. Creating a nonadministrative user

D. setting the current date and time to be synchronized with an NTP server

E. Configuring the dtrace facility

Buy Now

Correct Answer: AD

Performing FirstBoot Configuration Tasks

FirstBoot runs only after an initial installation and guides you through the various remaining configuration tasks.

1.

Click Forward to display the License Information window.

2.

Select Yes, I agree to the license agreement, and click Forward to display the Set Up Software Updates window.

3.

If your system has an active network connection, you can register your system with the Unbreakable Linux Network (ULN) and subscribe the system to software and Ksplice updates.

Click Forward to display the Create User window.

4.

Create a non-administrative user account. If you have an existing IPA, LDAP, Kerberos, NIS, or Winbind user database, click Use Network Login to configure the system to obtain user account information from the network server. Click Advanced if you want to specify the user's home directory or user ID.

Click Forward to display the Date and Time window.

5.

Set the current date and time. You can choose to synchronize the system's date and time from an NTP server.

Click Forward to display the Kdump window.

6.

If required, enable the Kdump kernel crash dump mechanism and configure the amount of memory to reserve for it. If your system crashes, Kdump captures information that assists in determining the cause of the crash.

Click Finish to complete FirstBoot configuration and display the graphical login screen

Questions 8

Which two statements are true about signal handling in Oracle Linux?

A. The pkill command kills a process by name.

B. A process killed with the default signal always terminates gracefully if it: does not block the kill request.

C. The kill command sends a sigkill (signal 9) by default to the process being killed.

D. The kill command may send a termination signal to more than one process at a time.

E. All signals may be blocked by a process.

Buy Now

Correct Answer: BD

D: The kill command is used to send a termination signal to the specified process or group.

Incorrect:

Not A: The following example shows the xscreensaver process (2609) which is to be terminated.

$ pgrep xscreen

$ kill 2609

Though we use pgrep to find the PID of this process here we could have also used a PID from the output

of top or ps.

Not C: The kill command is used to send a termination signal to the specified process or group. The default

termination signal is a SIGTERM (15) signal. Not E: When there a stubborn process trapping the kill

command and refusing to terminate, the -9 (SIGKILL) signal should be used to kill the process. The -9

signal cannot be trapped by a process and ignored.

Questions 9

Which three statements are true concerning the use of open SSH utilities?

A. SCP always requires a passphrase to be used.

B. SCP permits copies between two remote hosts.

C. SFTP permits transfers between two remote hosts.

D. SSH may be used to execute a single command on a remote host instead of executing the login shell on the remote host.

E. SFTP may be used to execute a command on the remote server.

Buy Now

Correct Answer: BDE

Questions 10

Examine the commands and output shown:

What is the cause of this connection refusal? (Choose the best answer.)

A. The web server has no documents to serve

B. The firewall blocked the connection due to an unintended rule blocking localhost port 80

C. The web server is not listening on the local loopback adapter

D. The system has no route to localhost

Buy Now

Correct Answer: B

Questions 11

Match the bash files with their correct description: (Choose the best answer.)

File name Description

1) /.bash_history a. a list of commands to be executed when you log in 2) /.bash_logout b. a list of commands that is executed every time you open a new shell 3) /.bash_profile c. a list of commands you have executed from a bash shell 4) /.bashrc d. a list of commands to be executed when you exit a login shell

e.

a list of commands executed before the current day

f.

a list of commands executed when a shell script has a nonzero return code

A. 1-c, 2-d, 3-a, 4-f

B. 1-c, 2-b, 3-d, 4-a

C. 1-c, 2-d, 3-a, 4-b

D. 1-e, 2-c, 3-a, 4-d

E. 1-c, 2-d, 3-b, 4-f

Buy Now

Correct Answer: C

Questions 12

Which three statements are true concerning the use of keys generated by the ssh-keygen command? (Choose three.)

A. dsa keys must be protected by a passphrase

B. dsa keys are supported by version 2 of the ssh protocol

C. rsa keys are supported by version 2 of the ssh protocol

D. rsa keys are supported by version 1 of the ssh protocol

E. dsa keys are supported by version 1 of the ssh protocol

F. rsa keys must be protected by a passphrase

Buy Now

Correct Answer: BDF

Questions 13

Which two are correct about the oracle-rdbms-server-11gR2-preinstall and oracle-validated RPMs? (Choose two.)

A. They are only available to Oracle Premium Support customers

B. They contain a number of other RPMS that are required for a successful Oracle database product installation

C. They have dependencies on a number of other RPMS that are required for a successful Oracle database product installation

D. The oracle-validated RPMS if used, must be installed before installing an Oracle database product

E. The oracle-validated RPMS if used, must be installed after installing an Oracle database product

Buy Now

Correct Answer: CD

Exam Code: 1Z0-100
Exam Name: Oracle Linux 5 and 6 System Administration
Last Update: May 03, 2025
Questions: 141

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

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