feat: 가상화 문서들 추가

This commit is contained in:
DongHyeonka
2026-09-10 08:54:05 +09:00
parent e9f6a93327
commit 43e1aadef0
695 changed files with 153404 additions and 12754 deletions
@@ -0,0 +1,18 @@
%% 게스트 두 대는 호스트에서 qemu 프로세스 두 개다
%% question: 호스트에서 게스트는 무엇으로 존재하고, 게스트가 보는 장치는 누가 만들어 주는가
flowchart TB
subgraph g_host_zone["호스트 test-server"]
n0["libvirtd"]
n1["qemu-system-x86_64"]
n2["qemu-system-x86_64"]
end
subgraph g_guest_1_zone["게스트 kc-lab-1"]
n3["Debian 게스트 커널"]
end
subgraph g_guest_2_zone["게스트 kc-lab-2"]
n4["Debian 게스트 커널"]
end
n0 -->|"프로세스 생성"| n1
n0 -->|"프로세스 생성"| n2
n1 -->|"virtio 디스크 · virtio-net"| n3
n2 -->|"virtio 디스크 · virtio-net"| n4