Changes between Version 2 and Version 3 of adherelinux/KVM/qemu-pxe


Ignore:
Timestamp:
Aug 26, 2011, 1:32:21 PM (13 years ago)
Author:
adherelinux
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • adherelinux/KVM/qemu-pxe

    v2 v3  
    55利用指令檢查cpu是否支援,目前的機器幾乎都有支援
    66{{{
    7  egrep '(vmx|svm)' --color=always /proc/cpuinfo
     7egrep '(vmx|svm)' --color=always /proc/cpuinfo
    88}}}
    99應該要出現vmx字眼
     
    1313sudo apt-get install vde2 uml-utilities
    1414}}}
     15
     16安裝dhcp server,tftp server 是為了PXE伺服器
     17{{{
     18sudo apt-get install dhcp3-server  tftpd-hpa
     19}}}
     20
     21下載PXE的韌體
     22{{{
     23cd /usr/share/qemu
     24wget -O pxe-ne2k_pci.bin http://svn.savannah.gnu.org/viewvc/*checkout*/trunk/pc-bios/pxe-ne2k_pci.bin?root=qemu
     25wget -O pxe-rtl8139.bin http://svn.savannah.gnu.org/viewvc/*checkout*/trunk/pc-bios/pxe-rtl8139.bin?root=qemu
     26wget -O pxe-e1000.bin http://svn.savannah.gnu.org/viewvc/*checkout*/trunk/pc-bios/pxe-e1000.bin?root=qemu
     27}}}