LoginSignup
17
13

More than 5 years have passed since last update.

MacOS(OSX)でコマンドラインからdmgインストール

Last updated at Posted at 2017-05-26

メモメモ
この例では、Vagrant1.9.5をインストールします

OS Version

$ sw_vers
ProductName:    Mac OS X
ProductVersion: 10.12.4
BuildVersion:   16E195

Download

$ wget https://releases.hashicorp.com/vagrant/1.9.5/vagrant_1.9.5_x86_64.dmg

※ wgetは事前にbrewでインスコ済み(brew install wget

マウント

hdiutil mount vagrant_1.9.5_x86_64.dmg

マウント確認

$ df
Filesystem    512-blocks      Used Available Capacity iused      ifree %iused  Mounted on
...
/dev/disk2s1      204720    146336     58384    72%       6 4294967273    0%   /Volumes/Vagrant

install

# マウントしたところに移動
$ cd /Volumes/Vagrant

$ installer -pkg vagrant.pkg -target / -lang ja

かくにん!

$ vagrant -v
Vagrant 1.9.5

デタッチする

$ cd 
$ hdiutil detach /Volumes/Vagrant

おしまい!

17
13
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
17
13