Skip to content

Konfigurasi Resource Virtual Machine

Koro129 edited this page Mar 9, 2024 · 3 revisions

Layaknya komputer fisik, virtual machine terdapat memory dan core cpu. Pada Vagrant, resource core dan memory virtual machine diatur pada Vagrantfile. Untuk mengatur resource virtual machine dapat dilakukan dengan langkah berikut:

  1. Uncomment konfigurasi:
    config.vm.provider "virtualbox" do |vb|
       # Display the VirtualBox GUI when booting the machine
       # vb.gui = true
    
       # Customize the amount of memory on the VM:
       vb.memory = "1024"
    end
  2. Untuk menentukan resource memory yang diperlukan ganti value dari vb.memory.
  3. Untuk mengatur core cpu, tambahkan baris sebelum end.
    config.vm.provider "virtualbox" do |vb|
       # Display the VirtualBox GUI when booting the machine
       # vb.gui = true
    
       # Customize the amount of memory on the VM:
       vb.memory = "1024"
           vb.cpus = 2 
    end

Clone this wiki locally