Winter Sale - Special Limited Time 65% Discount Offer - Ends in 0d 00h 00m 00s - Coupon code: dpm65

Hot Vendors

1z0-106 Oracle Linux 8 Advanced System Administration Questions and Answers

Questions 4

Which two statements are true about kernel boot parameters?

Options:

A.

Boot parameters are defined as values for the GRUB_CMDLINE_LINUX directive in the /etc/default/grub file.

B.

Boot parameters defined as values for the GRUB_BOOT command-line interface are persistent and apply to all subsequent reboots.

C.

Each kernel version's boot parameters are stored in independent configuration files in/boot/loader/entries.

D.

Parameters passed to the kernel from the GRUB 2 menu are persistent and apply to all subsequent reboots.

Buy Now
Questions 5

Which two statements are true about naming network interfaces?

Options:

A.

Consistent device naming is enabled by default.

B.

The udev device manager generates device names based on a series of schemes.

C.

The udev device manager uses a random number if all other schemes fail.

D.

Device names cannot be manually configured.

E.

Device names incorporate the physical location and hot plug slot index number.

Buy Now
Questions 6

Examine the access privileges on this directory:

drwx------ 2 user1 test 4096 Nov 6 10:12 my_directory/

You must enable another user to read and navigate to my_directory. Which command will do this?

Options:

A.

setfacl --default --modify user:user2:rw- my_directory

B.

setfacl --modify user:user2:r-- my_directory

C.

setfacl -x user:user2 my_directory

D.

setfacl --modify user:user2:r-x my_directory

E.

setfacl --modify group:test:r-- my_directory

Buy Now
Questions 7

Which statement is true about slice units?

Options:

A.

A slice unit is a concept for hierarchically managing resources in a group of processes.

B.

Processes in a slice unit are named at the same level as scopes and services.

C.

The system.slice contains all system services and user sessions.

D.

A slice unit accepts multiple names by the creation of additional symlinks to the unit file.

Buy Now
Questions 8

Which is true about the /etc/sysconfig directory in an Oracle Linux 8 system?

Options:

A.

It is used to access device and device driver information.

B.

Files in this directory hierarchy contain information about running processes.

C.

Its contents depend on the packages installed on the system.

D.

Files in this directory hierarchy contain information about system hardware.

Buy Now
Questions 9

The ss command was invoked with options to:

    limit output to all listening and non-listening TCP ports

    display ports instead of the protocols that typically use those ports

    display all available internal TCP information

    display only connections whose source or destination port is 80

Which two results are produced by the command?

Options:

A.

UNCONN 0 0 [::1]:323 [::]:*

B.

tcp CLOSE-WAIT 32 0 server.example.com:44732 12.21.0.15:https

C.

ESTAB 0 0 10.12.18.92:50384 169.254.169.254:80 cubic wscale:9,7 rto:201 rtt: 0.226/0.113 ato:40 mss:8948 pmtu:9000 rcvmss:1728 advmss:8948 cwnd:10 bytes_sent:142 bytes_acked:143 bytes_received:1728 segs_out:4 segs_in:3 data_segs_out:1 data_segs_in:1 send 3167433628bps lastsnd:11351 lastrcv: 11351 lastack:11351 pacing_rate 6334867256bps delivery_rate 504112672bps delivered:2 app_limited rcv_space:62720 rcv_ssthresh:56588 minrtt:0.142

D.

LISTEN 0 511 *:80 *:* cubic cwnd:10

E.

icmp6 UNCONN 0 0 *:58 *:*

Buy Now
Questions 10

Which command produces human-readable timestamps in kernel ring buffer messages?

Options:

A.

dmesg -t

B.

dmesg -x

C.

dmesg -T

D.

dmesg -W

Buy Now
Questions 11

Examine this command:

# auditctl -w /etc/passwd -p w -k pass

Which two statements are true upon execution?

Options:

A.

A write occurs to /etc/audit/rules.d/audit.rules.

B.

An audit rule is defined that creates a log entry every time /etc/passwd is read.

C.

An audit rule is defined with the keyword pass.

D.

An audit is defined that creates a log entry every time a write occurs to /etc/passwd.

E.

A write occurs to /etc/audit/audit.rules.

Buy Now
Questions 12

Which two statements are true about fdisk?

Options:

A.

It understands GPT, MBR, and HFS partition tables.

B.

fdisk -l displays disk size information for all disks.

C.

It can partition disks larger than 2 TB by using a GPT partition table.

D.

It can divide logical devices into one or more block disks called partitions.

E.

It cannot partition disks larger than 2 TB by using a GPT partition table.

Buy Now
Questions 13

Examine this command:

$ podman run –name=oracleshell -it oraclelinux:8 -slim

Which two statements are true upon execution?

Options:

A.

The container creates and starts an interactive shell.

B.

The container named oracleshell must already exist; otherwise, the command fails.

C.

The command fails if the oraclelinux:8 -slim image does not exist on the local machine.

D.

The container is created and started in a single command.

E.

The container is removed by typing exit at the bash shell prompt.

Buy Now
Questions 14

Examine this command and output:

