
KVM/QEMU 설정에서 libvirtd/virsh 네트워킹을 전혀 사용하지 않고 있으며 libvirtd를 시작할 때 다음 오류가 발생합니다.
Jan 21 06:05:45 srvtest1 libvirtd[1494]: Unable to find 'dnsmasq' binary in $PATH: No such file or directory
기본 네트워크를 비활성화/제거하려고 시도했지만 도움이 되지 않습니다.
문제를 해결하기 위해 설치할 수 있습니다 dnsmasq-base
. 1MB에 불과하지만 libvirtd에게 전혀 찾지 말라고 말하고 싶습니까?
업데이트:
paladin이 제안한 해결 방법은 스크립트를 생성하는 것입니다./usr/sbin/dnsmasq
#!/bin/sh
# This is a dummy, will be called by virtlibd (dnsmasq --version)
echo "Dnsmasq version 2.89"
exit 0