305-300日本語試験無料問題集「Lpi LPIC-3 Exam 305: Virtualization and Containerization (305-300日本語版) 認定」

Docker アーキテクチャに必須のコンポーネントは次のどれですか (該当するものをすべて選択してください)。

正解:A,B,C 解答を投票する
解説: (GoShiken メンバーにのみ表示されます)
次のコマンドを 2 回連続して実行するとどうなりますか?
docker run -tid -v data:/data debian bash

解説: (GoShiken メンバーにのみ表示されます)
Cloud-init の目的は何ですか?

解説: (GoShiken メンバーにのみ表示されます)
次のコマンドのうち、ディスク イメージ vm1-snap.img と vm1.img の間のすべての違いをリストするコマンドはどれですか?

解説: (GoShiken メンバーにのみ表示されます)
Vagrant のデフォルトのプロバイダーは何ですか?

解説: (GoShiken メンバーにのみ表示されます)
Dockerfile 内の次のステートメントは、Hello World を出力するコンテナーにつながりますか? (2つお選びください。)

解説: (GoShiken メンバーにのみ表示されます)
Docker Hub とは何ですか?

解説: (GoShiken メンバーにのみ表示されます)
次のコマンドを使用してデータ コンテナーをセットアップした後:
docker create -v /data --name datastore debian /bin/true
/datavolume をデータストア コンテナと共有する追加の新しいコンテナはどのように起動されますか?

解説: (GoShiken メンバーにのみ表示されます)
コマンド vzctl ____________ 105 /usr/bin/apt-get install wget では、OpenVZ コンテナー 105 に wget をインストールするために、vzctl のどのサブコマンドが不足していますか?
正解:
exec
Explanation:
In OpenVZ virtualization, thevzctlcommand is used to manage containers. According to OpenVZ documentation, theexecsubcommand is required to execute a commandinside a running container.
The correct command syntax is:
vzctl exec 105 /usr/bin/apt-get install wget
The exec subcommand runs the specified command in the context of the container identified by its container ID (CTID), in this case105. Without exec, the command would not be executed inside the container environment.
Therefore, the missing and correct subcommand isexec.