LoginSignup
20
21

More than 5 years have passed since last update.

VirtualBox 用 Ubuntu 14.04 LTS 日本語デスクトップ イメージ

Last updated at Posted at 2014-06-30

関連ページ

参考

動機

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

利用手順

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

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

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

    # Use VBoxManage to customize the VM. For example to change memory:
    vb.customize ["modifyvm", :id, "--memory", "2048"]
    vb.customize ["modifyvm", :id, "--vram", "128"]
    vb.customize ["modifyvm", :id, "--accelerate3d", "on"]
  end

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

メモ

シャットダウン時にVMウィンドウが閉じず異常終了するっていう症状が
base box 作成時にあったからわざわざ Vagrant Cloud のページにもそう書いたのに、
今スクリーンショット撮ろうかと思ってやってみたら正常終了するよ。どういうこと。。

20
21
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
20
21