Kvm-Virtualization

Fedora 30 的 sys-unconfig 等效項

  • July 10, 2019

我正在嘗試在 Proxmox 上準備 Fedora 30 KVM 虛擬機模板。我想使用 sys-unconfig 命令,但是 當我從 Proxmox 主機執行它時,它在 initscripts 9.81-1 virt-sysprep 中被刪除了。Fedora 30 的替代方案是什麼?

我通過以下方式發現 sys-unconfig 只是一個腳本:我在我的電腦上啟動了 CentOS 7 docker 容器

docker run -it centos:latest

然後:

yum whatprovides sys-unconfig

然後我找到了包裹:

initscripts-9.49.46-1.el7.x86_64 : The inittab file and the /etc/init.d scripts
Repo        : base
Matched from:
Filename    : /usr/sbin/sys-unconfig

安裝它:

yum install initscripts -y

然後我找到了腳本內容:

cat /usr/sbin/sys-unconfig
#!/bin/sh

. /etc/init.d/functions

if [ $# -ne 0 ]; then
   echo $"Usage: sys-unconfig" >&2
   exit 1
fi

touch /.unconfigured
rm -f /etc/udev/rules.d/*-persistent-*.rules
poweroff

引用自:https://serverfault.com/questions/974740