試験高合格率保証2024年11月02日 102-500日本語試験問題と正確な回答!
テストエンジン練習問題102-500日本語有効最新の問題集
質問 # 94
Apache サーバーが 10 個の予備のサーバー プロセスを提供するように構成されている場合、通常はどのような種類の Web サイトにサービスを提供しますか?
- A. ボリュームの多い Web サイト
- B. 1 ユーザー ボリュームの Web サイト
- C. 10 ユーザー以下の Web サイト
- D. 少量から中程度の量の Web サイト
正解:D
質問 # 95
/ etc / profileファイルの目的は何ですか?
- A. ログインが許可されているユーザーを定義するセキュリティプロファイルが含まれています。
- B. アプリケーションを初めて実行するユーザーのデフォルトのアプリケーションプロファイルが含まれています。
- C. ログイン後に表示されるウェルカムメッセージが含まれています。
- D. ユーザーがログインしたときに設定される環境変数が含まれています。
正解:D
解説:
The file /etc/profile is a configuration file that is read by the Bash shell when a user logs in. It contains commands and settings that apply to all users of the system, such as environment variables, PATH information, terminal settings, and security commands. Environment variables are variables that affect the behavior of programs and processes. For example, the PATH variable defines the directories where the shell looks for executable files, and the JAVA_HOME variable defines the location of the Java installation. The
/etc/profile file can also source other files from the /etc/profile.d/ directory, which can contain additional scripts for setting environment variables or other system-wide settings. The /etc/profile file is not the only file that can set environment variables for a user. There are also user-specific files, such as
~/.profile,~/.bash_profile, and ~/.bashrc, that are read by the shell after /etc/profile. These files can override or append to the settings in /etc/profile, or define new variables for the user. The order and precedence of these files depend on the type of shell (login or interactive) and the options used to start the shell. You can learn more about the difference between these files here1 and here2. References:
https://www.thegeekdiary.com/understanding-etc-profile-configuration-file-in-linux/
https://unix.stackexchange.com/questions/704610/what-does-the-etc-profile-do
質問 # 96
どのコマンドがVARIABLEという名前のシェル変数をサブシェルから見えるようにしますか?
- A. $ VARIABLEを設定
- B. VARIABLEをエクスポート
- C. $ VARIABLEをエクスポート
- D. VARIABLEに設定
- E. env VARIABLE
正解:B
質問 # 97
どのファイルが存在すると、root以外のすべてのユーザーがシステムにログインできなくなりますか? (パスを含むファイルのフルネームを指定してください。)
正解:
解説:
/etc/nologin
質問 # 98
ユーザーのアカウントの有効期間情報を変更するために使用できるコマンドはどれですか。 (3つの正しい答えを選んでください。)
- A. usermod
- B. chsh
- C. passwd
- D. chage
- E. chattr
正解:A、C、D
解説:
The usermod, passwd, and chage commands can be used to change a user's account aging information. These commands can modify the password expiry date, the last password change date, the minimum and maximum number of days between password changes, the number of days of warning before password expiration, and the number of days of inactivity after password expiration. The usermod command is mainly used for modifying a user account, but it also has options for changing the password expiry and aging information, such as -e, -f, -p, and -L1. The passwd command is mainly used for changing the user password, but it also has options for changing the password expiry and aging information, such as -e, -i, -n, -w, and -x2. The chagecommand is specifically used for changing the user password expiry and aging information, and it has options such as -d, -E, -I, -m, -M, and -W3.
The other options, chattr and chsh, are not related to changing the user's account aging information. The chattr command is used to change the file attributes on a Linux file system4. The chsh command is used to change the user's login shell5.
References:
* usermod(8) - Linux manual page
* passwd(1) - Linux manual page
* chage(1) - Linux manual page
* chattr(1) - Linux manual page
* chsh(1) - Linux manual page
質問 # 99
空白を埋める
ログイン試行に使用される秘密鍵の場所を指定する ssh コマンドのパラメーターはどれですか? (値やパラメーターを指定せずに、オプション名のみを指定します。)
正解:
解説:
ssh-keygen
質問 # 100
以前に非アクティブなネットワークインタフェースをアクティブにするには、どのパラメータをifconfigに渡す必要がありますか? (コマンド、パス、追加オプションなしでパラメーターを指定してください)
正解:
解説:
up
質問 # 101
ホスト検索で/ etc / hostsファイルを参照するためには、Name Service Switch構成ファイルのhostsオプションにどのキーワードをリストする必要がありますか。
正解:
解説:
files
質問 # 102
システムのIPルーティングテーブルからデフォルトゲートウェイを削除するコマンドは何ですか? (正しい答えを2つ選んでください。)
- A. sysctl ipv4.default_gw = 0
- B. デフォルトのルートデル
- C. ifconfigがデフォルトを設定解除しました
- D. ip route delのデフォルト
- E. netstat -r default
正解:B、D
質問 # 103
次のプロトコルのうち、オープンリレーという用語に関連するものはどれですか?
- A. LDAP
- B. IMAP
- C. SMTP
- D. POP3
- E. NTP
正解:C
解説:
SMTP stands for Simple Mail Transfer Protocol, which is a standard for sending and receiving email messages over the Internet. An open relay is a SMTP server that is configured to allow anyone on the Internet to send email through it, without verifying the identity or the origin of the sender. This can be exploited by spammers and hackers to send large volumes of unwanted or malicious email, while hiding their true identity and location. Open relays are considered a security risk and a source of spam, and are often blocked or blacklisted by other email servers. To prevent open relays, SMTP servers should be configured to only accept email from authorized users or domains, and to reject or filter email from unknown or suspicious sources. References:
* Open mail relay - Wikipedia
* What is Open Relay? - Definition from Techopedia
* What is an open relay and how do I close one? - Validity Help Center
* LPI Linux Essentials: 1.5 Security and File Permissions: 1.5.3 Network Security
* LPIC-1: System Administrator: 102.5 Implement basic network security: 102.5.1 TCP Wrappers
質問 # 104
次のうちどれがNTPクライアントによって観察され修正されますか?
- A. 夏時間をサポートするために必要な調整。
- B. システムクロックと基準クロックの間の時間のずれ。
- C. 現在のコンピューターの所在地のタイムゾーンを変更します。
- D. システムクロックとハードウェアクロックの間の時間のずれ。
正解:B
質問 # 105
以前に非アクティブなネットワークインタフェースをアクティブにするには、どのパラメータをifconfigに渡す必要がありますか? (コマンド、パス、追加オプションなしでパラメーターを指定してください)
正解:
解説:
up
Explanation:
The parameter that must be passed to ifconfig to activate a previously inactive network interface is up.
The up parameter tells the kernel to activate the network interface and allow it to send and receive packets.
The opposite of up is down, which deactivates the network interface. The up parameter is part of the topic 109.2:
Basic network configuration, which is one of the objectives of the LPI Linux Administrator - 102 exam12.
References: 1: https://learning.lpi.org/en/learning-materials/102-500/ 2:
https://www.lpi.org/our-certifications/exam-102-objectives/
質問 # 106 
- A. set -a FOOBAR = ""; ./ myscript
- B. env -i FOOBAR./myscript
- C. unset -v FOOBAR; ./ myscript
- D. env -u FOOBAR./myscript
正解:D
質問 # 107
xinetd設定ファイルで、どの属性がサービスを提供するために使用されるネットワークアドレスを指定しますか?
正解:
解説:
bind, interface
Explanation:
The bind attribute in an xinetd configuration file specifies the network address that will be used to provide the service. It can be either an IP address or a hostname. If the bindattribute is not specified, xinetd will listen on all available addresses on the system. The bind attribute can be used to restrict the service to a specific interface or network. For example, bind = 192.168.1.100 will only allow the service to be accessed from the
192.168.1.0/24 network. The bind attribute can also be used to provide different configurations for the same service on different addresses. For example, one can have two telnet configuration files, one with bind =
192.168.1.100 and another with bind = 192.168.2.100, to offer different access rules or options for the telnet service on each address.
References:
* xinetd - Wikipedia
* 17.4. xinetd Configuration Files - Red Hat Customer Portal
* How to configure xinetd ? - Red Hat Customer Portal
質問 # 108 
myfunction A B C
- A. A B
- B. B C
- C. C B A
- D. A C
- E. A B C
正解:A
質問 # 109
......
試験解答102-500日本語最新版とテストエンジン:https://jp.fast2test.com/102-500J-premium-file.html