[CentOS] 7.x KVM virt-install CentOS
리눅스 서버에 가상화 VPS 를 설치하는 방법입니다~
그런데 시간이 너무 오래 걸리는 듯 하네요~
예제1)
virt-install \
--name CentOS7 \
--vcpus 2 \
--memory 4096 \
--hvm \
--os-type linux \
--os-variant rhel7 \
--disk path=/var/lib/libvirt/boot/CentOS-7-x86_64-Minimal-1810.iso,device=cdrom,bus=ide \
--disk path=/var/lib/libvirt/images/CentOS7.qcow2,format=qcow2,size=10,bus=virtio \
--graphics vnc,port=5900,password=vnc1234,listen=0.0.0.0 \
--sound default
예제2)
virt-install \
--name CentOS7 \
--vcpus sockets=1,cores=2,threads=2 \
--memory 2048 \
--os-type linux \
--os-variant rhel7 \
--disk path=/var/lib/libvirt/boot/CentOS-7-x86_64-Minimal-1810.iso,device=cdrom,bus=ide \
--disk path=/var/lib/libvirt/images/CentOS7.img,size=10 \
--graphics vnc,listen=0.0.0.0,port=5901,password=vnc1234
사전에 미리 yum install qemu-kvm libvirt virt-install virt-manager virt-viewer 를 설치하여야 합니다.
로컬의 Virtual Machine Manager 로 해당 서버에 접속하고 비밀번호는 vnc1234 를 입력하면 됩니다.
'LINUX' 카테고리의 다른 글
[CentOS] 7.x KVM 윈도우10 설치 동작 안함 (1) | 2018.12.07 |
---|---|
[리눅스] CPU 정보를 알 수 있는 명령어 LSCPU (0) | 2018.12.06 |
CentOS 7.x Failed to start Virtualization daemon (0) | 2018.12.06 |
[아파치] 홈페이지 아이피로 접근시 차단 (0) | 2018.12.03 |
[리눅스] vnstat eth0 No such file or directory (1) | 2018.11.30 |