2016-08-18 5 views
2

私は浮浪者機械内部のアンドロイドエミュレータを実行しようとしているが、私はこのエラーを取得しておいてください。放浪機械内部のAndroidエミュレータを実行している

==> default: emulator: ERROR: x86 emulation currently requires hardware acceleration! 
==> default: Please ensure KVM is properly installed and usable. 
==> default: CPU acceleration status: KVM is not installed on this machine (/dev/kvm is missing). 

私はKVMをインストールしていエミュレータを開始する前に:

==> default: qemu-kvm is already the newest version 

==> default: INFO: Your CPU does not support KVM extensions 
==> default: KVM acceleration can NOT be used 

ベイグラント設定はこれである:

しかし、私はこのエラーを持っている

Vagrant.configure("2") do |config| 
    config.vm.box = "ubuntu/trusty64" 
    config.vm.synced_folder '.', '/vagrant' 
    config.vm.network :private_network, ip: "192.168.2.222" 
    config.ssh.forward_agent = true 
    config.vm.provision :shell, :path => "Vagrantinit" 
    config.vm.provider "virtualbox" do |v| 
    v.memory = 4096 
    v.cpus = 1 
    v.customize ["setextradata", :id, "VBoxInternal2/SharedFoldersEnableSymlinksCreate/vagrant", "1"] 
    v.customize ["setextradata", :id, "VBoxInternal2/SharedFoldersEnableSymlinksCreate/v-root", "1"] 
    end 
end 

誰でもこの問題を解決する方法はありますか?

ありがとうございます!

+0

何あなたのCPUであり、あなたがBIOSで仮想化を有効でしたが動作するはず

をサポートしていないのですか?古いものであれば、あなたのプロセッサはそれを持っていないかもしれません。 – Vucko

+0

BIOSでビジュアライゼーションを有効にしたいのですが、ジェンキンスで使用されている迷惑なマシンなので、その方法を見つけることができませんでした – Tar

+0

なぜ、アンドロイド用のヴァーグラントを使用する必要がありますか?私が知る限り、アンドロイドエミュレータは通常、HAVMを使用し、KVMは使用しません。 – Vucko

答えて

0

問題は、x86エミュレーションとあった、どうやらそれは、代わりにAndroidのエミュレータarmeabi-v7aを使用し、それが

関連する問題