[Oct-2025] 1Z0-106 Dumps Full Questions - Professional Oracle Linux 8 System Administrator Exam Study Guide [Q36-Q58]

Share

[Oct-2025] 1Z0-106 Dumps Full Questions - Professional Oracle Linux 8 System Administrator Exam Study Guide

Exam Questions and Answers for 1Z0-106 Study Guide


Oracle 1Z0-106 exam is a certification exam designed to evaluate the knowledge and skills of professionals working in advanced system administration roles focused on Oracle Linux 8. 1Z0-106 exam is aimed at experienced Linux system administrators who are looking to validate their expertise in managing and troubleshooting advanced Linux systems based on Oracle Linux 8. 1Z0-106 exam covers a wide range of topics, including managing file systems and storage, configuring network services and security, managing user and group accounts, and configuring system services.

 

NEW QUESTION # 36
Which three statements are true about DNF modules?

  • A. Installing a module allows a user to select a specific stream.
  • B. Packages exist in multiple streams, where each stream contains a different version.
  • C. Streams cannot declare dependencies on the streams of other modules.
  • D. Modules are a group of packages that are installed together along with dependencies.
  • E. Streams are used to define optional configurations of modules.
  • F. Switching an enabled module stream automatically changes installed packages.
  • G. Profiles are used to provide alternate versions of the same module.

Answer: A,B,D

Explanation:
Understanding DNF Modules:
DNF modules in Oracle Linux 8 provide a way to offer different versions of software (packages) to users, allowing them to choose the version that best suits their needs. Modules help in managing multiple versions of software by grouping packages, defining streams, and using profiles for configurations.
Option A: Modules are a group of packages that are installed together along with dependencies.
* Explanation:
* Modulesare collections of packages that are grouped together to represent an application, language runtime, or any logical set.
* When you install a module, you are installing a set of packages along with their dependencies.
* This grouping ensures that all necessary components are installed for the software to function correctly.
* Oracle Linux Reference:
* OracleLinux 8: Managing Software-About Modules:
"A module is a group of packages that represents a component, such as an application, a language runtime, or a set of tools." Option B: Installing a module allows a user to select a specific stream.
* Explanation:
* Streamsin a module represent different versions of the software.
* When installing a module, you can select a specific stream to install the desired version.
* This allows users to choose between multiple versions of the same software provided within the module.
* Oracle Linux Reference:
* OracleLinux 8: Managing Software-About Module Streams:
"Each module can have one or more streams, which represent versions of the module content."
* Example Command:
# dnf module list nodejs
* This command lists available streams for the nodejs module.
Option F: Packages exist in multiple streams, where each stream contains a different version.
* Explanation:
* Within a module, each stream can contain different versions of the packages.
* This means the same package can exist in multiple streams but with different versions in each stream.
* This setup allows users to install the version of the software that meets their requirements.
* Oracle Linux Reference:
* OracleLinux 8: Managing Software-About Module Streams:
"Different streams can contain different versions of the software, allowing you to select the version that best suits your needs." Why Other Options Are Incorrect:
Option C: Profiles are used to provide alternate versions of the same module.
* Explanation:
* Profilesdefine sets of packages within a module stream for specific use cases or configurations, not alternate versions.
* Streams provide alternate versions, whereas profiles provide different package sets within a stream.
* Oracle Linux Reference:
* OracleLinux 8: Managing Software-About Module Profiles:
"A profile is a list of packages that defines a particular use case for a module stream." Option D: Streams are used to define optional configurations of modules.
* Explanation:
* Streams define different versions of software, not optional configurations.
* Optional configurations are managed through profiles within a stream.
* Oracle Linux Reference:
* Profiles handle configurations, while streams handle versions.
Option E: Streams cannot declare dependencies on the streams of other modules.
* Explanation:
* Streams can declare dependencies on specific streams of other modules.
* This allows modules to work together with compatible versions.
* Oracle Linux Reference:
* OracleLinux 8: Managing Software-Module Dependencies:
"Modules can declare dependencies on specific streams of other modules." Option G: Switching an enabled module stream automatically changes installed packages.
* Explanation:
* Switching streams does not automatically change installed packages.
* You must reset the module and install the new stream's packages manually.
* Oracle Linux Reference:
* OracleLinux 8: Managing Software-Switching Module Streams:
"To switch to a different module stream, you must reset the module and then install the packages from the new stream." Conclusion:
* Correct Options:A, B, F
* Summary:Modules group packages with dependencies, installing a module allows selecting a specific stream (version), and packages can exist in multiple streams with different versions.


