13 lines
487 B
Plaintext
13 lines
487 B
Plaintext
%% 게스트 두 대는 호스트에서 qemu 프로세스 두 개다
|
|
%% question: 호스트에서 게스트는 무엇으로 존재하고, 게스트가 보는 장치는 누가 만들어 주는가
|
|
flowchart LR
|
|
subgraph g_host_zone["호스트 test-server"]
|
|
n0["libvirtd"]
|
|
n1["qemu 프로세스 2개"]
|
|
end
|
|
subgraph g_guest_zone["게스트 VM"]
|
|
n2["Debian 게스트 커널 2개"]
|
|
end
|
|
n0 -->|"프로세스 생성"| n1
|
|
n1 -->|"virtio 장치"| n2
|