2024年最新のに更新されたのは010-160日本語テストエンジンとPDFで完全版無料問題集保証!
最新のLPI Linux Essentials 010-160日本語実際の無料試験問題
質問 # 42
WebブラウザのCookieが危険なのはなぜですか?
- A. クッキーは常に一般公開されており、インターネット上の誰でもアクセスできます。
- B. Cookieは大量のストレージを消費し、ディスク容量を使い果たす可能性があります。
- C. Cookieはユーザーの識別と追跡をサポートします。
- D. Cookieは、Cookieが削除されると失われる重要なデータを保存します。
- E. Cookieにはウイルスやマルウェアが含まれて実行される可能性があります。
正解:C
質問 # 43
次のコマンドのうち、現在の作業ディレクトリへの絶対パスを表示するのはどれですか?
- A. cd ~/home
- B. ls -l
- C. cd ..
- D. pwd
- E. who
正解:D
質問 # 44
Linuxディストリビューションとは何ですか?
- A. すべてのファイルシステムをマウントした後のrootアカウントから見たLinuxファイルシステム。
- B. Linuxカーネル、システムユーティリティ、その他のソフトウェアのバンドル。
- C. Linuxをベースにしているが通常のLinuxカーネルとは互換性がないオペレーティングシステム。
- D. Linuxが他のプロセッサアーキテクチャ上で動作できるようにするためのLinuxへの一連の変更。
- E. Linuxカーネルのソースコードの配布を管理する一連の規則。
正解:B
質問 # 45
次のコマンドのうち、圧縮アーカイブfile1.tar.gzの内容を抽出するものはどれですか?
- A. tar -czf file1.tar.gz
- B. detar file1.tar.gz
- C. tar -xzf file1.tar.gz
- D. tar --extract file1.tar.gz
- E. ztar file1.tar.gz
正解:C
解説:
Explanation
The correct command to extract the contents of the compressed archive file1.tar.gz is tar -xzf file1.tar.gz. This command uses the following options:
* -x means extract files from an archive.
* -z means filter the archive through gzip, which is a compression program that reduces the size of files.
* -f means use the following archive file name, which is file1.tar.gz in this case.
The other commands are incorrect for the following reasons:
* tar -czf file1.tar.gz creates a compressed archive file1.tar.gz from the files specified after the command, not extract it.
* ztar file1.tar.gz is not a valid command, as ztar is not a standard program or option for tar.
* tar --extract file1.tar.gz is missing the -z option to handle the gzip compression, and also the -f option to specify the file name.
* detar file1.tar.gz is not a valid command, as detar is not a standard program or option for tar.
References:
* Linux Essentials - Topic 106: The Linux Operating System, section 106.2 Use single shell commands and one line command sequences to perform basic tasks on the command line.
* LPI Linux Essentials Study Guide: Exam 010 v1.6, 3rd Edition, Chapter 5: Working with Files and Directories, section Compressing and Archiving Files.
質問 # 46
suコマンドには何が当てはまりますか?
- A. これは、rootアカウントのデフォルトのシェルです。
- B. ユーザーrootのみが使用できます。
- C. 特定の時間枠でルートアカウントをロックします。
- D. 別のユーザーとしてシェルまたはコマンドを実行します。
- E. メイン管理者アカウントの名前を変更します。
正解:D
解説:
Explanation
The su command stands for substitute user or switch user. It allows you to run a shell or a command as another user, usually the superuser or root. To use the su command, you need to know the password of the target user.
For example, if you want to switch to the root user, you can type su - and enter the root password. This will give you a root shell, where you can execute commands with administrative privileges. To exit the root shell, you can type exit or press Ctrl-D. The su command is not the default shell of the root account, nor can it only be used by the root user. It can be used by any user who knows the password of another user. The su command does not change the name of the main administrator account, which is always root on Linux systems. The su command also does not lock the root account in specific time frames, although there are other ways to do that, such as using the pam_time module. References:
* Linux Essentials - Linux Professional Institute (LPI), section 5.1.1
* LPI Linux Essentials Study Guide: Exam 010 v1.6, 3rd Edition, chapter 9, page 219.
質問 # 47
次のDNSレコードタイプのどれがIPアドレスを保持していますか? (2つ選択してください。)
- A. AAAA
- B. CNAME
- C. A
- D. NS
- E. MX
正解:C、E
質問 # 48
次のLinuxディストリビューションのうち、Red Hat Enterprise Linuxから派生したものはどれですか?
- A. CentOS
- B. Debian
- C. openSUSE
- D. Ubuntu
- E. Raspbian
正解:A
質問 # 49
新しいLinuxコンピューティングインスタンスは、laaSクラウドでどのようにプロビジョニングされますか?
- A. クラウドホスティング組織は、一般的なLinuxディストリビューションの事前に準備されたイメージのセットを提供します。
- B. 目的のインストールを説明するプロバイダー固有の構成ファイルがクラウドプロバイダーにアップロードされます。
- C. 標準のLinuxインストーラーは、リモートコンソールから実行する必要があります。
- D. インストールはローカル仮想マシンで準備する必要があり、それはクラウドにコピーされます。
- E. Linuxディストリビューションを購入した後、ベンダーはそれをクラウドインスタンスに配信します。
正解:B
質問 # 50 
- A. dns
- B. dnsname
- C. query
- D. host
- E. iplookup
正解:D
質問 # 51 
- A. $
- B. *
- C. !
- D. &
- E. #
正解:E
質問 # 52
次のコマンドのどれがdirectory./ work /の内容からアーカイブfilework.tarを作成しますか?
- A. tar --new work.tar ./work/
- B. tar work > work.tar
- C. tar work.tar < ./work/
- D. tar -cf work.tar ./work/
- E. tar -create work.tgz -content ./work/
正解:D
解説:
Explanation
The tar command in Linux is used to create, extract, list, and manipulate archive files1. The -c option tells the command to create a new archive file. The -f option specifies the name of the archive file. The last argument is the name of the directory or file to be archived. Therefore, the command tar -cf work.tar ./work/ will create an archive file named work.tar from the contents of the directory ./work/. The other options are either invalid or do not create the desired archive file. Option A uses an unrecognized option --new. Option C uses an incorrect option --content and an incorrect extension .tgz for a plain tar archive. Option D and E use an incorrect syntax for redirecting the input or output of the tar command. References:
* Linux Essentials Version 1.6 Objectives, Topic 1.4: Command Line Basics, Subtopic: Basic Shell Commands
* Linux Essentials Version 1.6 Exam Preparation Guide, Section 1.4: Command Line Basics, Page 16
* Tar Command in Linux (Create and Extract Archives) | Linuxize2
質問 # 53
次のDNSレコードタイプのどれがIPアドレスを保持していますか? (2つ選択してください。)
- A. MX
- B. CNAME
- C. AAAA
- D. A
- E. NS
正解:C、D
解説:
Explanation
The DNS record types that hold an IP address are the A and AAAA records. These records are used to map a domain name to an IP address of the host, which is necessary for establishing a connection between a client and a server. The A record holds a 32-bit IPv4 address, while the AAAA record holds a 128-bit IPv6 address.
For example, the A record for www.example.com could be:
www.example.com. IN A 192.0.2.1
This means that the domain name www.example.com resolves to the IPv4 address 192.0.2.1. Similarly, the AAAA record for www.example.com could be:
www.example.com. IN AAAA 2001:db8::1
This means that the domain name www.example.com resolves to the IPv6 address 2001:db8::1.
The other options are incorrect because:
* NS records are used to specify the authoritative name servers for a domain. They do not hold an IP address, but a domain name of the name server. For example, the NS record for example.com could be:
example.com. IN NS ns1.example.com.
This means that the name server ns1.example.com is authoritative for the domain example.com.
* MX records are used to specify the mail exchange servers for a domain. They do not hold an IP address, but a domain name of the mail server and a preference value. For example, the MX record for example.com could be:
example.com. IN MX 10 mail.example.com.
This means that the mail server mail.example.com has a preference value of 10 for receiving email for the domain example.com.
* CNAME records are used to create an alias for a domain name. They do not hold an IP address, but another domain name that the alias points to. For example, the CNAME record for www.example.com could be:
www.example.com. IN CNAME example.com.
This means that the domain name www.example.com is an alias for the domain name example.com.
References:
* DNS Record Types: Defined and Explained - Site24x7
* List of DNS record types - Wikipedia
質問 # 54
ハードディスクドライブとソリッドステートディスクの違いは何ですか? (正しい答えを2つ選んでください。)
- A. ソリッドステートディスクは、ハードディスクドライブの何倍ものデータを保存できます。
- B. ハードディスクは物理的な損傷によって故障する可能性がありますが、ソリッドステートディスクは故障することはできません。
- C. / dev / sdaはハードディスクデバイス、/ dev / ssdaはソリッドステートディスクです。
- D. ハードディスクにはモーターと可動部品がありますが、ソリッドステートディスクにはありません。
- E. ソリッドステートディスクは、ハードディスクよりも保存データへのアクセスが高速です。
正解:D、E
質問 # 55
正規表現のどの演算子が、先行する文字に0回または1回一致しますか?
- A. ?
- B. $
- C. %
- D. *
- E. +
正解:A
質問 # 56
現在のディレクトリには、次のファイルが含まれています。
-rwxr-xr-x 1ルートルート859688 2月7日8時15分test.sh
このファイルが有効なシェルスクリプトであるとしたら、このスクリプトはどのようにして実行できますか? (正しい答えを2つ選んでください。)
- A. bash test.sh
- B. cmd ./test.sh
- C. ./test.sh
- D. ${test.sh}
- E. run test.sh
正解:A、C
質問 # 57
典型的なシェルスクリプトに関して、次のうちどれが当てはまりますか? (2つ選択してください。)
- A. It is located in /etc/bash/scripts/.
- B. It has the executable permission bit set.
- C. It is located in /usr/local/scripts/.
- D. It starts with the two character sequence #!.
- E. It is compiled into a binary file compatible with the current machine
正解:B、D
解説:
Explanation
A typical shell script is a text file that contains a series of commands or instructions that can be executed by a shell interpreter. A shell script usually has the executable permission bit set, which means that it can be run as a program by the user or another program. A shell script also starts with the two character sequence #!, which is called a shebang or a hashbang. This sequence tells the operating system which shell interpreter to use to run the script. For example, #!/bin/bash indicates that the script should be run by the bash shell. References:
* Linux Essentials - Linux Professional Institute (LPI) 1
* Linux Essentials - Linux Professional Institute Certification Programs 2
質問 # 58
再帰的なディレクトリ一覧についてはどうなりますか?
- A. リストされているディレクトリの権限が含まれています。
- B. サブディレクトリの内容を含みます。
- C. inodeなどのファイルシステム内部の詳細が含まれています。
- D. ファイルの所有権情報が含まれています。
- E. ディレクトリ内の各ファイルの内容のプレビューが含まれています。
正解:B
質問 # 59
......
010-160日本語問題集には更新された練習テストと80独特な問題:https://jp.fast2test.com/010-160J-premium-file.html