安装后 KVM VM 无法启动-加载初始 ramdisk

安装后 KVM VM 无法启动-加载初始 ramdisk

我在 debian 9.3 主机上安装了我的第一个 KVM VM,并在 VM 中使用 virt-install 安装了 debian 9.3 客户端。主机是戴尔笔记本电脑上的全新安装。我唯一改变的是网络设置以桥接 VM 的 eno1 接口。

我做了什么:

在 /etc/网络/接口:

# This file describes the network interfaces available on your system
# and how to activate them. For more information, see interfaces(5).

# source /etc/network/interfaces.d/*

# The loopback network interface
auto lo
iface lo inet loopback

auto eno1
iface eno1 inet manual
iface eno1 inet6 manual

auto br0
iface br0 inet static
    address 10.0.0.10
    netmask 255.255.255.0
    network 10.0.0.0
    broadcast 10.0.0.255
    gateway 10.0.0.1
    bridge_ports eno1
    bridge_stp off
    bridge_fd 0
    bridge_maxwait 0
    dns-nameservers 212.186.211.21 195.34.133.21

# autoconfigure ipv6 for
iface eno1 inet6 auto
    accept_ra 1
iface br0 inet6 auto
    accept_ra 1

/etc/resolv.conf

nameserver 212.186.211.21
nameserver 195.34.133.21

并将以下内容附加到 /etc/sysctl.conf

#  disable netfilter on the bridge
net.bridge.bridge-nf-call-ip6tables = 0
net.bridge.bridge-nf-call-iptables = 0
net.bridge.bridge-nf-call-arptables = 0

安装 KVM 工具:apt-get install virtinst

我使用以下命令为虚拟机创建了一个逻辑卷:lvcreate -n active-directory -L 20GB ganetti-node-001-vg然后使用以下命令安装虚拟机:

virt-install \
    --name active-directory-master \
    --ram 2048 \
    --location http://ftp.us.debian.org/debian/dists/stable/main/installer-amd64/ \
    --disk path=/dev/ganetti-node-001-vg/active-directory \
    --cpu host-model-only \
    --vcpus 2 \
    --os-type linux \
    --os-variant debian9 \
    --network bridge=br0 \
    --graphics none \
    --console pty,target_type=serial \
    --extra-args 'console=ttyS0,115200n8 serial'

安装运行,我设置了语言、键盘、root 和主用户、分区和软件包选择(仅 xface 和 ssh 服务器),将 grub 写入分区并重新启动。第一次启动时它挂在这里:

在此处输入图片描述

当检查正在运行的内容时,我得到以下输出:

在此处输入图片描述

我到目前为止尝试过的:

  • 在安装虚拟机期间在逻辑卷中创建一个 LVM 分区。
  • 在安装虚拟机期间在逻辑卷中创建主分区。
  • 通过 ssh 连接安装
  • 直接安装在笔记本电脑上(因为在编辑 grub2 启动脚本时键盘映射被破坏了,但也被破坏了。)
  • 在虚拟机的 grub2 开始菜单中选择以下内容:
    • 标准安装。
    • 修复模式(是这样命名的吗?)

现在我不知道下一步该尝试什么。感谢对 KVM 新手的任何支持!

相关内容