Cyber Monday Special Sale - 70% Discount Offer - Ends in 0d 00h 00m 00s - Coupon code: best70

Page: 1 / 2
Total 18 questions
Exam Code: 1z0-106                Update: Dec 5, 2025
Exam Name: Oracle Linux 8 Advanced System Administration

Oracle Oracle Linux 8 Advanced System Administration 1z0-106 Exam Dumps: Updated Questions & Answers (December 2025)

Question # 1

You must add an additional swap device and you add this entry to /etc/fstab:

/.swapfile none swap defaults 0 0

Examine these commands and output:

# dd if=/dev/zero of=/.swapfile bs=1024 count=1048576

1048576+0 records in

1048576+0 records out

1073741824 bytes (1.1 GB, 1.0 GiB) copied, 4.32499 s, 248 MB/s

# swapon -a

swapon: /.swapfile: insecure permissions 0644, 0600 suggested.

swapon: /.swapfile: read swap header failed

Which two actions must you perform to add this swap device?

A.

Initialize the .swapfile file by using the mkswap command.

B.

Execute swapon -all.

C.

Change defaults to user in the /etc/fstab entry.

D.

Assign a label to the .swapfile file by using the swaplabel command.

E.

Execute swapon -L swapfile /.swapfile after adding a label.

F.

Use a physical disk partition type of 82 (Linux swap).

Question # 2

Which two default user account settings are contained in /etc/login.defs?

A.

Decryption method used to decrypt passwords.

B.

User hashed passwords.

C.

Group hashed passwords.

D.

Password aging controls.

E.

Encryption method used to encrypt passwords.

Question # 3

Examine this command and output:

# mdadm --detail /dev/md0

/dev/md0:

Version: 1.2

Creation Time: Tue Oct 27 16:53:38 2020

Raid Level: raid5

Array Size: 207872 (203.03 MiB 212.86 MB)

Used Dev Size: 103936 (101.52 MiB 106.43 MB)

Raid Devices: 3

Total Devices: 3

Persistence : Superblock is persistent

Update Time: Tue Oct 27 16:53:38 2020

State: clean, degraded, recovering

Active Devices: 2

Working Devices: 3

Failed Devices: 0

Spare Devices: 1

Layout: left-symmetric

Chunk Size: 512K

Rebuild Status: 60% complete

Name: ol8.example.com:0 (local to host ol8.example.com)

UUID: 70f8bd2f:0505d92d:750a781e:c224508d

Events: 66

Number Major Minor RaidDevice State

0 8 49 0 active sync /dev/sdd1

1 8 65 1 active sync /dev/sde1

3 8 81 2 spare rebuilding /dev/sdf1

Which two are true?

A.

A RAID device failed and has returned to normal operating status.

B.

The RAID set read and write performance is currently sub-optimal.

C.

A new RAID device was just added to replace a failed one.

D.

An extra device was added to this RAID set to increase its size.

E.

Only write performance is currently sub-optimal on this RAID set.

Question # 4

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.

Question # 5

Which three statements are true about the journalctl command?

A.

journalctl -bl -p err fails if journal persistence is not configured.

B.

journalctl -p err shows only error log level.

C.

journalctl -p notice..warning shows all messages from notice to warning log level since the last boot.

D.

journalctl -k shows kernel logs since the last boot.

E.

journalctl -p 6 shows all info log level messages and above.

Question # 6

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.

Question # 7

Examine these Kubernetes components:

Which option correctly matches the components with their description?

A.

1-d, 2-f, 3-e, 4-a, 5-c, 6-b

B.

1-b, 2-a, 3-e, 4-c, 5-f, 6-d

C.

1-a, 2-d, 3-b, 4-c, 5-e, 6-f

D.

1-c, 2-f, 3-d, 4-b, 5-e, 6-a

E.

1-d, 2-f, 3-c, 4-e, 5-a, 6-b

Question # 8

Which are three of the network bonding modes supported in Oracle Linux 8?

A.

Multicast

B.

Round-robin

C.

Split Horizon

D.

802.3ad

E.

Poison Reverse

F.

Active Backup

G.

Passive Backup

Question # 9

Which mdadm command creates a RAID-1 device consisting of two block volumes and one spare device?

A.

mdadm –create /dev/md0 –level=5 –raid-devices=2 /dev/xvdd1 /dev/xvdd2 –spare-devices=1 /dev/xvdd3

B.

mdadm –create /dev/md0 –level=1 –raid-devices=2 /dev/xvdd1 /dev/xvdd2

C.

mdadm –create /dev/md0 –level=1 –raid-devices=2 /dev/xvdd1 /dev/xvdd2 –spare-devices=1 /dev/xvdd3

D.

mdadm –create /dev/md0 –level=0 –raid-devices=2 /dev/xvdd1 /dev/xvdd2 –spare-devices=1 /dev/xvdd3

Question # 10

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.

Page: 1 / 2
Total 18 questions

Most Popular Certification Exams

Payment

       

Contact us

dumpscollection live chat

Site Secure

mcafee secure

TESTED 05 Dec 2025