Summer Sale Limited Time 65% Discount Offer - Ends in 0d 00h 00m 00s - Coupon code: ecus65

Oracle 1z0-106 - Oracle Linux 8 Advanced System Administration

Page: 1 / 2
Total 60 questions

Which two statements are true about the Oracle Linux 8 boot process?

A.

The bootloader loads the initramfs file into memory and extracts the vmlinuz file into a temporary file system (tmpfs).

B.

The kernel loads driver modules from vmlinuz that are required to access the root file system.

C.

The bootloader loads the initramfs file into memory and extracts the vmlinuz file into the /boot file system.

D.

The kernel loads driver modules from initramfs that are required to access the root file system.

E.

Both the vmlinuz file and the initramfs file are located in the /boot directory.

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

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.

Examine this command, which executes successfully:

# nmcli con add con-name eth2 type ethernet ifname eth2 \ Ipv6.address 2804:14c:110:ab2f:c3lb:1212:7917:708a/64 \ Ipv6.gateway 2804:14c:110:ab2f::1003 \ Ipv4.address 192.168.0.5/24 ipv4.gateway 192.168.0.254

The eth2 connection does not exist. Which two statements are true?

A.

Ethernet connection eth2 is created.

B.

The configuration is saved in /etc/sysconfig/network.

C.

A static IP address is assigned to the eth2 connection

D.

It configures an automatic IPV6 address.

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.

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.

Examine this command and output:

# ausearch -k mkdir

type=SYSCALL msg=audit(1604360199.719:44733): arch=c000003e syscall=83 success=no a0=55dec0b47400 a1=lc0 a2=0 a3=0

items=2 ppid=1354 pid=284632 auid=4294967295 uid=996 gid=996 euid=998 suid=998 fsuid=998 egid=996 sgid=996 fsgid=996

tty=(none) ses=429 comm="pkla-check-auth" exe="/usr/bin/pkla-check-authorization" subj=system_u:system_r:policykit_auth_t:s0 key="mkdir"

Which command displays the syscall in text format instead of numerical format?

A.

ausearch -a 83 -k mkdir

B.

ausearch -I -k mkdir

C.

ausearch -sc 83 -k mkdir

D.

ausearch --format text -k mkdir

E.

ausearch -r -k mkdir

Which two actions are performed by the logrotate utility?

A.

rotating log files as specified

B.

encrypted log files

C.

compressing log files

D.

duplicating log files

E.

hashing log files

Which two statements are true about container technology?

A.

A container application built on a bare metal system cannot run on virtual machines or cloud instances.

B.

A container application is dependent on the host operating system and kernel version.

C.

Containers package an application with the individual runtime stack.

D.

Podman, Buildah, and Skopeo are independent tools to create, run, and manage container applications across compatible Oracle Linux systems.

E.

Podman requires a running daemon to function and to enable containers to start and run without root permissions.

Which two directories store PAM authentication modules?

A.

/lib64/security

B.

/etc/pam.d

C.

/usr/lib

D.

/lib/security

E.

/var/lib

Examine these commands executed by root:

# mkdir -p /jail /jail/bin /jail/lib64

# cp $(which bash) /jail/bin/

# ldd $(which bash)

linux-vdso.so.1 (0x00007ffd574f5000)

libtinfo.so.6 => /lib64/libtinfo.so.6 (0x00007fb458c2c000)

libdl.so.2 => /lib64/libdl.so.2 (0x00007fb458a28000)

libc.so.6 => /lib64/libc.so.6 (0x00007fb458666000)

/lib64/ld-linux-x86-64.so.2 (0x00007fb459177000)

# cp /lib64/libtinfo.so.6 /jail/lib64/

# cp /lib64/libdl.so.2 /jail/lib64/

# cp /lib64/libc.so.6 /jail/lib64/

# cp /lib64/ld-linux-x86-64.so.2 /jail/lib64/

# chroot /jail

What is the output from the cd, pwd, and ls commands?

A.

bash-4.4# cd

bash: cd: /root: No such file or directory

bash-4.4# pwd

/

bash-4.4# ls

bin lib64

B.

bash-4.4# cd

bash: cd: /root: Unable to access chrooted file or directory /root

bash-4.4# pwd

/

bash-4.4# ls

bin lib64

C.

bash-4.4# cd

bash: cd: /root: No such file or directory

bash-4.4# pwd

/root

bash-4.4# ls

bash: ls: command not found

D.

bash-4.4# cd

bash: cd: command not found

bash-4.4# pwd

bash: pwd: command not found

bash-4.4# ls

bash: ls: command not found