Updated May 17, 2025 Verified 1Z0-106 dumps Q&As - 100% Pass [Q14-Q38]

Share

Updated May 17, 2025 Verified 1Z0-106 dumps Q&As - 100% Pass

New 2025 Latest Questions 1Z0-106 Dumps - Use Updated Oracle Exam


Earning the Oracle 1Z0-106 certification can demonstrate to employers that an IT professional has the expertise and skills needed to administer complex Oracle Linux 8 systems. Oracle Linux 8 Advanced System Administration certification can also lead to career advancement opportunities and higher salaries. Overall, the Oracle 1Z0-106 certification exam is an ideal choice for IT professionals who want to validate their advanced system administration skills and knowledge in an Oracle Linux 8 environment.

 

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

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

Answer: A,E


NEW QUESTION # 15
Which takes precedence for ssh program configuration?

  • A. /etc/ssh/sshd_config
  • B. Command line
  • C. /etc/ssh/ssh_config
  • D. ~/.ssh/config

Answer: B


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

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

Answer: B,C,D

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 # 17
Examine this command:
# cryptsetup luksOpen /dev/xvdd1 cryptfs
What happens upon execution?

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

Answer: C

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 # 18
Which two statements are true about control groups (cgroups) in Oracle Linux 8?

  • A. Different controllers from cgroups version 1 and cgroups version 2 cannot be used at the same time.
  • B. Cgroups allow processes to be organized into hierarchical groups whose resource usage cannot be limited and monitored.
  • C. A cgroup is a collection of processes bound to a set of limits or parameters defined in the cgroups filesystem.
  • D. Oracle Linux 8 implements cgroups v2 by default.
  • E. The cgroups filesystem allows limits to be overwritten in the lower levels of the hierarchy.

Answer: C,D


NEW QUESTION # 19
Which two default user account settings are contained in /etc/login.defs?

  • A. Password aging controls.
  • B. Encryption method used to encrypt passwords.
  • C. Group hashed passwords.
  • D. Decryption method used to decrypt passwords.
  • E. User hashed passwords.

Answer: A,B


NEW QUESTION # 20
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: 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
    /root
    bash-4.4# ls
    bash: ls: command not found

Answer: A

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 # 21
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, 6
  • B. 1, 2, 3, 5, 6
  • C. 1, 2, 4, 6
  • D. 1, 2, 4, 5, 6
  • E. 1, 2, 3, 6
  • F. 1, 2, 3, 4, 5, 6

Answer: D

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 # 22
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?

  • A. #kern.* /dev/sssd/sssd.log
  • B. *.info;mail.none;authpriv.none;cron.none /var/log/messages
  • C. cron.* /var/log/cron
  • D. authpriv.* /var/log/auth
  • E. *.emerg *

Answer: D

Explanation:
* Option A (Correct):The configuration lineauthpriv.* /var/log/authwould direct all messages of theauthprivfacility (which includes sensitive authentication messages) to the/var/log/authfile. The log entries provided, which include authentication-related messages from PAM (pam_unix), would be logged due to this setting.
* Option B (Incorrect):The*.emerg *setting logs emergency messages to all users, not specifically the provided log output.
* Option C (Incorrect):This setting logs various non-authentication-related messages to/var/log
/messages. It specifically excludesauthpriv.
* Option D (Incorrect):This setting appears to be commented out and incorrect for the logging behavior described.
* Option E (Incorrect):Thecron.*setting logs cron messages, unrelated to the provided authentication logs.
Oracle Linux Reference:Refer to:
* OracleLinux 8: System Logging with rsyslog


NEW QUESTION # 23
Examine this command and output:
# mdadm --detail /dev/md0
/dev/md0:
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. An extra device was added to this RAID set to increase its size.
  • B. A new RAID device was just added to replace a failed one.
  • C. The RAID set read and write performance is currently sub-optimal.
  • D. A RAID device failed and has returned to normal operating status.
  • E. Only write performance is currently sub-optimal on this RAID set.

Answer: B,C


NEW QUESTION # 24
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.

Answer: C


NEW QUESTION # 25
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. An extra device was added to this RAID set to increase its size.
  • B. A new RAID device was just added to replace a failed one.
  • C. The RAID set read and write performance is currently sub-optimal.
  • D. A RAID device failed and has returned to normal operating status.
  • E. Only write performance is currently sub-optimal on this RAID set.

