[2024年12月08日] 完全版最新の102-500日本語問題集で100%カバー率問題と解答があなたをリアル試験で合格させる [Q51-Q66]

Share

[2024年12月08日] 完全版最新の102-500日本語問題集で100%カバー率問題と解答があなたをリアル試験で合格させる

最新102-500日本語試験問題集で有効最新の問題集

質問 # 51
特定のユーザーがatを使ってタスクをスケジュールできないようにするには、管理者は何をすべきですか?

  • A. /etc/at.allowファイルに特定のユーザーを追加します。
  • B. /etc/atd.confファイルの[deny]セクションに特定のユーザーを追加します。
  • C. /etc/at.denyファイルに特定のユーザーを追加します。
  • D. atd --deny [user]を実行してください。
  • E. 特定のユーザーをnojobsグループに追加します。

正解:C


質問 # 52
/etc/ に cron.allow も cron.deny も存在しない場合、次のどれが当てはまりますか?

  • A. cron デーモンは起動を拒否し、システムのログファイルに不足しているファイルを報告します。
  • B. 追加の構成を行わないと、すべてのユーザーがユーザー固有の crontab を持つことができます。
  • C. ユーザーがユーザー固有の crontab を作成する場合、システム管理者はそれを明示的に承認する必要があります。
  • D. 追加の構成がなければ、ユーザーはユーザー固有の crontab を持つことができません。

正解:D


質問 # 53
IPv6では、ユニキャストアドレスのインタフェース識別子に何ビット使用されていますか? (数字のみで番号を指定してください。)

正解:

解説:
64
Explanation:
With IPv6, the interface identifier of an unicast address is typically a 64-bit value that is used to identify a host's network interface. The interface identifier can be derived from the MAC address of the network card, or it can be randomly generated or manually configured. The interface identifier is the rightmost 64 bits of the most commonly encountered address types, such as global unicast (2000::/3) and link-local (fe80::/10). The interface identifier is different from the network prefix, which is the leftmost bits of the address that indicate the network or subnet to which the host belongs. The network prefix can vary in length, depending on the address type and the subnetting scheme. The network prefix and the interface identifier are separated by a double colon (::) in the IPv6 address notation. For example, in the address
2001:db8:1234:5678:abcd:ef12:3456:7890, the network prefix is 2001:db8:1234:5678 and the interface identifier is abcd:ef12:3456:7890. References:https://study-ccna.com/ipv6-interface-identifier/
https://networklessons.com/ipv6/ipv6-eui-64-explained


質問 # 54
TCPポートを開いたプロセスのPIDを識別することができるコマンドは次のうちどれですか?

  • A. strace
  • B. nessus
  • C. debug
  • D. lsof
  • E. ptrace

正解:D


質問 # 55
コマンドdateを使用して実行できるタスクはどれですか? (正しい答えを2つ選んでください。)

  • A. NTPで時刻を更新します。
  • B. 日時を異なる形式で出力します。
  • C. システムクロックを設定します。
  • D. ハードウェアクロックとシステムクロックを同期させます。
  • E. ハードウェアクロックを設定します。

正解:B、C


質問 # 56
script./myscriptのみを実行するために、既存の環境変数FOOBARをどのように抑制することができますか?

  • A. env -i FOOBAR./myscript
  • B. set -a FOOBAR = ""; ./ myscript
  • C. unset -v FOOBAR; ./ myscript
  • D. env -u FOOBAR./myscript

正解:D

解説:
The env command can be used to run a utility or command in a custom environment without having to modify the currently existing environment1. The -u or --unset option can be used to remove a variable from the environment12. Therefore, the command env -u FOOBAR./myscript will run the script./myscript in an environment where the variable FOOBAR is suppressed. The other options are incorrect for the following reasons:
* A. unset -v FOOBAR;./myscript: This will unset the variable FOOBAR in the current shell, not just for the script execution. The semicolon (;) separates two commands, so the script will run in the same environment as the unset command.
* B. set -a FOOBAR="";./myscript: This will set the variable FOOBAR to an empty string, not suppress it. The -a option means that the variable will be exported to the environment of subsequent commands, so the script will still see the variable FOOBAR, but with no value.
* D. env -i FOOBAR./myscript: This will run the script in an empty environment, not just suppress the variable FOOBAR. The -i or --ignore-environment option means that no environment variables will be passed to the command12. References: env command in Linux with Examples - GeeksforGeeks, env - Wikipedia.


質問 # 57
pool.ntp.orgとは何ですか?

  • A. Linuxカーネルでシステム時間を維持するための廃止予定の機能
  • B. Linuxの地域化について議論するために使用されていたコミュニティWebサイト
  • C. OpenNTPDプロジェクト用のバイナリパッケージとソースパッケージを提供するWebサイト
  • D. さまざまなタイムサーバーの仮想クラスタ