NEW QUESTION # 37
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 the /boot file system.
  • B. The kernel loads driver modules from initramfs that are required to access the root file system.
  • C. The bootloader loads the initramfs file into memory and extracts the vmlinuz file into a temporary file system (tmpfs).
  • D. The kernel loads driver modules from vmlinuz that are required to access the root file system.
  • E. Both the vmlinuz file and the initramfs file are located in the /boot directory.

Answer: B,E

Explanation:
Explanation of Answer D:Theinitramfs(initial RAM filesystem) is a temporary filesystem loaded into memory during the boot process, containing essential drivers and utilities. The kernel usesinitramfsto load necessary drivers and modules required to access the root file system, particularly if it resides on a disk that requires special drivers.
Explanation of Answer E:Both thevmlinuz(the compressed Linux kernel image) and theinitramfsfile are located in the/bootdirectory. The bootloader, such as GRUB, reads these files from/bootto start the system.


NEW QUESTION # 38
Which command configures a fully functional and accessible interface on VLAN 800?

  • A. modprobe 8021q ip link add link eth0 name eth0.800 VLAN 800 ip address add 10.135.1.120/24 dev eth0.800 ip link set eth0.800 up
  • B. modprobe 8021q ip link add link eth0 name eth0.800 type vlan id 800 ip link set eth0.800 up
  • C. modprobe 8021q ip address add 10.135.1.120/24 dev eth0.800 ip link set eth0.800 up
  • D. modprobe 8021q ip link add link eth0 name eth0.800 type vlan id 800 ip address add 10.135.1.120/24 dev eth0.800 ip link set eth0.800 up

Answer: D

Explanation:
* Option C (Correct):This command sequence first loads the 802.1q module needed for VLAN tagging, then creates a VLAN interface (eth0.800) on the base interface (eth0), assigns an IP address (10.135.1.120/24), and sets the VLAN interface up.
* Option A, B, D (Incorrect):These options have syntactical errors or missing parameters that make them incorrect for setting up a fully functional and accessible VLAN interface.
Oracle Linux Reference:Refer to:
* OracleLinux 8: Configuring VLANs


NEW QUESTION # 39
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?

  • A. 1, 2, 3, 5, 6
  • B. 1, 2, 4, 6
  • C. 1, 2, 6
  • D. 1, 2, 3, 4, 5, 6
  • E. 1, 2, 4, 5, 6
  • F. 1, 2, 3, 6

Answer: E

Explanation:
Explanation of Answer A:
* Network services running in a confined domain: SELinux provides domain confinement for services, ensuring they run with restricted access based on their defined policies.
* The oracle user must be confined: The commandsemanage login -a -s guest_u oracleconfines theoracleuser to theguest_uSELinux user role, which is a confined role.
* Access to files and directories based only on SELinux contexts: With SELinux enabled and the policy loaded, access is governed by SELinux contexts.
* Persistent SELinux configuration across reboots: Thesetenforce enforcingcommand, combined with the appropriate policy configuration, ensures that SELinux remains in enforcing mode across reboots.
* Users able to publish private HTML content: Thesetsebool -P http_enable_homedirs oncommand enables the use of user home directories for web content, allowing users to host personal web pages.


NEW QUESTION # 40
Which two are true about using Ksplice?

  • A. The Ksplice client is freely available to all customers.
  • B. Yum cannot upgrade a kernel patched by Ksplice
  • C. Ksplice has two clients; each can run in three different modes.
  • D. Ksplice can be used without a network connection
  • E. It can patch the kernel without shutting down the system.

Answer: D,E

