[2026年06月] 学習材料には有効な101-500日本語効率的問題集!
最新の101-500日本語テストエンジンPDF無料問題集保証!
質問 # 85
軽微なセキュリティ インシデントが発生した後、主任システム管理者から、実行中のシステムにインストールされている RPM を確認するように指示されました。セキュリティに関連する可能性のある変更を分析できる完全なレポートを作成するには、どのコマンドを使用しますか。
- A. .rpm-Va>レポート
- B. rpm-Vqt-- nomd5>レポート
- C. rpm-Va-nofiles > レポート
- D. rpm-checkfiles >レポート
- E. rpm-Qavy > レポート
正解:A
質問 # 86
viエディターで、カーソルの移動やバッファーへの行のコピーなどのコマンドを複数回発行したり、複数の行に適用したりするにはどうすればよいですか?
- A. 後続のすべてのコマンドを4回繰り返す:set iteration = 4などのコマンドを発行します。
- B. 4lや2yjなどのコマンドの直前に番号を指定します。
- C. コマンドを適用する前に、Shiftキーとカーソルキーを使用して、影響を受けるすべての行を選択します。
- D. :repeatコマンドの後に番号とコマンドを続けて使用します。
正解:B
質問 # 87
コマンドラインにカーネルリングバッファーの内容を表示するコマンドはどれですか?
(オプションやパス情報なしでコマンド名のみを提供します)
正解:
解説:
dmesg
Explanation The command that displays the contents of the Kernel Ring Buffer on the command line is dmesg12. The dmesg command is a Linux utility that displays kernel-related messages retrieved from the kernel ring buffer12. The ring buffer stores information about hardware, device driver initialization, and messages fromkernel modules that take place during system startup12. The dmesg command is invaluable when troubleshooting hardware-related errors, warnings, and for diagnosing device failure2.
The dmesg command can be used with various options to control the output format, filter the messages by facility or level, clear the ring buffer, or follow the new messages in real time123. For example, the following command displays the last 10 messages from the kernel ring buffer:
$ dmesg | tail -10
The following command displays the messages from the kernel ring buffer in a human-readable format with colored output:
$ dmesg -H --color
The following command displays the messages from the kernel ring buffer that have the facility kern and the level emerg:
$ dmesg -f kern -l emerg
The following command clears the ring buffer:
$ dmesg --clear
The following command keeps dmesg running and waiting for new messages:
$ dmesg -w
References:
1: dmesg Linux Command {Syntax, Options and Examples} - phoenixNAP 2: Ubuntu Manpage: dmesg - print or control the kernel ring buffer 3: Display Recent Kernel Messages (console, kernel ring buffer, facilities)
質問 # 88
Bashシェルが実行可能コマンドを検索するディレクトリを定義する変数はどれですか?
- A. PATHRC
- B. BASHEXEC
- C. PATH
- D. BASHRC
- E. EXECPATH
正解:C
解説:
The PATH variable defines the directories in which a Bash shell searches for executable commands.
The PATH variable is a colon-separated list of directories that the shell scans when a command is entered. For example, if the PATH variable is set to /usr/local/bin:/usr/bin:/bin, then the shell will look for the command in these three directories, in order. If the command is not found in any of these directories, the shell will report an error message. The other options are either invalid or do not perform the desired task.
The BASHEXEC, EXECPATH and PATHRC variables are not valid Bash variables. The BASHRC variable is used to specify a file that is executed whenever a new interactive shell is started, but it does not affect the command search path. References:
* LPIC-1 Exam 101 Objectives, Topic 103: GNU and Unix Commands, 103.1 Work on the command line
* LPIC-1 Linux Administrator 101-500 Exam FAQ, LPIC-1 Exam 101 Objectives, GNU and Unix Commands (Total Weight: 25)
質問 # 89
次のコマンドのうち、クォータ設定の変更に使用されるのはどれですか? (2つ選択してください。)
- A. setquota
- B. quotaedit
- C. edquota
- D. editquota
- E. quotaset
正解:A、C
質問 # 90 
- A. Option A
- B. Option B
- C. Option C
- D. Option E
- E. Option D
正解:A、C
質問 # 91 
- A. Option B
- B. Option D
- C. Option E
- D. Option A
- E. Option C
正解:B
質問 # 92
コマンドmount -aは何をしますか?
- A. ルート権限でエディターを開き、/ etc / fstabをロードして編集します。
- B. / etc / fstabにリストされているすべてのファイルシステムが、オプションに関係なくマウントされるようにします。
- C. / etc / fstabのオプションautoでリストされているすべてのファイルシステムがマウントされていることを確認します。
- D. 自動的にマウントされたすべてのマウント済みファイルシステムを表示します。
- E. / etc / fstabのオプションnoautoでリストされているすべてのファイルシステムがマウントされていることを確認します。
正解:C
解説:
Explanation
The command mount -a ensures that all file systems listed with the option auto in /etc/fstab are mounted. The
/etc/fstab file contains the information about the file systems that can be mounted automatically or manually.
The option auto means that the file system can be mounted automatically at boot time or when the command mount -a is issued. The option noauto means that the file system can only be mounted manually by specifying the device or mount point. The command mount -a ignores the file systems with the noauto option and mounts the rest of the file systems that are not already mounted. The other options are incorrect because they do not describe the correct behavior of the command mount -a. Option A is wrong because the command mount -a ignores the file systems with the noauto option. Option B is wrong because the command mount -a does not show any output, unless the -v option is used. To show the mounted file systems, the command mount without any arguments can be used. Option C is wrong because the command mount
-a does not open any editor. To edit the /etc/fstab file, a text editor such as vi, nano, or gedit can be used.
Option E is wrong because the command mount -a does not mount all file systems listed in /etc/fstab, but only those with the auto option. References:
* [LPI Linux Essentials - 2.2 Mounting, Unmounting Filesystems]
* Linux mount Command with Examples - phoenixNAP
* How does the Linux command "mount -a" work? - Unix & Linux Stack Exchange
* mount command in Linux with Examples - GeeksforGeeks
* mountLinux
質問 # 93 
- A. / opt / man
- B. / usr / share / man
- C. / var / pkg / man
- D. / usr / doc /
- E. / var / man
正解:B
質問 # 94
プログラムがクラッシュしたときにユーザー用に作成されるコア ファイルのサイズに制限を設定するために使用されるコマンドはどれですか?
- A. edquota
- B. ktrace
- C. コア
- D. クォータ
- E. 制限
正解:E
質問 # 95
Linux 2.0.36 を実行しており、システムに USB マウスを追加する必要があります。次の記述のうち正しいものはどれですか。
- A. Linux では USB サポートは利用できません。
- B. 既存のモジュラーカーネル用の USB モジュールをロードする必要があります。
- C. カーネルを再構築する必要があります。
- D. カーネルをアップグレードする必要があります。
正解:D
質問 # 96
すべての一般的なファイルタイプに関する情報を含む定義データベースファイルを使用して、ファイルのタイプを決定するコマンドはどれですか?
- A. magic
- B. file
- C. pmagic
- D. type
- E. hash
正解:B
質問 # 97 
- A. Option B
- B. Option C
- C. Option A
- D. Option D
正解:B
質問 # 98
yum に追加のリポジトリを追加するには、定義ファイルをどのディレクトリに配置する必要がありますか?
- A. yum.repos.d
- B. yum.repos.d/
- C. /etc/yum.repos.d/
- D. /etc/yum.repos.d
正解:C
解説:
/etc/yum.repos.d/ ディレクトリには、追加の yum リポジトリ用の設定ファイルが含まれています。このディレクトリ内の各ファイルは .repo で終わり、1 つ以上のリポジトリに関する情報が含まれています。yum コマンドはこのディレクトリ内のすべてのファイルを読み取り、ソフトウェア パッケージのソースとして使用します。.repo ファイルの形式は、yum の主要な設定オプションを含む /etc/yum.conf ファイルと似ています。各 .repo ファイルには、1 つ以上のセクションを含めることができます。各セクションは [repository] で始まります。repository はリポジトリの一意の識別子です。セクションには、name、baseurl、enabled、gpgcheck などのさまざまなオプションを含めることができます。たとえば、EPEL リポジトリの .repo ファイルは次のようになります。
[暖かい]
name=Enterprise Linux 7 用追加パッケージ - $basearch baseurl=http://download.fedoraproject.org/pub/epel
/7/$basearch enabled=1 gpgcheck=1 gpgkey=file:///etc/pki/rpm-gpg/RPM-GPG-KEY-EPEL-7 参照:
2, 102.5 RPMおよびYUMパッケージ管理を使用する
4、101-500試験 - 無料の問題と解答 - ITExams.com
yum.conf を実行する
質問 # 99
ファイル内のスペースをタブ文字に変換し、結果を標準出力に出力するコマンドは次のうちどれですか?
- A. tab
- B. iconv
- C. unexpand
- D. expand
正解:C
解説:
Explanation
The unexpand command converts spaces in a file to tab characters and prints the result to standard output. It can take an option -t to specify the number of spaces per tab, otherwise it uses the default value of 8.
Theunexpand command is the opposite of the expand command, which converts tabs to spaces. Both commands are useful for formatting text files according to different coding standards or preferences.
References:
* Unexpand - Convert Spaces to Tabs on Linux Command Line
* Bash Tips: Convert Tabs To Spaces In a File
質問 # 100 
- A. Option B
- B. Option A
- C. Option D
- D. Option C
正解:A
質問 # 101
BIOSを使用したPCのブートシーケンスについて正しいものは次のうちどれですか? (2つ選択してください。)
- A. ブートプロセスの一部はBIOSから構成できます
- B. Linuxは、コンピューターの起動にBIOSの支援を必要としません
- C. BIOSは、ハードディスクなどのセカンダリストレージからハードウェアドライバーをロードすることによって開始されます。
- D. BIOSブートプロセスは、ハードディスクなどのセカンダリストレージが機能している場合にのみ開始されます
- E. コンピューターの電源を入れた後、BIOSが起動プロセスを開始します
正解:A、E
質問 # 102
GRUB 2を3番目のハードディスクのマスターブートレコードにインストールするコマンドは次のうちどれですか?
- A. grub-setup /dev/sdc
- B. grub-mkrescue /dev/sdc
- C. grub2 install /dev/sdc
- D. grub-mbrinstall /dev/sdc
- E. grub-install /dev/sdc
正解:E
解説:
The command that installs GRUB 2 into the master boot record on the third hard disk is grub-install /dev/sdc.
The grub-install command is the high-level tool for installing GRUB 2 on a disk or a partition. It takes a device name as an argument and writes the GRUB 2 boot loader information to the specified location. If the device name is a disk, such as /dev/sdc, the boot loader information is written to the master boot record (MBR) of the disk, which is the first sector that contains the boot code and the partition table. If the device name is a partition, such as /dev/sdc1, the boot loader information is written to the boot sector of the partition, which is the first sector of the partition that contains the boot code and the file system information. The grub- install command is part of the 101.1 Determine and configure hardware settings topic of the LPI Linux Essentials certification program12.
The other commands are either invalid or do not perform the desired task. The grub2 install command does not exist, as grub2 is not a valid command name. The grub-mkrescue command is used to create a bootable GRUB 2 rescue image, not to install GRUB 2 on a disk or a partition3. The grub-mbrinstall command does not exist, as mbrinstall is not a valid subcommand for grub. The grub-setup command is a low-level tool for installing GRUB 2 on a disk or a partition, but it is not recommended for normal use, as it requires specifying the location of the GRUB 2 core image file4. References:
* Linux Essentials - Linux Professional Institute Certification Programs1
* Exam 101 Objectives - Linux Professional Institute2
* GNU GRUB Manual 2.06: Making a GRUB bootable CD-ROM3
* GNU GRUB Manual 2.06: Installing GRUB natively4
質問 # 103
Bashビルトインエクスポートコマンドの目的は何ですか?
- A. サブシェル内のプロセスとしてコマンドを実行します。
- B. ネットワーク上の他のシステムが使用するNFSパーティションを共有します。
- C. アプリケーションの環境変数を設定します。
- D. ディスクをリモートでマウントできます。
- E. コマンド履歴をサブシェルで利用できるようにします。
正解:C
解説:
The export command is a Bash built-in command that exports environment variables and functions for use in other shell sessions1. Environment variables are named values that affect the behavior of applications and processes2. For example, the PATH variable stores a list of directories where executable programs are located, and the LANG variable sets the language and locale of the system2. By using the export command, you can make these variables available to any child process spawned by the current shell1. For example, if you want to set the EDITOR variable to vim for all subshells, you can run:
export EDITOR=vim
The export command can also be used to export functions, which are blocks of code that can be reused by invoking their name3. For example, if you want to create and export a function that prints "Hello world", you can run:
hello () { echo "Hello world"; } export -f hello
Then, you can call the hello function in any subshell or script that inherits the environment from the current shell.
The other options are not related to the export command. Option A refers to the mount command, which attaches a filesystem to a directory4. Option B refers to the command substitution feature, which runs a command in a subshell and replaces it with its output5. Option C refers to the history command, which displays the command history of the current shell. Option E refers to the exportfs command, which maintains the table of exported NFS shares.
:
[LPI Linux Essentials - 1.3 Basic Editing]
[LPI Linux Essentials - 1.4 I/O Redirection]
[LPI Linux Essentials - 1.5 Manage Simple Partitions and Filesystems]
Linux export Command with Examples - phoenixNAP
bash - What does "export" do in shell programming? - Stack Overflow
How to Use Export Command in Linux [Explained for Beginners]
mount(8) - Linux manual page
Command Substitution - Bash Reference Manual
[history(3) - Linux manual page]
[exportfs(8) - Linux manual page]
質問 # 104
ソースからソフトウェアをコンパイルしています。適切な引数を指定してエラーなしで ./configure を実行した後、次に実行するコマンドは何ですか?
正解:
解説:
make
Explanation:
The purpose of the make utility is to determine automatically which pieces of a large program need to be recompiled, and issue the commands to recompile them. example C programs, since they are most common, but you can use make with any programming language whose compiler can be run with a shell command. In fact, make is not limited to programs. You can use it to describe any task where some files must be updated automatically from others whenever the others change.
To prepare to use make, you must write a file called the makefile that describes the relationships among files in your program, and the states the commands for updating each file. In a program, typically the executable file is updated from object files, which are in turn made by compiling source files.
質問 # 105
ディスクパーティションに問題があり、このパーティションでメンテナンスを行う必要がありますが、ユーザーのホームディレクトリがそこにあり、いくつかがログインしています。ユーザーを切断し、メンテナンスタスクを安全に実行できるコマンドはどれですか。
- A. telinit 1
- B. / bin / netstop --maint
- C. /etc/rc.d/init.d/network stop
- D. killall -9 inetd
- E. shutdown -r now
正解:A
解説:
The command that would disconnect the users and allow you to safely execute maintenance tasks on a disk partition is telinit 112. The telinit command is used to change the runlevel of the system, which is a mode of operation that defines what processes and services are running3. The runlevel 1, also known as single-user mode, is a mode that allows only the root user to log in, and disables all network services and graphical interfaces4. This mode is useful for performing system maintenance and recovery tasks, such as repairing a disk partition5.
The other options in the question are not correct because:
* B. shutdown -r now: This command would reboot the system immediately, without disconnecting the users gracefully or allowing you to do any maintenance tasks.
* C. killall -9 inetd: This command would kill the inetd process, which is a daemon that manages network services. This would not disconnect the users who are already logged in, and it would not stop other processes that might interfere with the maintenance tasks.
* D. /bin/netstop --maint: There is no such command in Linux.
* E. /etc/rc.d/init.d/network stop: This command would stop the network service, which would disconnect the users who are logged in remotely, but not the ones who are logged in locally. It would also not stop other processes that might interfere with the maintenance tasks.
:
1: How to Change Runlevels (targets) in SystemD - Tecmint 2: How to Boot into Single User Mode in CentOS
/RHEL 7 - Tecmint 3: Runlevel - Wikipedia 4: Single-user mode - Wikipedia 5: How to Repair a Corrupted Linux File System - Linux.com : [shutdown(8) - Linux manual page] : [inetd(8) - Linux manual page] : [How to Start/Stop or Enable/Disable firewalld on CentOS 7 - Tecmint]
質問 # 106
Linux 環境で新しいディレクトリを作成するために使用されるコマンドはどれですか? (パスやパラメータなしでコマンドのみを指定します。)
正解:
解説:
mkdir, /usr/bin/mkdir
質問 # 107
xargsコマンドの目的は何ですか?
- A. シェルスクリプトが可変引数リストを取るのに役立ちます。
- B. 引数をXサーバーに渡します。
- C. 標準入力(STDIN)を読み取り、実行するコマンドラインを作成します。
- D. 通常、短いオプションのみを受け入れるコマンドに長いオプションを指定できます。
- E. グラフィカルに質問し、シェルに回答を返します。
正解:C
解説:
Explanation
The purpose of the xargs command is to read standard input (STDIN) and build up command lines to execute.
The xargs command can be used to pass arguments to another command that does not accept input from a pipe. For example, rm | xargs echo will echo the arguments passed to the rm command. The xargs command can also limit the number of arguments per command line, insert arguments at different positions, and handle special characters in the input. References: LPI Exam 101 Detailed Objectives, Topic 103: GNU and Unix Commands, Weight: 25, Objective 103.3: Perform basic file management, xargs command
質問 # 108
動的リンカーにプログラムの共有ライブラリのビルドディレクトリを検索するよう指示する必要がある場合、どの環境変数に値を割り当てたり追加したりしますか?
- A. LD_SHARE_PATH
- B. LD_LOAD_PATH
- C. LD_LIB_PATH
- D. LD_LIBRARY_PATH
- E. LD_RUN_PATH
正解:D
解説:
Explanation
The environment variable LD_LIBRARY_PATH is used to tell the dynamic linker to look in a specific directory for some of a program's shared libraries. It is a colon-separated list of directories that are searched by the dynamic linker when looking for a shared library to load1. The directories are searched in the order they are mentioned in. For example, if we have a program that depends on a shared library libfoo.so that is located in /home/user/build/lib, we can run the program with:
LD_LIBRARY_PATH=/home/user/build/lib ./program
This will instruct the dynamic linker to search for libfoo.so in /home/user/build/lib before the default directories. The environment variable LD_LIBRARY_PATH can also be appended to an existing value with the += operator, for example:
LD_LIBRARY_PATH+=:/home/user/build/lib
This will add /home/user/build/lib to the end of the LD_LIBRARY_PATH list. The other options are not valid environment variables for the dynamic linker. LD_LOAD_PATH, LD_LIB_PATH, and LD_SHARE_PATH are not recognized by the dynamic linker. LD_RUN_PATH is a linker option that can be used to embed a librarysearch path in the executable at link time, but it is not an environment variable that can be set or modified at run time2. References:
* LPI Exam 101 Detailed Objectives, section 1.101.3
* ld-linux(8) - Linux manual page
* Setting the dynamic linker with an environment variable - narkive
質問 # 109 
- A. Option B
- B. Option D
- C. Option A
- D. Option C
正解:B
質問 # 110
......
101-500日本語問題集最新の練習テストと299独特な解答:https://www.goshiken.com/Lpi/101-500J-mondaishu.html