Skip to content

Instantly share code, notes, and snippets.

View madhusudhanbn's full-sized avatar
Building on Cloud

Madhusudhan B N madhusudhanbn

Building on Cloud
View GitHub Profile
@madhusudhanbn
madhusudhanbn / Vagrantfile
Created April 24, 2022 06:27 — forked from niw/Vagrantfile
A simple Vagrantfile to setup Ubuntu desktop environment with Google Chrome and Japanese input
Vagrant.configure("2") do |config|
config.vm.box = "ubuntu/bionic64"
config.vm.provider :virtualbox do |v|
v.gui = true
v.memory = 2048
end
# Currently "ubuntu/bionic64" on VirtualBox requires `type: "virtualbox"`
# to make synced folder works.
@madhusudhanbn
madhusudhanbn / Vagrantfile
Last active December 25, 2021 14:24
Vagrantfile to setup Ubuntu desktop environment with Google Chrome
Vagrant.configure("2") do |config|
config.vm.box = "ubuntu/focal64"
config.vm.provider :virtualbox do |v|
v.gui = true
v.memory = 4096
v.cpus = 2
v.customize ["modifyvm", :id, "--ioapic", "on"]
end