zoukankan      html  css  js  c++  java
  • Ubuntu14.04 x86_64 install Xen

    Recommended reference:

    https://help.ubuntu.com/community/Xen

    Step One: Install Ubuntu14.04 on your computer

    Step Two: Install Xen using “sudo apt-get install xen-hypervisor” which will automatically choose suitable version of Xen. If you do this on a 32-bits Ubuntu OS, it can only get amd64-version too. So it is recommended to install a 64-bits Ubuntu. Also you need to install some tool:”sudo apt-get install virtinst virt-viewer virt-manager ”

    Step Three: Since version 3 or so, Linux kernel supports Xen, and it can configure boot menu when installing Xen. So what we do next is to reboot our operating system. After that, you can verify Xen is actually installed using “sudo xl list”. If you can see “Domain-0”, it means everything goes well.

    Step Four: Network Configuration. It is easily neglected.

    sudo stop network-manager

    sudo gedit /etc/network/interfaces

    Edit /etc/network/interfaces, and make it look like this:

    wpsD9D0.tmp

    sudo start network-manager

    sudo ifdown eth0 && sudo ifup xenbr0 && sudo ifup eth0

    Step Five: To skip the installation of guest, I get an image of Ubuntu 10.04 OS from http://jailtime.org/, unzip it and modify the file path in the configuration file.

    wpsDA12.tmp

    Then we can create a guest virtual machine

    wpsDA23.tmp

    wpsDA33.tmp

    and we can log in

    wpsDA75.tmp

    check it over in Domain-0

    wpsDA86.tmp

    ask the guest to shutdown

    wpsDA96.tmp

  • 相关阅读:
    mysql-proxy使用中的问题
    iOS中利用CoreTelephony获取用户当前网络状态(判断2G,3G,4G)
    Django连接MySQL出错
    前后端分离
    django 安装指定版本
    问题
    算法面试
    记录docker for windows 时候的错误
    Django项目部署
    git 上传至github
  • 原文地址:https://www.cnblogs.com/manhua/p/4025162.html
Copyright © 2011-2022 走看看