电脑重装不想再安装 vbox,试试 qume 能不能使用原来的镜像。
找到原来镜像路径,我的镜像文件名是 centos-disk001.vdi
,将其转换为 img
:
qemu-img convert -f vdi -O raw centos-disk001.vdi centos.img
尝试使用 qemu 启动:
qemu-system-x86_64 -m 2048 -boot d -enable-kvm -smp 3 -hda centos.img -net nic
启动会自动弹出 qemu 窗口,查看是否能正常登录。
修改镜像在终端中启动,先拷贝出镜像中内核,位置一般在 /boot
目录下:
1 2 3 4 5 6 7 8 9 10 11 12 13
| [root@localhost ~] config-3.10.0-1062.4.1.el7.x86_64 efi grub grub2 initramfs-0-rescue-64fdeb4a6b984cc8a60bbd21fea1cd3c.img initramfs-3.10.0-1062.4.1.el7.x86_64.img initramfs-3.10.0-1062.4.1.el7.x86_64kdump.img initrd-plymouth.img symvers-3.10.0-1062.4.1.el7.x86_64.gz System.map-3.10.0-1062.4.1.el7.x86_64 vmlinuz-0-rescue-64fdeb4a6b984cc8a60bbd21fea1cd3c vmlinuz-3.10.0-1062.4.1.el7.x86_64
|
我的拷贝出 vmlinuz-3.10.0-1062.4.1.el7.x86_64
和 initramfs-3.10.0-1062.4.1.el7.x86_64.img
即可,
然后查看镜像 root 位置,在启动按 e
可查看引导信息:root=/dev/mapper/centos-root
,
修改启动为:
qemu-system-x86_64 -kernel vmlinuz-3.10.0-1062.4.1.el7.x86_64 -initrd initramfs-3.10.0-1062.4.1.el7.x86_64.img -append "root=/dev/mapper/centos-root console=ttyS0 selinux=0" -m 2048 -enable-kvm -smp 3 -hda centos.img -nographic -net nic
修改网络1
最后启动脚本如下:
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44
| #!/bin/bash
if [[ $EUID -ne 0 ]]; then echo ONLY ROOT CAN ACCESS exit 1 fi
function up_br0() { ifconfig enp0s25 down brctl addbr br0 brctl addif br0 enp0s25 brctl stp br0 off brctl setfd br0 1 brctl sethello br0 1 ifconfig br0 0.0.0.0 promisc up ifconfig enp0s25 0.0.0.0 promisc up dhclient br0 dhclient enp0s25 }
function up_tap0() { tunctl -t tap0 -u root brctl addif br0 tap0 ifconfig tap0 0.0.0.0 promisc up }
function clear() { ifconfig tap0 down brctl delif br0 tap0 tunctl -d tap0 ifconfig enp0s25 down ifconfig br0 down brctl delif br0 enp0s25 brctl delbr br0 ifconfig enp0s25 up }
trap clear EXIT INT TERM
up_br0 up_tap0
qemu-system-x86_64 -kernel vmlinuz-3.10.0-1062.4.1.el7.x86_64 -initrd initramfs-3.10.0-1062.4.1.el7.x86_64.img -append "root=/dev/mapper/centos-root console=ttyS0 selinux=0" -m 2048 -enable-kvm -smp 3 -hda centos.img -nographic -net nic -net tap,ifname=tap0,script=no,downscript=no
|
PS:退出 console 使用快捷键 Ctrl+A
再按 X