Comment 1 for bug 569890

Revision history for this message
Rusty Burchfield (gicodewarrior) wrote : Re: kvm hangs with uuid option

As a workaround, I have replaced the /usr/bin/kvm soft-link with the following ruby code and made it executable. I do not know what adverse side-effects it will have, but it works for now.
#!/usr/bin/ruby1.9

args = ARGV.dup
uuid_index = args.index('-uuid')
if (uuid_index)
  args.slice!(uuid_index, 2)
end

exec '/usr/bin/qemu-system-x86_64', *args