gentoo qemu安装

300阅读 0评论2017-01-24 ptz19861212
分类:LINUX

首先查看自己的CPU是intel的还是AMD的
grep --color -E "vmx|svm" /proc/cpuinfo
注意:INTEL和AMD的在内核中只能同时启用一个,或者都设置为模块加载,否则会报错。
[*] Virtualization  --->
    <*>   Kernel-based Virtual Machine (KVM) support

我的是 INTEL 的所以配置
[*] Virtualization  --->
    <*>   KVM for Intel processors support

网络相关
vhost-net
[*] Virtualization  --->
    <*>   Host kernel accelerator for virtio net
可选的高级网络设置
Device Drivers  --->
    [*] Network device support  --->
        [*]   Network core driver support
        <*>   Universal TUN/TAP device driver support
802.1d
[*] Networking support  --->
        Networking options  --->
            <*> The IPv6 protocol
            <*> 802.1d Ethernet Bridging

python USE 支持
Kernel hacking  --->
        Compile-time checks and compiler options  --->
            [*] Debug Filesystem

使用EXT4的文件系统,需要启用filecaps USE
File systems  --->
    <*> The Extended 4 (ext4) filesystem
    [*]   Ext4 Security Labels

注意:使用图形界面输出的话,需要启用 gtk, ncurses, sdl, spice 这几个中的一个,最好都启用。

emerge --ask --verbose qemu

把普通用户加入 kvm组
gpasswd -a xxx kvm

因为需要配置网桥,使用brctl 命令,所以需要安装 bridge-utils
emerge --ask --verbose bridge-utils





上一篇:gentoo ccache 使用
下一篇:gentoo android studio安装