基于CentOS 8 x86_64编译安装libvirt 7.2
1 | #dnf --enablerepo=PowerTools install gcc cmake libxslt-devel |
1 | #libvirtd --version |
启动测试
1 | /usr/sbin/libvirtd --listen |
报错
1 | 2021-09-28 04:27:03.665+0000: 41728: info : libvirt version: 7.2.0 |
1 | error: Failed to start domain 'instance-00000018' |
Troubleshooting
- ERROR: Program ‘rpcgen portable-rpcgen’ not found
1 | yum install rpcgen |
- ERROR: Dependency “gnutls” not found, tried pkgconfig
1 | yum install gnutls-devel |
- ERROR: Dependency “libxml-2.0” not found, tried pkgconfig
1 | yum install libxml2-devel |
- ERROR: Problem encountered: XDR is required for remote driver
1 | yum install libtirpc-devel |
- meson.build:918:2: ERROR: Program ‘rst2html5 rst2html5.py rst2html5-3’ not found
1
pip3 install rst2html5
- ERROR: Dependency “libapparmor” not found, tried pkgconfig and cmake
1
2
3wget https://rpmfind.net/linux/opensuse/distribution/leap/15.3/repo/oss/x86_64/libapparmor1-2.13.6-1.24.x86_64.rpm
wget https://ftp.lysator.liu.se/pub/opensuse/distribution/leap/15.3/repo/oss/x86_64/libapparmor-devel-2.13.6-1.24.x86_64.rpm - ERROR: C shared or static library ‘attr’ not found
1
dnf --enablerepo=powertools install libattr-devel
- ERROR: C shared or static library ‘audit’ not found
1
dnf --enablerepo=powertools install audit-libs audit-libs-devel
- ERROR: Dependency “bash-completion” not found, tried pkgconfig and cmake
1
dnf --enablerepo=powertools install bash-completion
- ERROR: C shared or static library ‘cap-ng’ not found
1
dnf --enablerepo=powertools install libcap-ng-devel
- ERROR: Dependency “libcurl” not found, tried pkgconfig and cmake
1
dnf --enablerepo=powertools install libcurl-devel
- ERROR: Dependency “libfuse glusterfs-api libiscsi libnl pcap-config libssh libssh2 netcf numa openwsman pciaccess readline libsasl2 libudev wireshark yajl” not found, tried pkgconfig and cmake
1
dnf --enablerepo=powertools install fuse-devel glusterfs-api-devel libiscsi-devel libnl3-devel libssh-devel libssh2-devel netcf-devel numactl-devel libwsman-devel libpciaccess-devel readline-devel cyrus-sasl-devel systemd-devel wireshark-devel yajl-devel