Answer: B,C

Explanation:
* Option B (Correct):The output shows that the RAID array is in a "degraded, recovering" state, which means one of the devices failed, and the RAID is currently rebuilding with a spare device. When a RAID-5 array is in a degraded state, its read and write performance is reduced because it cannot utilize all disks in parallel, and data is being rebuilt.
* Option C (Correct):The output indicates that/dev/sdf1is marked as "spare rebuilding." This implies that a new spare device has been added to the RAID array to replace a previously failed device, and it is in the process of rebuilding to restore redundancy.
* Option A (Incorrect):The state of the RAID array is "degraded," which indicates that a RAID device is still being rebuilt. The failed device has not yet returned to normal operating status.
* Option D (Incorrect):No extra device was added to increase the RAID set's size. Instead, a spare device was added to replace a failed one.
* Option E (Incorrect):Both read and write performance are sub-optimal in a degraded RAID-5 state because data is being rebuilt using the remaining active devices.
Oracle Linux Reference:For more information, refer to:
* OracleLinux 8: Managing Storage Devices
* man mdadmfor details on managing RAID arrays.


NEW QUESTION # 26
Which takes precedence for ssh program configuration?

  • A. /etc/ssh/sshd_config
  • B. Command line
  • C. /etc/ssh/ssh_config
  • D. ~/.ssh/config

Answer: B

Explanation:
Explanation of Answer C:When configuring SSH, the command-line options take the highest precedence.
Any configuration specified directly on the command line will override settings in user-specific (~/.ssh
/config) or system-wide configuration files (/etc/ssh/ssh_config).


NEW QUESTION # 27
Which two types of reports does iostat generate?

  • A. Swap Utilization Report
  • B. Storage Utilization Report
  • C. CPU Utilization Report
  • D. Memory Utilization Report
  • E. Device Utilization Report

Answer: C,E


NEW QUESTION # 28
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 --format text -k mkdir
  • B. ausearch -a 83 -k mkdir
  • C. ausearch -sc 83 -k mkdir
  • D. ausearch -r -k mkdir
  • E. ausearch -I -k mkdir

Answer: C,E

Explanation:
* Option B (Correct):The-Ior--interpretoption inausearchconverts the numerical system call numbers into their corresponding text names, making the output easier to understand.
* Option C (Correct):The-scoption specifies the system call by name (mkdir), which helps in finding audit logs related to that particular system call in text format.
* Option A, D, E (Incorrect):These options do not specifically translate the numeric system call numbers into human-readable text. OptionAfilters by the numeric ID,Dis an invalid option, andEreverses the search order but does not affect the format.
Oracle Linux Reference:Refer to:
* OracleLinux 8: Auditing and System Logs
* man ausearchfor more details on audit search and interpretation commands.


NEW QUESTION # 29
Examine these commands and output:
# cat /etc/auto.master
/net -hosts
/- auto.direct ro
# cat /etc/auto.direct
/nfs1 host01:/export/share1
/nfs2 -sync host01:/export/share2
/nfs3 host02:/export/share3
Automounter must be used to mount these filesystems. Which mount options will it use?

  • A. All three filesystems are mounted read-write, sync.
  • B. /nfs1 and /nfs3 are mounted read-only, async while /nfs2 is mounted read-write, sync.
  • C. All three filesystems are mounted read-only, sync.
  • D. /nfs1 and /nfs3 are mounted read-only, async while /nfs2 is mounted read-only, sync.
  • E. All three filesystems are mounted read-only, async.

Answer: D

