blob: 8f58ed95c717599c2e95818f1e136f2eeb0ebe16 (
plain) (
blame)
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
|
boot: 0.852
ppc: 0.839
user-level: 0.818
performance: 0.806
virtual: 0.798
semantic: 0.744
KVM: 0.742
mistranslation: 0.741
files: 0.738
device: 0.688
hypervisor: 0.674
architecture: 0.671
register: 0.667
graphic: 0.639
vnc: 0.636
x86: 0.619
kernel: 0.614
PID: 0.609
network: 0.572
socket: 0.549
VMM: 0.544
permissions: 0.472
risc-v: 0.464
assembly: 0.432
i386: 0.412
debug: 0.392
peripherals: 0.387
arm: 0.326
TCG: 0.323
virt-install gets stuck during downloading install.img
I have tried to install CentOS 6.4 using the latest version of all kvm related tools. My problem is that I get stuck at arround 20% during the download of the file install.img. Everything before that works just fine.
I am using the following commands to install to server:
virt-install \
-n test \
-r 1024 \
--disk path=/var/kvm/images/test.img,size=25 \
--vcpus=1 \
--os-type linux \
--os-variant=rhel6 \
--network bridge=br2 \
--nographics \
--location='http://mirror.netcologne.de/centos/6.4/os/x86_64' \
--extra-args='console=tty0 console=ttyS0,115200n8 serial' \
I have checked that my server is ready for virtualization.
If you need any further information I am happy to provide them
Patrick Gramsl
I guess it could be a problem with the mirror you are using. Have you tried using a different mirror. Following is what I tried and I was able to boot centos
virt-install \
-n test \
-r 1024 \
--disk path=/tmp/test.img,size=3 \
--vcpus=1 \
--os-type linux \
--os-variant=rhel6 \
--network bridge=virbr0 \
--nographics --location='http://centos.mirror.net.in/centos/6.4/os/x86_64' \
--extra-args='console=tty0 console=ttyS0,115200n8 serial'
Sorry yes of course I have tried a different mirror but I think that the problem was with my server installation because even my mail server was not working correctly I will update this comment as soon as I have new information.
@Shivakumar:
Thank you for your help anyway
This is not a QEMU bug ... for virt-install related problems, please see https://virt-manager.org/bugs/ instead.
|