我使用以下命令创建了一个 KVM 虚拟机:
sudo ubuntu-vm-builder kvm oneiric \
--domain xpstage \
--dest xpstage \
--arch i386 \
--hostname xpstage \
--mem 1024 \
--user myuser --pass mypassword \
--bridge virbr0 \
--ip 192.168.1.50 --dns 8.8.8.8 \
--components main,universe,restricted \
--addpkg acpid --addpkg vim --addpkg openssh-server --addpkg avahi-daemon \
--libvirt qemu:///system ;
我可以启动虚拟机,但无法使用网络(ssh)或控制台连接到它。
为了启用控制台访问,我在 VM 定义文件中添加了一个控制台部分:
<domain type='kvm' id='10'>
<name>xpstage</name>
<uuid>1fbe45ca-655f-9de2-b552-6ed44b2fe4c2</uuid>
<memory>1048576</memory>
<currentMemory>1048576</currentMemory>
<vcpu>1</vcpu>
<os>
<type arch='x86_64' machine='pc-0.14'>hvm</type>
<boot dev='hd'/>
</os>
<features>
<acpi/>
</features>
<clock offset='utc'/>
<on_poweroff>destroy</on_poweroff>
<on_reboot>restart</on_reboot>
<on_crash>destroy</on_crash>
<devices>
<emulator>/usr/bin/kvm</emulator>
<disk type='file' device='disk'>
<driver name='qemu' type='qcow2'/>
<source file='/home/darugar/VMs/xpstage/tmpB1Hu5k.qcow2'/>
<target dev='hda' bus='ide'/>
<alias name='ide0-0-0'/>
<address type='drive' controller='0' bus='0' unit='0'/>
</disk>
<controller type='ide' index='0'>
<alias name='ide0'/>
<address type='pci' domain='0x0000' bus='0x00' slot='0x01' function='0x1'/>
</controller>
<interface type='bridge'>
<mac address='52:54:00:d1:6d:b8'/>
<source bridge='virbr0'/>
<target dev='vnet0'/>
<model type='virtio'/>
<alias name='net0'/>
<address type='pci' domain='0x0000' bus='0x00' slot='0x03' function='0x0'/>
</interface>
<serial type='pty'>
<source path='/dev/pts/3'/>
<target port='0'/>
<alias name='serial0'/>
</serial>
<console type='pty' tty='/dev/pts/3'>
<source path='/dev/pts/3'/>
<target type='serial' port='0'/>
<alias name='serial0'/>
</console>
<input type='mouse' bus='ps2'/>
<graphics type='vnc' port='5900' autoport='yes' listen='127.0.0.1'/>
<video>
<model type='cirrus' vram='9216' heads='1'/>
<alias name='video0'/>
<address type='pci' domain='0x0000' bus='0x00' slot='0x02' function='0x0'/>
</video>
<memballoon model='virtio'>
<alias name='balloon0'/>
<address type='pci' domain='0x0000' bus='0x00' slot='0x04' function='0x0'/>
</memballoon>
</devices>
<seclabel type='dynamic' model='apparmor'>
<label>libvirt-1fbe45ca-655f-9de2-b552-6ed44b2fe4c2</label>
<imagelabel>libvirt-1fbe45ca-655f-9de2-b552-6ed44b2fe4c2</imagelabel>
</seclabel>
</domain>
但是,当我尝试通过控制台连接时,什么都没有显示:
$ virsh console xpstage
Connected to domain xpstage
Escape character is ^]
$ virsh ttyconsole xpstage
/dev/pts/3
“virsh console” 命令似乎已连接,但除了“转义字符是 ^]”之外没有显示任何内容。
请注意,我不是在寻找 VNC 或图形访问;我想要简单的基于控制台的访问。
如果您能提供关于如何完成这项工作的想法,我们将不胜感激。
答案1
在连接之前,您肯定需要在客户机中启用串行控制台。正确的方法如下:https://help.ubuntu.com/community/SerialConsoleHowto
最近的 Ubuntu 版本使用 Upstart 任务和服务,因此您应该添加一个 Upstart 任务/etc/init/ttyS0.conf
,其中包含以下内容:
# ttyS0 - getty
#
# This service maintains a getty on ttyS0 from the point the system is
# started until it is shut down again.
start on stopped rc or RUNLEVEL=[2345]
stop on runlevel [!2345]
respawn
exec /sbin/getty -L 115200 ttyS0 vt102
以此方式开始:
$ sudo start ttyS0
之后,您应该能够从主机连接到串行控制台。连接后,不要忘记按 Enter。
答案2
我相信您仍然需要从主机向控制台发送一些内容。
因此,要么有内核参数,如console=ttyS0,38400n8
和
T0:2345:respawn:/sbin/getty -L ttyS0 38400 vt100
在你的/etc/inittab
。
或者也许仅仅删除 VGA 就会让 Ubuntu 默认使用 ttyS0(但我在这里只是猜测)。
答案3
描述了两个问题,ssh 访问和 virsh 控制台访问。显然,控制台是起点,因此您可以调试 ssh 和网络。以下是如何开始virsh console
工作的。
关闭客户机并将其根驱动器挂载到循环设备上,也许
$ sudo kpartx -a guest.img $ sudo kpartx -av guest.img add map loop0p1 (253:1): 0 41940992 linear /dev/loop0 2048 $ sudo mount -t ext4 /dev/loop0p1 /mnt
创建此文件——谷歌“ttyS0(您的客户操作系统版本)”作为示例。
/etc/init/ttyS0.conf: (this is the path for ubuntu 14.04) # ttyS0 - getty # # This service maintains a getty on ttyS0 from the point the system is # started until it is shut down again. start on stopped rc RUNLEVEL=[2345] stop on runlevel [!2345] respawn exec /sbin/getty -L 115200 ttyS0 xterm
编辑
/mnt/etc/securetty
并添加ttyS0
到列表。卸载
/mnt
、kpartx -d guest.img
并启动您的客户端。现在
virsh console guest
应该可以工作并且登录会成功(如果不编辑 securetty,登录总是会失败。)
笔记CentOS/RHEL 有一个文件 /etc/init/serial.conf 描述了如何执行此操作。
附录我有一个没有控制台的客户系统:如果我运行,virsh console guest
我会得到“已连接...”消息,但屏幕上没有其他任何内容。这个确实运行了 SSH。在 shell 中创建 ttyS0.conf 文件后,我运行了sudo start ttyS0
,控制台开始工作。