Explanation:
Option A: Ksplice can be used without a network connection
* Explanation:
* Ksplice provides anOffline Clientspecifically designed for systems that do not have a direct connection to the internet. This client allows administrators to download Ksplice updates on a system with internet access and then transfer them to the offline system for installation.
* This means Ksplice can be effectively used in environments with strict security policies where network connectivity is restricted or not available.
* Oracle Linux Reference:
* OracleLinux 8: Ksplice User's Guide- Section on "Using the Ksplice Offline Client":
"The Ksplice Offline client enables you to apply Ksplice updates to systems that do not have direct access to the Internet or to the Oracle Uptrack server." Option B: It can patch the kernel without shutting down the system.
* Explanation:
* The primary purpose of Ksplice is to allow administrators to apply critical security patches to the running kernelwithout requiring a rebootor shutting down the system. This ensures high availability and minimizes downtime, which is crucial for production environments.
* Ksplice works by performingjust-in-time (JIT) compilationof kernel patches and applying them directly to the running kernel in memory.
* Oracle Linux Reference:
* OracleLinux 8: Ksplice User's Guide- Introduction:
"Ksplice enables you to keep your systems up to date and secure by applying important kernel security updates without rebooting." Why Other Options Are Not Correct:
* Option C:Yum cannot upgrade a kernel patched by Ksplice
* Explanation:
* This statement is false. While Ksplice patches the running kernel in memory, yum can still upgrade the kernel packages on disk. After a yum kernel update, a reboot would be necessary to run the new kernel version, but yum operations are not hindered by Ksplice patches.
* Oracle Linux Reference:
* OracleLinux 8: Ksplice User's Guide- Compatibility with Package Managers:
"Ksplice works seamlessly with package management tools like yum and dnf. You can continue to use these tools to manage your kernel packages."
* Option D:Ksplice has two clients; each can run in three different modes.
* Explanation:
* While Ksplice does have two clients (the online and offline clients), the statement about each running in three different modes is inaccurate or misleading. The clients do not operate in "three different modes" per se.
* Oracle Linux Reference:
* No official documentation supports the claim of "three different modes" for each client.
* Option E:The Ksplice client is freely available to all customers.
* Explanation:
* Ksplice is a feature available to customers with an active Oracle Linux Premier Support subscription. It is not freely available to all users.
* Oracle Linux Reference:
* OracleLinux 8: Ksplice User's Guide- Access Requirements:
"To use Ksplice, your system must be covered by an Oracle Linux Premier Support subscription." Conclusion:
Options A and B are correct because Ksplice can be used without a network connection via the offline client, and it allows patching the kernel without shutting down the system, ensuring minimal downtime.


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

  • A. mdadm -create /dev/md0 -level=0 -raid-devices=2 /dev/xvdd1 /dev/xvdd2 -spare-devices=1 /dev
    /xvdd3
  • B. mdadm -create /dev/md0 -level=5 -raid-devices=2 /dev/xvdd1 /dev/xvdd2 -spare-devices=1 /dev
    /xvdd3
  • 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=1 -raid-devices=2 /dev/xvdd1 /dev/xvdd2

Answer: C

Explanation:
The correct command to create a RAID-1 device (mirroring) consisting of two block volumes with one spare device is optionC:mdadm -create /dev/md0 -level=1 -raid-devices=2 /dev/xvdd1 /dev/xvdd2 -spare- devices=1 /dev/xvdd3.
* RAID Level 1:RAID-1, also known as mirroring, involves creating an exact copy (or mirror) of a set of data on two or more disks. This ensures data redundancy; if one disk fails, the other can still provide the data.
* mdadm Command Structure:Themdadmcommand is used to manage and monitor RAID devices on Linux. To create a new RAID array, the--createoption is used, followed by several parameters:
* /dev/md0: The name of the RAID device to be created.
* --level=1: Specifies RAID level 1 (mirroring).
* --raid-devices=2: Indicates the number of active devices (two in this case) to be used in the RAID array.
* /dev/xvdd1 /dev/xvdd2: The two block devices that will form the RAID-1 array.
* --spare-devices=1 /dev/xvdd3: Specifies one spare device (/dev/xvdd3). A spare device is used to automatically replace a failed device in the RAID array.
* Option Analysis:
* A.Incorrect because it specifies RAID level 5 (--level=5), which requires at least three devices and does not match the requirement for RAID-1.
* B.Incorrect because it does not include the--spare-devices=1option, meaning there is no spare device included in this configuration.
* C.Correct as it specifies RAID-1 (--level=1), two active devices (--raid-devices=2), and one spare device (--spare-devices=1).
* D.Incorrect because it specifies RAID level 0 (--level=0), which is a striped set (no redundancy), not a mirrored set (RAID-1).
Oracle Linux Reference:For more detailed information aboutmdadmand RAID configurations in Oracle Linux
8, refer to the following Oracle Linux documentation:
* OracleLinux 8 Managing Storage Devices - RAID Configuration
* OracleLinux 8 mdadm Manual
These references provide comprehensive details on RAID levels,mdadmcommand syntax, and options for creating and managing RAID arrays in Oracle Linux.


