Changes between Version 1 and Version 2 of linux/vmware


Ignore:
Timestamp:
1970/01/01 09:20:04 (55 years ago)
Author:
yuna
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • linux/vmware

    v1 v2  
    33VMWare Serverは仮想イメージを作成したり、スナップショットを1回取れたり、別の端末から仮想マシンを利用できたり、VMWare Playerより高機能である。しかしながら、デスクトップを用途で利用するなら、VMWare Playerの方がパフォーマンスが高い。 
    44 
    5 = vmxファイルメモ = 
     5 
     6= VMWare Playerメモ = 
    67vmxファイルは、VMWareの設定が記述されたファイルである。VMWare Playerを利用した場合、vmxファイルはGUIで編集できないため、手で設定ファイルを記述する必要がある。 
     8 
     9== VMWareイメージファイルの作成 == 
     10VMWareのイメージディスクを作成するには、qemuに付属するqemu-imageコマンドを利用するとよい。 
     11{{{ 
     12$ qemu-image create -f vmdk vmware.vmdk 10G 
     13}}} 
     14 
     15== vmxファイルの作成 == 
     16VMの設定を記述した次のようなvmxファイルを作成します。 
     17{{{ 
     18config.version = "8" 
     19 
     20# 仮装マシンのHDイメージ 
     21ide0:0.present = "true" 
     22ide0:0.fileName = "vmware.vmdk" 
     23 
     24# CD-ROM 
     25ide1:0.present = "TRUE" 
     26ide1:0.fileName = "auto detect" 
     27ide1:0.deviceType = "cdrom-raw" 
     28ide1:0.autodetect = "TRUE" 
     29 
     30 
     31# floppy 
     32floppy0.present = "false" 
     33floppy0.fileName = "A:" 
     34 
     35# ethernet 
     36ethernet0.present = "true" 
     37ethernet0.connectionType = "nat" 
     38 
     39# Sound 
     40sound.present = "true" 
     41sound.virtualDev = "es1371" 
     42sound.autoDetect = "true" 
     43sound.fileName = "-1" 
     44 
     45# 仮装マシンに割り当てるメモリのサイズ 
     46memsize = "256" 
     47}}} 
    748 
    849== CD-ROM == 
     
    1960ide1:0.fileName = "/home/okamototk/ubuntu-6.10.iso" 
    2061}}} 
     62== メモリサイズ == 
     63256Mbyteを指定するには、下記のようにする。 
     64{{{ 
     65memsize = "256" 
     66}}}