KVM에서 Windows VM을 생성하면서 VirtIO 관련 설정 방법
Rocky 9.4 Minimal
가상화 환경에서 성능과 효율성을 높이기 위해 사용되는 가상화 인터페이스
주로 KVM(Kernel-based Virtual Machine)과 같은 하이퍼바이저에서 가상 머신(VM)과 호스트 간의 통신을 원활하게 하기 위해 사용
disk 설정 부분에서 virtio 파일을 추가로 지정
# virt-install \
–name W11 \
–ram 8192 \
–vcpus sockets=1,cores=4,threads=1 \
–cpu host \
–os-variant win11 \
–disk path=/var/lib/libvirt/images/W11.qcow2,format=qcow2,bus=virtio,cache=none,size=128 \
–disk path=/var/lib/libvirt/images/virtio-win-0.1.248.iso,device=cdrom \
–cdrom /var/lib/libvirt/images/Win11_23H2_Korean_x64v2.iso \
–network bridge=br0,model=virtio \
–graphics vnc
# virt-manager
1. 개요 본 글은 LVM의 스냅샷(snapshot) 기능으로 복구 지점 생성 → 파일 변경 → 스냅샷 병합(rollback) 과정을 실습합니다. 동일한…
https://youtu.be/ZcxB7akkDKs 1. 개요 두 개의 디스크(/dev/vdb, /dev/vdc)로 LVM을 구성하고, ext4·XFS 파일시스템 생성 → 마운트 → VG/LV 확장 → ext4 축소(오프라인)까지 전체…
https://youtu.be/XYBR1ZFrV9s 1. 개요 parted를 사용해 새 디스크에 GPT 라벨 생성 → 파티션 생성(ext4/XFS) → 포맷/마운트 →…
https://youtu.be/yYV8RQKCFzA 1. 개요 이 문서는 fdisk를 사용해 MBR(DOS) 디스크에 파티션을 생성하고, ext4/XFS 파일시스템을 포맷·마운트, /etc/fstab에 등록했다가, 안전하게 해제·삭제하는 전…
1. 개요 Linux에서 디스크 파티션 스타일은 MBR(Master Boot Record) 와 GPT(GUID Partition Table)에 대해 설명합니다. 2. MBR이란? 디스크…
https://youtu.be/CNd1bJV4wGY 1. 개요 Windows Server를 새로 설치할 때의 설치 과정을 단계별로 정리하였습니다. Windows Server 설치…