Hayati Güney

dilim döndüğünce ;) facebookflickrpicasagoogle readercontactrss

Vmware Player İçin .vmx dosyası oluşturma

Kasım 25
by Hayati GÜNEY 25. Kasım 2008 05:03

VMPlayer, konuk işletim sisteminin ana makina işletim sistemi içinde çalışmasına izin veren bir sanal bilgisayar uygulamasıdır. Daha fazla bilgi için şu yazıyı inceleyebilirsiniz.

VMPlayer ile işletim sistemimiz üzerinde sanal bir bilgisayar çalıştırmak için iki dosyaya ihtiyacimiz var:

  •  Sanal Makine Konfigurasyon Dosyası:
    a virtual machine configuration file (.vmx)
  • Sanal Hard Disk
    a virtual machine hard disk (.vmdk).

 

Aşağıdaki özelliklerdeki örnek boş bir sanal makina:

  • Windows Server 2003 Standart 32 Bit 
  • 1 CPU
  • 1 GB Ram
  • 20 GB HDD

Buradan İndirebilirsiniz !
My_Virtual_Machine.zip (10,84 kb)

Bu Sanal Makina için Konfigurasyon Dosyası (.vmx) ve açıklamalarını aşağıda görmektesiniz:

#!/usr/bin/vmplayer
.encoding = "windows-1254"

# Filename: My_Virtual_Machine.vmx

# This is a Workstation 6 config file
# It can be used with Player
config.version = "8"
virtualHW.version = "6"

# Selected operating system for your virtual machine
guestOS = "winnetstandard"

# displayName is your own name for the virtual machine
displayName = "My_Virtual_Machine"

# These fields are free text description fields
annotation = "SanalPC"
guestinfo.vmware.product.long = "Sanal Bilgisayar"
guestinfo.vmware.product.url = "http://www.hayatiguney.com"
guestinfo.vmware.product.class = "virtual machine"

# Number of virtual CPUs. Your virtual machine will not
# work if this number is higher than the number of your physical CPUs
numvcpus = "1"

# Memory size and other memory settings
memsize = "1024"
MemAllowAutoScaleDown = "FALSE"
MemTrimRate = "-1"

# PowerOn/Off options
gui.powerOnAtStartup = "FALSE"
gui.fullScreenAtPowerOn = "FALSE"
gui.exitAtPowerOff = "FALSE"

# Unique ID for the virtual machine will be created
uuid.action = "create"

# Settings for VMware Tools
tools.remindInstall = "FALSE"
tools.upgrade.policy = "upgradeAtPowerCycle"

# Startup hints interfers with automatic startup of a virtual machine
# This setting has no effect in VMware Player
hints.hideAll = "TRUE"

# Enable time synchronization between computer
# and virtual machine
tools.syncTime = "TRUE"

# USB settings
# This config activates USB
usb.present = "TRUE"
usb.generic.autoconnect = "FALSE"

# First serial port, physical COM1 is not available
serial0.present = "FALSE"

# Optional second serial port, physical COM2 is not available
serial1.present = "FALSE"

# First parallell port, physical LPT1 is not available
parallel0.present = "FALSE"

# Logging
# This config activates logging, and keeps last log
logging = "TRUE"
log.fileName = "My_Virtual_Machine.log"
log.append = "TRUE"
log.keepOld = "3"

# These settings decides interaction between your
# computer and the virtual machine
isolation.tools.hgfs.disable = "FALSE"
isolation.tools.dnd.disable = "FALSE"
isolation.tools.copy.enable = "TRUE"
isolation.tools.paste.enabled = "TRUE"

# Other default settings
svga.autodetect = "TRUE"
mks.keyboardFilter = "allow"
snapshot.action = "autoCommit"

# First network interface card
ethernet0.present = "TRUE"
ethernet0.virtualDev = "vlance"
ethernet0.connectionType = "bridged"
ethernet0.addressType = "generated"
ethernet0.generatedAddressOffset = "0"

# Settings for physical floppy drive
floppy0.present = "FALSE"

# Settings for physical CDROM drive
ide1:0.present = "TRUE"
ide1:0.deviceType = "cdrom-raw"
ide1:0.startConnected = "TRUE"
ide1:0.fileName = "auto detect"
ide1:0.autodetect = "TRUE"

# First IDE disk, size 20Gb
ide0:0.present = "TRUE"
ide0:0.fileName = "My_Virtual_Machine.vmdk"
ide0:0.mode = "persistent"
ide0:0.startConnected = "TRUE"
ide0:0.writeThrough = "TRUE"

# END OF EasyVMX! CONFIG

extendedConfigFile = "My_Virtual_Machine.vmxf"

virtualHW.productCompatibility = "hosted"

ethernet0.generatedAddress = "00:0c:29:ed:cb:9e"
uuid.location = "56 4d b9 93 ca 60 11 65-90 71 8e 0b 7e ed cb 9e"
uuid.bios = "56 4d b9 93 ca 60 11 65-90 71 8e 0b 7e ed cb 9e"
debugStub.winOffsets.version = "1"
ide0:0.redo = ""
vmotion.checkpointFBSize = "16777216"
ethernet0.pciSlotNumber = "16"
debugStub.winOffsets.value = "0x98,0x94,0x18,0x180,0x164,16,0x224,0x1e8,0x21c,0x74,0x18,0x18,0x20,0x24,4"

Sizde Kendinize Ait Dilediginiz konfigurasyonda bir sanal makina olusturmak için:

http://www.easyvmx.com/ adresini kullanabilirsiniz.

2 kişi tarafından 4.0 olarak değerlendirildi

  • Currently 4/5 Stars.
  • 1
  • 2
  • 3
  • 4
  • 5

Tags: , , , , , ,

Sanallaştırma

Yorum ekle


 

  Country flag

biuquote
  • Yorum
  • Canlı önizleme
Loading



Hayati Güney