Explanation:
Understanding the Automounter Configuration:
/etc/auto.master:
/net -hosts
/- auto.direct ro
* The /- auto.direct ro line indicates:
* Mount Point Prefix:/ (direct mounts)
* Map File:auto.direct
* Global Mount Options:ro (read-only)
/etc/auto.direct:
/nfs1 host01:/export/share1
/nfs2 -sync host01:/export/share2
/nfs3 host02:/export/share3
* /nfs1 and /nfs3:
* No specific mount options in auto.direct.
* Inherit the ro option from /etc/auto.master.
* /nfs2:
* Specifies -sync option in auto.direct.
* Inherits ro from /etc/auto.master.
* Mount options are ro,sync.
Mount Options Resolution:
* Global Options (ro) apply to all entries unless overridden.
* Per-Entry Options in auto.direct override or supplement global options.
Effective Mount Options:
* /nfs1:
* ro (from /etc/auto.master)
* Default NFS options (async unless sync is specified)
* /nfs2:
* ro (from /etc/auto.master)
* sync (specified in auto.direct)
* /nfs3:
* ro (from /etc/auto.master)
* Default NFS options (async)
Oracle Linux Reference:
* OracleLinux 8: Configuring File Systems-Automounter Configuration:
"Options specified in the master map apply to all entries in the map unless overridden by entries in the map itself."
* NFS Default Options:
"By default, NFS mounts are asynchronous (async) unless the sync option is specified." Conclusion:
* /nfs1 and /nfs3:Mounted with ro,async.
* /nfs2:Mounted with ro,sync.
* Correct Option:A


NEW QUESTION # 30
Which two methods of changing kernel parameters can you use to modify values for the running system?

  • A. Issuing the sysctl -w command to write values to specific files in the /sys directory.
  • B. Using the echo command to write values to specific files in the /sys directory.
  • C. Using the echo command to write values to specific files in the /proc/sys directory.
  • D. Issuing the sysctl -w command to write values to specific files in the /proc/sys directory.
  • E. Adding to or modifying parameters and values in the /etc/sysctl.conf file followed by issuing the sysctl -p command.

Answer: C,D


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

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

Answer: B


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

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

Answer: A,C


NEW QUESTION # 33
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. Switching an enabled module stream automatically changes installed packages.
  • D. Streams are used to define optional configurations of modules.
  • E. Streams cannot declare dependencies on the streams of other modules.
  • F. Modules are a group of packages that are installed together along with dependencies.
  • G. Profiles are used to provide alternate versions of the same module.

Answer: A,B,F

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

Answer: D,E


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

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

Answer: A,C

Explanation:
Explanation of Answer A:Consistent network device naming is enabled by default in Oracle Linux 8. This feature ensures that network interfaces retain their names across reboots, which is important for maintaining network configuration consistency. This is managed through the Predictable Network Interface Names feature, which is part of thesystemdproject and is implemented inudev.
Explanation of Answer B:Theudevdevice manager is responsible for dynamically managing device nodes in the/devdirectory. It generates network interface names based on several naming schemes, such as the interface's physical location on the bus (likeenp0s3), MAC address, or other attributes. These schemes are used to provide consistent and predictable names for network interfaces.


NEW QUESTION # 36
Which command produces human-readable timestamps in kernel ring buffer messages?

  • A. dmesg -W
  • B. dmesg -t
  • C. dmesg -T
  • D. dmesg -x

Answer: C


NEW QUESTION # 37
Examine this udev device naming rule which gets processed successfully:
makefile
KERNEL=="hdb", DRIVER=="ide-disk", SYMLINK+="sparedisk"
Which two statements are true?

  • A. Symbolic link /dev/sparedisk is created linking to /dev/hdb and with an ide-disk device driver, thus overwriting existing symbolic links.
  • B. The matching device will have the kernel device name /dev/hdb.
  • C. Symbolic link /dev/sparedisk is created for a device named /dev/hdb which has an ide-disk device driver if such a device is discovered.
  • D. Symbolic link /dev/sparedisk is created for a device named /dev/hdb or one that has an ide-disk device driver, whichever is discovered first.
  • E. The matching device will be named /dev/sparedisk.

Answer: B,C

Explanation:
Option C (Correct):If a device named/dev/hdbwith theide-diskdriver is discovered, a symbolic link/dev
/sparediskwill be created, pointing to/dev/hdb.
Option D (Correct):TheKERNEL=="hdb"match specifies that the device will have the kernel device name
/dev/hdb.
Option A (Incorrect):This is incorrect because existing symbolic links are not overwritten unless explicitly defined.
Option B (Incorrect):The device itself is not renamed to/dev/sparedisk; rather, a symbolic link is created.
Option E (Incorrect):The rule specifically requires bothKERNEL=="hdb"andDRIVER=="ide-disk"to match; it is not an either/or condition.


NEW QUESTION # 38
......

Latest 1Z0-106 Exam Dumps Oracle Exam from Training: https://www.validtorrent.com/1Z0-106-valid-exam-torrent.html