refactor: 문서 개선 중

This commit is contained in:
donghyeon-ka
2026-09-21 14:30:55 +09:00
parent c93cdea150
commit 805a18f486
1497 changed files with 525837 additions and 59152 deletions
@@ -1,18 +1,12 @@
%% 게스트 두 대는 호스트에서 qemu 프로세스 두 개다
%% question: 호스트에서 게스트는 무엇으로 존재하고, 게스트가 보는 장치는 누가 만들어 주는가
flowchart TB
flowchart LR
subgraph g_host_zone["호스트 test-server"]
n0["libvirtd"]
n1["qemu-system-x86_64"]
n2["qemu-system-x86_64"]
n1["qemu 프로세스 2개"]
end
subgraph g_guest_1_zone["게스트 kc-lab-1"]
n3["Debian 게스트 커널"]
end
subgraph g_guest_2_zone["게스트 kc-lab-2"]
n4["Debian 게스트 커널"]
subgraph g_guest_zone["게스트 VM"]
n2["Debian 게스트 커널 2개"]
end
n0 -->|"프로세스 생성"| n1
n0 -->|"프로세스 생성"| n2
n1 -->|"virtio 디스크 · virtio-net"| n3
n2 -->|"virtio 디스크 · virtio-net"| n4
n1 -->|"virtio 장치"| n2