Changes between Initial Version and Version 1 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 v1  
     1= VMWareメモ = 
     2無料で利用できるVMWareとして、VMWare PlayerとVMWare Serverがある。 
     3VMWare Serverは仮想イメージを作成したり、スナップショットを1回取れたり、別の端末から仮想マシンを利用できたり、VMWare Playerより高機能である。しかしながら、デスクトップを用途で利用するなら、VMWare Playerの方がパフォーマンスが高い。 
     4 
     5= vmxファイルメモ = 
     6vmxファイルは、VMWareの設定が記述されたファイルである。VMWare Playerを利用した場合、vmxファイルはGUIで編集できないため、手で設定ファイルを記述する必要がある。 
     7 
     8== CD-ROM == 
     9マシン上のCD-ROMをVMWare上のOSから直接利用するには、次のように記述する。 
     10{{{ 
     11ide1:0.present = "TRUE" 
     12ide1:0.fileName = "auto detect" 
     13ide1:0.deviceType = "cdrom-raw" 
     14ide1:0.autodetect = "TRUE" 
     15}}} 
     16ホストOS上のisoイメージを利用するには、次のように記述する。 
     17{{{ 
     18ide1:0.deviceType = "cdrom-image" 
     19ide1:0.fileName = "/home/okamototk/ubuntu-6.10.iso" 
     20}}}