NEW QUESTION # 42
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. tcp CLOSE-WAIT 32 0 server.example.com:44732 12.21.0.15:https
  • B. UNCONN 0 0 [::1]:323 [::]:*
  • 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. icmp6 UNCONN 0 0 *:58 *:*
  • E. LISTEN 0 511 *:80 *:* cubic cwnd:10

Answer: C,E

Explanation:
Explanation of Answer C:Thesscommand can be used to display all available internal TCP information, including established connections with detailed TCP metrics, which matches the output in Answer C.
Explanation of Answer D:Thesscommand can display listening ports (TCP in this case) with details like congestion control algorithms (cubic), which aligns with Answer D. The output indicates a listening TCP socket on port 80.


NEW QUESTION # 43
Examine this command:
# cryptsetup luksOpen /dev/xvdd1 cryptfs
What happens upon execution?

  • A. It creates the /dev/mapper/xvdd1/cryptfs device mapping file.
  • B. It creates the /dev/mapper/xvdd1 device mapping file.
  • C. It creates the /dev/mapper/xvdd1-cryptfs device mapping file.
  • D. It creates the /dev/mapper/cryptfs device mapping file.
  • E. It creates the LUKS partition on /dev/xvdd1.

Answer: D


NEW QUESTION # 44
Which three statements are true about DNF modules?

  • A. Installing a module allows a user to select a specific stream.
  • B. Packages exist in multiple streams, where each stream contains a different version.
  • C. Streams cannot declare dependencies on the streams of other modules.
  • D. Modules are a group of packages that are installed together along with dependencies.
  • E. Streams are used to define optional configurations of modules.
  • F. Switching an enabled module stream automatically changes installed packages.
  • G. Profiles are used to provide alternate versions of the same module.

Answer: A,B,D


NEW QUESTION # 45
Which two statements are true about fdisk?

  • A. It can partition disks larger than 2 TB by using a GPT partition table.
  • B. It understands GPT, MBR, and HFS partition tables.
  • C. It can divide logical devices into one or more block disks called partitions.
  • D. fdisk -l displays disk size information for all disks.
  • E. It cannot partition disks larger than 2 TB by using a GPT partition table.

Answer: D,E

Explanation:
* Option B (Correct):Thefdisk -lcommand lists information about all available disks, including their sizes, partition tables, and partition details.
* Option E (Correct):fdiskcannot handle disks larger than 2 TB because it is limited to the Master Boot Record (MBR) partitioning scheme. To manage larger disks (over 2 TB), the GUID Partition Table (GPT) is required, andfdiskdoes not fully support GPT.
* Option A (Incorrect):fdiskdoes not support HFS (Hierarchical File System, used by macOS). It primarily supports MBR and has limited support for GPT.
* Option C (Incorrect):fdiskdoes not support partitioning disks larger than 2 TB with GPT; gdiskorpartedshould be used instead.
* Option D (Incorrect):fdiskdoes not divide logical devices into block disks called partitions; it operates on physical storage devices to create partitions.
Oracle Linux Reference:Refer to:
* OracleLinux 8: Managing Disks and Partitions
* man fdiskfor more details on the usage and limitations of thefdiskutility.


