Black Friday Sale - Special 70% Discount Offer - Ends in 0d 00h 00m 00s - Coupon code: 70dumps

1z0-106 Questions and Answers

Question # 6

Examine this command:

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

Which two statements are true upon execution?

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.

Full Access
Question # 7

Which two are true about using Ksplice?

A.

Ksplice can be used without a network connection

B.

It can patch the kernel without shutting down the system.

C.

Yum cannot upgrade a kernel patched by Ksplice

D.

Ksplice has two clients; each can run in three different modes.

E.

The Ksplice client is freely available to all customers.

Full Access
Question # 8

Which two statements are true about fdisk?

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.

Full Access
Question # 9

Which two directories store PAM authentication modules?

A.

/lib64/security

B.

/etc/pam.d

C.

/usr/lib

D.

/lib/security

E.

/var/lib

Full Access
Question # 10

Examine /etc/anacrontab:

SHELL=/bin/sh

PATH=/sbin:/bin:/usr/sbin:/usr/bin

MAILTO=root

# the maximal random delay added to the base delay of the jobs

RANDOM_DELAY=45

# the jobs are started during the following hours only

START_HOURS_RANGE=3-22

# period in days delay in minutes job-identifier command

1 5 dailyjob nice run-parts /etc/cron.daily

7 25 weeklyjob nice run-parts /etc/cron.weekly

@monthly 45 monthlyjob nice run-parts /etc/cron.monthly

Which two statements are true about the jobs scheduled in this file?

A.

Scripts run by the first job are delayed between 11 and 45 minutes.

B.

Jobs defined in this anacrontab file can be executed between 15:00 and 22:00

C.

Scripts run by the third job are delayed between 45 and 90 minutes.

D.

Jobs defined in this anacrontab file are randomly delayed by up to 51 minutes.

E.

Scripts run by the second job are delayed between 31 and 70 minutes.

Full Access
Question # 11

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?

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 *:*

Full Access
Question # 12

Which three statements are true about DNF modules?

A.

Modules are a group of packages that are installed together along with dependencies.

B.

Installing a module allows a user to select a specific stream.

C.

Profiles are used to provide alternate versions of the same module.

D.

Streams are used to define optional configurations of modules.

E.

Streams cannot declare dependencies on the streams of other modules.

F.

Packages exist in multiple streams, where each stream contains a different version.

G.

Switching an enabled module stream automatically changes installed packages.

Full Access
Question # 13

Which two features does a user private group provide?

A.

Provision of a unique group.

B.

Capability to create new group users

C.

Capability to execute sudo

D.

Ability for only a group’s users to read files in a new directory

E.

Capability to prevent other users from modifying a file

Full Access
Question # 14

Examine this command:

# ssh -L 5011:127.0.0.1:80 bob@10.10.2.20 -f sleep 30

Which two are true upon execution?

A.

A reverse tunnel is created back to the local host on port 80.

B.

A local port forward is created between client and server.

C.

A socket remains open for 30 minutes unless a connection is established.

D.

A web server is listening on port 5011.

E.

An SSH connection process is forked to the background.

Full Access
Question # 15

Examine this command and output:

$ ftp host01.example.com

Connected to host01.example.com (192.168.40.131).

220 (vsFTPd 3.0.2)

Name (host01.example.com:oracle):

After entering a carriage return, this error message is displayed:

530 Permission denied

Login Failed

ftp>

Why is the oracle user denied access to the FTP server on host01.example.com?

A.

The oracle user does not exist on host01.example.com.

B.

LOCAL_ENABLE is set to NO in /etc/vsftpd/vsftpd.conf.

C.

The oracle user is listed in /etc/vsftpd/user_list and USERLIST_ENABLE is set to NO in /etc/vsftpd/vsftpd.conf.

D.

The oracle user is listed in /etc/vsftpd/ftpusers.

E.

The oracle user is listed in /etc/vsftpd/user_list and USERLIST_ENABLE is set to YES in /etc/vsftpd/vsftpd.conf.

Full Access
Question # 16

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?

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.

Full Access
Question # 17

Which three are features of the btrfs file system?

A.

Block devices mirroring

B.

Copy-on-write metadata

C.

Cluster file system

D.

Efficient storage for small files

E.

Online resizing

F.

General-purpose volume manager

G.

Automatic defragmentation

Full Access
Question # 18

Which two statements are true about the configuration and use of cron or anacron?

A.

cron jobs may run only once a minute.

B.

All crontabs are held in the /etc/cron.d directory.

C.

The crond daemon looks for jobs only in /etc/crontab.

D.

anacron jobs may run only once a day.

E.

anacron jobs are used to run cron jobs if the system was powered off when they were scheduled to run.

Full Access