LoginSignup
3
5

More than 5 years have passed since last update.

VirtualBox 用 Ubuntu 16.04 LTS "Xenial Xerus" 日本語デスクトップ イメージ

Last updated at Posted at 2016-06-03

関連ページ

動機

Unity 3D supported な xenial64 のデスクトップを
パッと作れたらいいなと思って。

利用手順

Shell
$ vagrant init yuki-takei/ubuntu-xenial64-ja

作成された Vagrantfile の、config.vm.provider "virtualbox" do |vb| の部分を以下のように変更

  config.vm.provider "virtualbox" do |vb|
    vb.gui = true

    vb.customize ["modifyvm", :id, "--memory", "2048"]
    vb.customize ["modifyvm", :id, "--ioapic", "on"]
    vb.customize ["modifyvm", :id, "--vram", "128"]
    vb.customize ["modifyvm", :id, "--accelerate3d", "on"]
  end

因みに Vagrant Enterprise のページはこちら。
https://atlas.hashicorp.com/yuki-takei/boxes/ubuntu-xenial64-ja/

備考

3
5
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
3
5