# cat deployment.yaml

apiVersion: apps/v1

kind: Deployment

metadata:

name: nginx-deployment

spec:

selector:

matchLabels:

app: nginx

replicas: 2

template:

metadata:

labels:

app: nginx

spec:

containers:

- name: nginx

image: nginx:1.14.2

ports:

- containerPort: 80

Now examine this command which executes successfully:

$ kubectl create -f deployment.yaml

Which two statements are true?

Options:

A.

The command creates and guarantees the availability of a specified number of identical pods.

B.

The command creates a deployment named nginx.

C.

The command creates a pod named nginx.

D.

The command specifies port 80 as the port that the container exposes.

E.

The command specifies nginx image version 1.14.2 and will fail if the image version is not available.

Buy Now
Questions 15

Examine this segment of /etc/rsyslog.conf:

# Log all kernel messages to the console.

# Logging much else clutters up the screen.

#kern.* /dev/console

# Log anything (except mail) of level info or higher.

# Don’t log private authentication messages!

*.info;mail.none;authpriv.none;cron.none /var/log/messages

# The authpriv file has restricted access.

authpriv.* /var/log/secure

# Log all the mail messages in one place.

mail.* -/var/log/maillog

# Log cron stuff

cron.* /var/log/cron

# Everybody gets emergency messages

*.emerg :omusrmsg:*

Now examine this log output:

less

Nov 9 20:32:16 server02 sudo[4570]: pam_unix(sudo:session): session opened for user opc (uid=0)

Nov 9 20:32:17 server02 sudo[4570]: pam_unix(sudo:session): session closed

Nov 9 20:32:24 server02 unix_chkpwd[4661]: password check failed for user

Nov 9 20:32:24 server02 su[4581]: pam_unix(su:auth): authentication failed; logname= uid=1000 euid=0 tty=pts/0 ruser=opc rhost= user=root

Which setting enabled the reporting of this log file output?

Options:

A.

authpriv.* /var/log/auth

B.

*.emerg *

C.

*.info;mail.none;authpriv.none;cron.none /var/log/messages

D.

#kern.* /dev/sssd/sssd.log

E.

cron.* /var/log/cron

Buy Now
Questions 16

Examine these requirements for a host with a user oracle:

    Network services must run in a confined domain.

    The oracle user must be confined.

    The oracle user must be able to use Mozilla Firefox.

    Access to files and directories must be granted based only on SELinux contexts.

    The SELinux configuration must be persistent across system restarts.

    Users must be able to publish private HTML content.

Now examine these commands and output:

# sestatus

SELinux status: enabled

SELinuxfs mount: /sys/fs/selinux

SELinux root directory: /etc/selinux

Loaded policy name: targeted

Current mode: permissive

Mode from config file: permissive

Policy MLS status: enabled

Policy deny_unknown status: allowed

Memory protection checking: actual (secure)

Max Kernel policy version: 31

# setenforce enforcing

# semanage login -a -s guest_u oracle

# setsebool -P http_enable_homedirs on

Which requirements are satisfied?

Options:

A.

1, 2, 4, 5, 6

B.

1, 2, 3, 4, 5, 6

C.

1, 2, 3, 5, 6

D.

1, 2, 6

E.

1, 2, 4, 6

F.

1, 2, 3, 6

Buy Now
Questions 17

Examine this content from /etc/chrony.conf:

...

pool pool.ntp.org offline

driftfile /var/lib/chrony/drift

keyfile /etc/chrony.keys

...

Which statement is true about pool.ntp.org?

Options:

A.

chronyd polls a maximum of 3 sources from pool.ntp.org after it is enabled.

B.

chronyd does not poll pool.ntp.org until it is enabled to do so by chronyd.

C.

chronyd takes pool.ntp.org offline automatically when sending a request to the pool fails.

D.

chronyd does not poll pool.ntp.org until it is enabled to do so by chronyc.

Buy Now
Questions 18

Which two statements are true about control groups (cgroups) in Oracle Linux 8?

Options:

A.

Oracle Linux 8 implements cgroups v2 by default.

B.

A cgroup is a collection of processes bound to a set of limits or parameters defined in the cgroups filesystem.

C.

Different controllers from cgroups version 1 and cgroups version 2 cannot be used at the same time.

D.

The cgroups filesystem allows limits to be overwritten in the lower levels of the hierarchy.

E.

Cgroups allow processes to be organized into hierarchical groups whose resource usage cannot be limited and monitored.

Buy Now
Exam Code: 1z0-106
Exam Name: Oracle Linux 8 Advanced System Administration
Last Update: Nov 19, 2024
Questions: 60

PDF + Testing Engine

$56  $159.99

Testing Engine

$42  $119.99
buy now 1z0-106 testing engine

PDF (Q&A)

$35  $99.99
buy now 1z0-106 pdf
dumpsmate guaranteed to pass
24/7 Customer Support

DumpsMate's team of experts is always available to respond your queries on exam preparation. Get professional answers on any topic of the certification syllabus. Our experts will thoroughly satisfy you.

Site Secure

mcafee secure

TESTED 21 Nov 2024