NEW QUESTION # 46
Which two statements are true about the Linux Auditing System?

  • A. Auditing system call rules can affect system performance depending on the amount of information that is logged.
  • B. Auditing modes include permissive, enforcing, and disabled.
  • C. Auditing rules can log administrator attempts to access user home directories.
  • D. Auditing can scan for Common Vulnerabilities and Exposures (CVE) and automatically apply needed patches to a system.
  • E. Auditing includes security policies, each of which includes security rules, or checks, which are checked when you run a security scan.

Answer: A,C


NEW QUESTION # 47
You must prevent Ksplice from reapplying updates at the next system reboot. Which two commands or parameters can do this?

  • A. nouptrack
  • B. uptrack-upgrade -n
  • C. touch /etc/uptrack/disable
  • D. uptrack=0
  • E. uptrack-remove -all

Answer: C,E

Explanation:
Explanation of Answer C:The commanduptrack-remove --allremoves all currently applied Ksplice updates, effectively preventing them from being reapplied upon reboot.
Explanation of Answer E:Creating a file/etc/uptrack/disabledisables Ksplice Uptrack, preventing it from applying any updates at the next system reboot.


NEW QUESTION # 48
Examine this command:
# useradd -m -s /bin/bash alice
Which statement is true about the account?

  • A. It is a member of the wheel group.
  • B. It is assigned a shell but without a password.
  • C. It is not assigned a home directory.
  • D. It is assigned a home directory and a password.

Answer: B


NEW QUESTION # 49
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
    /root
    bash-4.4# ls
    bash: ls: command not found
  • B. 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
  • C. 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
  • D. bash-4.4# cd
    bash: cd: /root: No such file or directory
    bash-4.4# pwd
    /
    bash-4.4# ls
    bin lib64

Answer: D

