最終目標として、windows7でvagrantを使ってlubuntuを立ち上げができるようなるまで、
いろいろ試行錯誤しながら設定しようと思います。まずはVagrantのインストール手順。

Vagrantのインストール

まずは最新版をダウンロードしてインストール。
インストーラに従ってそのまま普通にインストールでOK。
現時点の最新、1.3.3をインストールします。

http://downloads.vagrantup.com/

Vagrant install

 

VirtualBoxのインストール

こちらも同じように簡単にインストールできます。 現時点ではVirtualBox 4.2.18でした。

https://www.virtualbox.org/wiki/Downloads

 

インストールが完了したところ

Image [4]

コマンドラインから、インストールの確認

c:\>vagrant -v
Vagrant 1.3.3

Vagrantの初期設定
作業用フォルダを作り、そこで作業します。
今回の最終目標はlubuntuデスクトップになるので、それ用のディレクトリを作って作業。

作業用フォルダで
vagrant initで初期化。

c:\work\vagrant\lubuntu>vagrant init
A `Vagrantfile` has been placed in this directory. You are now
ready to `vagrant up` your first virtual environment! Please read
the comments in the Vagrantfile as well as documentation on
`vagrantup.com` for more information on using Vagrant.

c:\work\vagrant\lubuntu>

ディレクトリに、Vagrantfileというファイルができるので、少し編集。

13行目のconfig.vm.boxと17行目のconfig.vm.box_urlを編集

  # Every Vagrant virtual environment requires a box to build off of.
  config.vm.box = "lubuntu"
 
  # The url from where the 'config.vm.box' box will be fetched if it
  # doesn't already exist on the user's system.
  config.vm.box_url = "http://files.vagrantup.com/precise64.box"

47行目辺りからのconfig.vm.providerも編集。
メモリ、CPU、VRAM、マルチモニタ設定は各人の環境にあった値に。

  config.vm.provider :virtualbox do |vb|
      # see http://www.virtualbox.org/manual/ch08.html
    vb.customize ["modifyvm", :id, "--memory", 1024]
    vb.customize ["modifyvm", :id, "--cpus", 2]
    vb.customize ["modifyvm", :id, "--vram", 32]
    vb.customize ["modifyvm", :id, "--clipboard", "bidirectional"]   # クリップボード共有
    vb.customize ["modifyvm", :id, "--draganddrop", "bidirectional"] # drag & drop
    vb.customize ["modifyvm", :id, "--monitorcount", "2"]            # マルチモニタ
    vb.gui = true  # displayを表示する
  end

これで,vagrant up。box_urlからのダウンロードも合わせて始まるので、しばし待ちます。

c:\work\vagrant\lubuntu>vagrant up
Bringing machine 'default' up with 'virtualbox' provider...
[default] Box 'lubuntu' was not found. Fetching box from specified URL for
the provider 'virtualbox'. Note that if the URL does not have
a box for this provider, you should interrupt Vagrant now and add
the box yourself. Otherwise Vagrant will attempt to download the
full box prior to discovering this error.
Downloading or copying the box...
Extracting box...ate: 1690k/s, Estimated time remaining: --:--:--)
Successfully added box 'lubuntu' with provider 'virtualbox'!
[default] Importing base box 'lubuntu'...
[default] Matching MAC address for NAT networking...
[default] Setting the name of the VM...
[default] Clearing any previously set forwarded ports...
[default] Creating shared folders metadata...
[default] Clearing any previously set network interfaces...
[default] Preparing network interfaces based on configuration...
[default] Forwarding ports...
[default] -- 22 => 2222 (adapter 1)
[default] Running 'pre-boot' VM customizations...
[default] Booting VM...
[default] Waiting for machine to boot. This may take a few minutes...
[default] Machine booted and ready!
[default] Mounting shared folders...
[default] -- /vagrant

c:\work\vagrant\lubuntu>

普通の解説では、vagrant sshでログインという説明ですが、
コンソールが表示されているので、普通のコンソールログインができることを確認します。
ユーザー、パスワードはvagrantです。vagrantup

ひとまずここまで。
vagrantの終了はwindowsのコマンドラインから

vagrant halt
Vagrant入門ガイド
Vagrant入門ガイド
posted with amazlet at 13.09.22
技術評論社 (2013-09-12)
売り上げランキング: 198
Pocket

Comments are closed.