1Z0-106日本語版問題集 & 1Z0-106最新問題当社GoShikenの1Z0-106学習教材は、実際の1Z0-106試験に対する自信を高め、参加する試験の質問と回答を思い出すのに役立ちます。最も適したバージョンを選択できます。当社の1Z0-106試験トレントは、重要な情報を簡素化し、焦点を絞って1Z0-106テストトレントを短時間で習得できるようにします。 1Z0-106学習教材の包括的な理解を得るために、1Z0-106試験問題のデモを無料でダウンロードする場合は、まず製品の紹介をご覧ください。
Oracle 1Z0-106 試験は、Oracle Corporation が提供する認定試験で、Oracle Linux 8 オペレーティングシステムの高度なシステム管理のスキルをテストします。この試験は、Oracle Linux 8 オペレーティングシステムを使用するエンタープライズ環境を管理する IT プロフェッショナルを対象としています。認定試験は、ネットワークおよびセキュリティ構成、システムパフォーマンスの監視、ストレージの管理などの高度なシステム管理タスクを管理およびトラブルシューティングするスキルと知識を検証します。 Oracle Linux 8 Advanced System Administration 認定 1Z0-106 試験問題 (Q30-Q35):質問 # 30
Which two actions are performed by the logrotate utility?
A. encrypted log files
B. rotating log files as specified
C. duplicating log files
D. compressing log files
E. hashing log files
正解:B、D
質問 # 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 not assigned a home directory.
C. It is a member of the wheel group.
D. It is assigned a shell but without a password.
正解:D
質問 # 32
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.comracle):
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 is listed in /etc/vsftpd/user_list and USERLIST_ENABLE is set to YES in /etc/vsftpd
/vsftpd.conf.
B. The oracle user does not exist on host01.example.com.
C. The oracle user is listed in /etc/vsftpd/ftpusers.
D. LOCAL_ENABLE is set to NO in /etc/vsftpd/vsftpd.conf.
E. The oracle user is listed in /etc/vsftpd/user_list and USERLIST_ENABLE is set to NO in /etc/vsftpd
/vsftpd.conf.
正解:A
解説:
The530 Permission deniederror indicates that the user is not allowed to log in. In vsFTPd, if theUSERLIST_ENABLEoption is set toYESin/etc/vsftpd/vsftpd.conf, and theoracleuser is listed in/etc/vsftpd
/user_list, that user is explicitly denied access to the FTP server.
質問 # 33
Which two statements are true about kernel boot parameters?
A. Each kernel version's boot parameters are stored in independent configuration files in/boot/loader
/entries.
B. Parameters passed to the kernel from the GRUB 2 menu are persistent and apply to all subsequent reboots.
C. Boot parameters are defined as values for the GRUB_CMDLINE_LINUX directive in the /etc/default
/grub file.
D. Boot parameters defined as values for the GRUB_BOOT command-line interface are persistent and apply to all subsequent reboots.
正解:A、C
解説:
* Option A (Correct):Boot parameters are set in/etc/default/grubunder
theGRUB_CMDLINE_LINUXdirective. After modifying this file, thegrub2-mkconfigcommand must be run to apply changes.
* Option C (Correct):The/boot/loader/entries/directory contains configuration files for each kernel version, which store the boot parameters separately.
* Option B (Incorrect):Boot parameters specified at the GRUB command line are not persistent across reboots unless added to the configuration file.
* Option D (Incorrect)arameters set from the GRUB menu are temporary and do not apply to subsequent reboots.
Oracle Linux Reference:Refer to:
* OracleLinux 8: Configuring GRUB2
質問 # 34
Examine this command:
$ podman run -name=oracleshell -it oraclelinux:8 -slim
Which two statements are true upon execution?
A. The container is removed by typing exit at the bash shell prompt.
B. The container named oracleshell must already exist; otherwise, the command fails.
C. The container creates and starts an interactive shell.
D. The container is created and started in a single command.
E. The command fails if the oraclelinux:8 -slim image does not exist on the local machine.
正解:C、D
解説:
Understanding the Command:
$ podman run --name=oracleshell -it oraclelinux:8-slim
(Note: The image is likely oraclelinux:8-slim without a space.)
* podman run:Creates and starts a new container.
* --name=oracleshell:Assigns the name oracleshell to the container.
* -it:Runs the container in interactive mode with a pseudo-TTY.
* oraclelinux:8-slim:Specifies the image to use.
Option A: The container creates and starts an interactive shell.
* Explanation:
* The -it option runs the container interactively.
* If no command is specified, it executes the default command in the image (usually /bin/bash).
* This provides an interactive shell inside the container.
* Oracle Linux Reference:
* OracleLinux 8: Managing Containers-Running Containers Interactively:
"You can run a container in interactive mode using the -i and -t options together." Option D: The container is created and started in a single command.
* Explanation:
* The podman run command handles both creation and starting of the container.
* There's no need to create the container separately.
* Oracle Linux Reference:
* OracleLinux 8: Managing Containers-Creating and Running Containers:
"The podman run command creates and starts a container in one operation." Why Other Options Are Incorrect:
Option B:The container does not need to pre-exist; podman run creates it if it doesn't exist.
Option C:If the image doesn't exist locally, podman will attempt to pull it from the registry.
* Oracle Linux Reference:
* OracleLinux 8: Managing Containers-Pulling Images:
"If you attempt to run a container with an image that does not exist locally, Podman automatically pulls the image from a registry." Option E:The container is not removed upon exit unless the --rm option is used.
* Oracle Linux Reference:
* OracleLinux 8: Managing Containers-Automatically Removing Containers:
"Use the --rm option to automatically remove the container when it exits." Conclusion:
* Correct Options:A, D
* Summary:The command creates and starts a new container named oracleshell and opens an interactive shell session inside it.