Explanation:
Explanation of Answer A:When thechrootcommand is executed with/jail, the environment is changed to use
/jailas its new root directory. Inside this environment, only the directories and files copied into/jailare accessible. Since/jaildoes not contain a/rootdirectory, the commandcd(which defaults to changing to the user's home directory) will fail, displayingNo such file or directory. Thepwdcommand shows the root of the chroot environment (/), andlsdisplays the contents of/jail, which includesbinandlib64.


NEW QUESTION # 50
Examine this command:
# cryptsetup luksOpen /dev/xvdd1 cryptfs
What happens upon execution?

  • A. It creates the /dev/mapper/xvdd1/cryptfs device mapping file.
  • B. It creates the /dev/mapper/xvdd1 device mapping file.
  • C. It creates the /dev/mapper/xvdd1-cryptfs device mapping file.
  • D. It creates the /dev/mapper/cryptfs device mapping file.
  • E. It creates the LUKS partition on /dev/xvdd1.

Answer: D

Explanation:
The commandcryptsetup luksOpen /dev/xvdd1 cryptfsis used to open an encrypted LUKS partition. This command maps the encrypted block device/dev/xvdd1to a decrypted block device that is accessible under/dev
/mapper/cryptfs.
* Option A (Correct):This is correct because thecryptsetup luksOpencommand creates a device mapping under/dev/mapper/with the name specified (cryptfsin this case). This mapping allows you to access the encrypted content of/dev/xvdd1through the decrypted virtual device/dev/mapper/cryptfs.
* Options B, C, D, E (Incorrect):These options are incorrect because they do not accurately reflect the standard behavior of thecryptsetup luksOpencommand. The device created will always be in the format
/dev/mapper/<name>where<name>is the alias specified in the command.
Oracle Linux Reference:For more information, refer to:
* OracleLinux 8: Managing Storage Devices
* man cryptsetupfor more details on theluksOpencommand and LUKS management.


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

  • A. Files in this directory hierarchy contain information about running processes.
  • B. Files in this directory hierarchy contain information about system hardware.
  • C. Its contents depend on the packages installed on the system.
  • D. It is used to access device and device driver information.

Answer: C


NEW QUESTION # 52
Which three statements are true about the journalctl command?

  • A. journalctl -bl -p err fails if journal persistence is not configured.
  • B. journalctl -p notice..warning shows all messages from notice to warning log level since the last boot.
  • C. journalctl -k shows kernel logs since the last boot.
  • D. journalctl -p err shows only error log level.
  • E. journalctl -p 6 shows all info log level messages and above.

Answer: C,D,E

Explanation:
Option B: journalctl -p err shows only error log level.
* Explanation:
* The -p or --priority option in journalctl filters messages by their priority level.
* When specifying asingle priority level, journalctl shows messagesonlyat that level.
* The priority levels, as per syslog standards, are:
* 0: emerg
* 1: alert
* 2: crit
* 3: err
* 4: warning
* 5: notice
* 6: info
* 7: debug
* Therefore, journalctl -p err displays messages with priorityerr (3)only.
* Oracle Linux Reference:
* OracleLinux 8: Managing Log Files- Section onFiltering Output withjournalctl:
"Use the -p option to display messages from the journal that have a specific priority level."
* Example:
# journalctl -p err
Option D: journalctl -k shows kernel logs since the last boot.
* Explanation:
* The -k or --dmesg option filters messages from the kernel, equivalent to the output of the dmesg command.
* This option implies -b, which limits the output to messages from the current boot.
* Therefore, journalctl -k displays kernel messages since the last boot.
* Oracle Linux Reference:
* OracleLinux 8: Managing Log Files- Section onViewing Kernel Messages:
"Use the journalctl -k command to display kernel messages since the last system boot."
* Example:
# journalctl -k
Option E: journalctl -p 6 shows all info log level messages and above.
* Explanation:
* When specifying a single numeric priority, journalctl displays messages withthat priority level and higher priority levels(i.e., lower severity).
* Priority levels are ordered from 0 (highest severity) to 7 (lowest severity).
* Therefore, journalctl -p 6 shows messages with priorities:
* 0 (emerg)
* 1 (alert)
* 2 (crit)
* 3 (err)
* 4 (warning)
* 5 (notice)
* 6 (info)
* This includesinfo level messages (6)and all higher priority messages.
* Oracle Linux Reference:
* OracleLinux 8: Managing Log Files- Section onFiltering Output with journalctl:
"When you specify a single priority level, journalctl shows messages at that level and higher severity."
* Example:
# journalctl -p 6
Why Other Options Are Not Correct:
* Option A:journalctl -bl -p err fails if journal persistence is not configured.
* Explanation:
* The -b option displays messages from the current boot. This works even if journal persistence isnotconfigured because the logs from the current boot are stored in volatile memory (/run/log/journal).
* Therefore, the command doesnot failif journal persistence is not configured.
* Oracle Linux Reference:
* OracleLinux 8: Managing Log Files- Section onJournal Volatility:
"By default, the journal stores logs in volatile memory and does not persist logs across reboots unless persistent storage is configured."
* Option C:journalctl -p notice..warning shows all messages from notice to warning log level since the last boot.
* Explanation:
* The -p option allows specifying arangeof priorities. However, the correct order for the range should be from thehigher priority (lower number)to thelower priority (higher number).
* Also, the priorities should be specified in the correct sequence, and ranges are inclusive.
* Moreover, journalctl by default shows messages from all boots unless limited by the -b option.
* Therefore, without -b, it does not limit messages to "since the last boot," making the statement incorrect.
* Correct Command:
* To display messages fromwarning (4)tonotice (5), the command should be:
# journalctl -p warning..notice -b
* But even then, the priorities need to be specified correctly, and the command in Option C is incorrect.
Conclusion:
OptionsB,D, andEare correct because they accurately describe the behavior of the journalctl command in filtering and displaying log messages based on priority levels and sources.


NEW QUESTION # 53
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 a deployment named nginx.
  • B. The command specifies port 80 as the port that the container exposes.
  • C. The command specifies nginx image version 1.14.2 and will fail if the image version is not available.
  • D. The command creates a pod named nginx.
  • E. The command creates and guarantees the availability of a specified number of identical pods.

Answer: B,E

Explanation:
* Option A (Correct):The command creates a Kubernetes Deployment, which ensures the specified number of replicas (pods) are running at all times. The deployment will manage the creation and maintenance of these pods to ensure availability.
* Option D (Correct):The deployment configuration specifies that the container running inside the pod exposes port 80 (containerPort: 80).
* Option B (Incorrect):The deployment is namednginx-deployment, notnginx.
* Option C (Incorrect):The command creates a Deployment object that manages multiple pods; it does not directly create a single pod namednginx.
* Option E (Incorrect):The command specifies the nginx image version1.14.2, but it will not fail immediately if the image version is not available. Kubernetes will attempt to pull the image, and the failure will happen during that step if the image does not exist.
Oracle Linux Reference:Refer to:
* Kubernetes Documentation on Deployments
* kubectl createcommand usage details.


NEW QUESTION # 54
Which two statements are true about removing a physical volume (PV) from a volume group (VG)?

  • A. It can be removed when an active VG has mounted file systems by running vgexport.
  • B. It can be removed only after removing it from its VG by using vgreduce.
  • C. It can be removed when an inactive logical volume is on the VG.
  • D. It cannot be removed when it is part of an active VG.
  • E. It can be removed when it is part of an active VG.

Answer: B,D


NEW QUESTION # 55
Examine the contents of the /etc/exports file on an NFS server:
/status *(rw,async)
/usr/shared/tools *(all-squash,anonuid=501,anongid=501,ro)
/projects/big *(ro) pteam(rw)
The NFS server exports /usr/shared/tools to NFS clients. Which statement is true?

  • A. All clients can mount /usr/shared/tools read-only and NFS ignores the directives defined by the anonuid and anongid options.
  • B. All clients can mount /usr/shared/tools read-only and NFS explicitly maps all requests to the UID and GID of the unprivileged local 501 user.
  • C. All clients can mount /usr/shared/tools read-only and all-squash overrides explicit mapping of the UID and GID defined by anonuid and anongid.
  • D. All clients can mount /usr/shared/tools read-only and NFS explicitly maps all requests to the UID and GID of the privileged local 501 user.
  • E. All clients except those with a local 501 user can mount /usr/shared/tools read-only.

Answer: B


NEW QUESTION # 56
Which three are features of the btrfs file system?

  • A. Block devices mirroring
  • B. Automatic defragmentation
  • C. Cluster file system
  • D. General-purpose volume manager
  • E. Copy-on-write metadata
  • F. Efficient storage for small files
  • G. Online resizing

Answer: A,E,G


NEW QUESTION # 57
Which two statements are true about naming network interfaces?

  • A. The udev device manager generates device names based on a series of schemes.
  • B. Device names incorporate the physical location and hot plug slot index number.
  • C. The udev device manager uses a random number if all other schemes fail.
  • D. Consistent device naming is enabled by default.
  • E. Device names cannot be manually configured.

Answer: A,D


NEW QUESTION # 58
......


The Oracle Linux 8 Advanced System Administration certification is ideal for individuals who want to prove their expertise in Oracle Linux 8 advanced system administration. It validates the skills and knowledge required to manage complex Linux systems in an enterprise environment. Oracle Linux 8 Advanced System Administration certification is recognized worldwide and is highly valued by employers. It can help individuals improve their career prospects and increase their earning potential. Oracle Linux 8 Advanced System Administration certification also provides access to Oracle’s exclusive support services, which can help individuals stay up-to-date with the latest technology and best practices. Overall, the Oracle 1Z0-106 certification is an excellent choice for Linux professionals looking to take their careers to the next level.


To prepare for the Oracle 1Z0-106 certification exam, candidates must have a strong foundation in Linux administration and experience working with Oracle Linux 8. They should be familiar with command-line tools, system configuration files, and network protocols. Candidates must also have experience managing storage systems, including file systems, RAID arrays, and backup and recovery procedures.

 

Oracle Linux 8 Advanced System Administration Free Update With 100% Exam Passing Guarantee: https://www.examtorrent.com/1Z0-106-valid-vce-dumps.html

Real Exam Questions and Answers - Oracle 1Z0-106 Dump is Ready: https://drive.google.com/open?id=1vNUC8ibj-WOqUoD3GdreoWuf76m82Dr5