正解:D


質問 # 58

  • A. Option C
  • B. Option D
  • C. Option A
  • D. Option B

正解:C


質問 # 59
リストされている方法のうち、対話的にログインする単一ユーザーの機能を一時的に中断する最良の方法はどれですか?

  • A. ユーザーのパスワードを変更します。
  • B. コマンドログアウトをユーザーのプロファイルに入れます。
  • C. / etc / passwdのユーザー名を変更してください。
  • D. / etc / nologinにユーザー名を追加してください。
  • E. ユーザーアカウントを期限切れにするには、changeを使用します。

正解:E

解説:
The best way to temporarily suspend a single user's ability to interactively login is to use the chage command to expire the user account. The chage command can modify the expiration date of a user account, which is stored in the /etc/shadow file. By setting the expiration date to a past date, the user account will be locked and the user will not be able to login. This method is temporary because the expiration date can be changed again to a future date or removed to unlock the user account. For example, to expire the user account linuxconfig, we can use the following command:
# chage -E 0 linuxconfig
This will set the expiration date to January 1, 1970, which is the epoch date. To check the expiration date of a user account, we can use the -l option:
# chage -l linuxconfig
Last password change : Aug 24, 2021
Password expires : never
Password inactive : never
Account expires : Jan 01, 1970
Minimum number of days between password change : 0
Maximum number of days between password change : 99999
Number of days of warning before password expires : 7
To remove the expiration date of a user account, we can use the -E option with an empty argument:
# chage -E "" linuxconfig
The other options are either invalid or not recommended. Adding the user name to /etc/nologin will not work, because /etc/nologin is a file that contains a message to be displayed to users who try to login when the system is down for maintenance. Changing the user's password is not a good idea, because it will affect the user's authentication and may cause security issues. Changing the user name in /etc/passwd will also affect the user's authentication and may cause inconsistencies with other files and services. Placing the command logout in the user's profile will not prevent the user from logging in, but only log them out immediately after login, which is not very elegant or secure. References: 1: How to disable user login with Linux nologin - LinuxConfig.org 2:
Disable a user's login without disabling the account - Unix & Linux Stack Exchange 3: How to Block or Disable Normal User Logins in Linux? - GeeksforGeeks 4: How to Disable User Logins on Linux | Baeldung on Linux 5: How to Disable a User in Linux - Linux Nightly 6: How to deactivate or disable a user account in Ubuntu 20.04 LTS - Vitux 7: chage(1) - Linux manual page


質問 # 60
NetworkManager に含まれるコマンドのうち、コマンド ラインで NetworkManager に簡単にアクセスできる Curses アプリケーションはどれですか? (パスやパラメータを指定せずにコマンドのみを指定します。)

正解:

解説:
nmtui


質問 # 61

  • A. snmp.conf
  • B. cupsd.conf
  • C. cups-devices.conf
  • D. printcap.conf
  • E. printers.conf

正解:E


質問 # 62
環境変数のスコープ内から実行されるコマンドのタイムゾーンを変更するためにどの環境変数を設定する必要がありますか? (変数名だけを指定してください。)

正解:

解説:
TZ


質問 # 63

  • A. Option C
  • B. Option D
  • C. Option A
  • D. Option B

正解:C


質問 # 64
コマンドuserdel --force --remove bobに関して正しいことは何ですか? (正しい答えを2つ選んでください。)

  • A. ロケートデータベースはbobが所有するファイルを削除するように更新されます。
  • B. ユーザーbobがシステムのユーザーデータベースから削除されます。
  • C. ユーザーbobのホームディレクトリが削除されました。
  • D. bobが所有するすべてのファイルは、マウントされているすべてのファイルシステムから削除されます。
  • E. ボブがグループの最後のメンバーだった場合、そのグループは削除されます。

正解:B、C


質問 # 65
/etc/syslog.conf の次のエントリのうち、すべてのメール関連イベントをファイル /var/log/ に書き込み、すべての重要なイベントをリモート サーバー logger.example.com に送信するのはどれですか? メールログ

  • A. mail *
    /var/log/maillog
    mail crit @logger.example.org
  • B. mail
    /var/log/maillog
    mail.crit @logger.example.org
  • C. mail.*
    /var/log/maillog
    mail.crit syslog://logger.example.org
  • D. mail.*
    /var/log/maillog
    mail,crit @logger.example.org
  • E. mail.*
    /var/log/maillog
    mail.crit @logger.example.org

正解:E


質問 # 66
......

無料セールまもなく終了!100%有効な102-500日本語試験:https://www.passtest.jp/Lpi/102-500J-shiken.html