1. 설치전 설정 2. 리눅스용 설치## 레드햇yum install qemu-guest-agent## debianapt-get install qemu-guest-agent## 시작 프로그랙 등록systemctl enable qemu-guest-agent## 서비스 시작systemctl start qemu-guest-agent 3. 윈도우용 설치https://fedorapeople.org/groups/virt/virtio-win/direct-downloads/archive-virtio/?C=M;O=D Index of /groups/virt/virtio-win/direct-downloads/archive-virtio fedorapeople.org 설치완료 root@pve:..
guest계정은 보안상 비활성화하는게 좋습니다. 아래는 파워쉘로 guest계정이 비활성화되어있는지 상태를 확인하는 스크립트입니다. Get-WmiObject -Class Win32_UserAccount -Filter "LocalAccount='$true' and Name='Guest'"|Select-Object Name,Disabled|Format-Table -AutoSize 참조 : https://social.technet.microsoft.com/Forums/windowsserver/en-US/31eeea8c-e268-4dd0-8a62-4fc44e87f3a2/check-if-a-local-user-account-is-disabled-on-a-remote-computer?forum=winserverman..