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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
|
device: 0.809
socket: 0.731
user-level: 0.698
performance: 0.674
network: 0.612
files: 0.612
architecture: 0.553
PID: 0.543
VMM: 0.527
permissions: 0.514
KVM: 0.510
kernel: 0.505
graphic: 0.486
boot: 0.467
x86: 0.439
vnc: 0.427
arm: 0.411
register: 0.369
ppc: 0.345
risc-v: 0.333
mistranslation: 0.318
assembly: 0.307
semantic: 0.239
peripherals: 0.237
virtual: 0.214
debug: 0.190
hypervisor: 0.178
i386: 0.168
TCG: 0.139
2.6.0 Windows 7 install hangs on splash screen, works ok with 2.5.1
Hi maintainers,
I have tried to install Windows 7 SP1 from the ISO. The install process hangs on the windows 4 color logo with qemu 2.6.0, it works and installs fine with 2.5.1.
This is the script I used with 2.5.1 and it works perfectly fine:
#!/bin/sh
exec qemu-system-x86_64 \
-enable-kvm \
-uuid 0ec801a0-d215-464b-a658-8f43a24cb62e \
-machine q35 \
-cpu host \
-smp cores=2,threads=2 \
-drive file=disk/ovmfcode.flash,format=raw,readonly,if=pflash \
-drive file=disk/ovmfvars.flash,format=raw,if=pflash \
-drive file=disk/windows7.img,discard=unmap,detect-zeroes=unmap,cache=unsafe,if=virtio \
-drive file=ISO/windows7.iso,media=cdrom \
-drive file=ISO/virtiowin.iso,media=cdrom \
-netdev tap,id=nic-0,ifname=tap0,vhost=on,script=no,downscript=no \
-net nic,macaddr=52:54:00:01:00:01,netdev=nic-0,model=virtio \
-m 4G \
-vga qxl \
-soundhw ac97 \
-usbdevice tablet \
-rtc clock=host,base=utc \
-name "Windows 7" \
-monitor telnet:127.0.0.1:2001,server,nowait \
-daemonize
The same hangs on the splash screen with 2.6.0
Even the following simple script behaves the same and hangs at splash screen with 2.6.0:
#!/bin/sh
exec qemu-system-x86_64 \
-drive file=disk/windows7.img,if=ide \
-drive file=ISO/windows7.iso,media=cdrom \
-name "Windows 7" \
$@
The ISO is Windows 7 Ultimate english version, Service Pack 1.
I reproduced the same behaviour on Gentoo and Arch, with the Qemu versions provided on both distributions.
Cheers
|