Upgrade to Pro
— share decks privately, control downloads, hide ads and more …
Speaker Deck
Features
Speaker Deck
PRO
Sign in
Sign up for free
Search
Search
Vagrant Tutorials
Search
Masahiro Sakoda
May 22, 2014
Programming
1
74
Vagrant Tutorials
Tutorial for Vagrant beginner
Masahiro Sakoda
May 22, 2014
Tweet
Share
Other Decks in Programming
See All in Programming
Vue・React マルチプロダクト開発を支える Vite
andpad
0
110
「手軽で便利」に潜む罠。 Popover API を WCAG 2.2の視点で安全に使うには
taitotnk
0
840
アルテニア コンサル/ITエンジニア向け 採用ピッチ資料
altenir
0
100
print("Hello, World")
eddie
2
530
もうちょっといいRubyプロファイラを作りたい (2025)
osyoyu
1
420
Putting The Genie in the Bottle - A Crash Course on running LLMs on Android
iurysza
0
140
プロパティベーステストによるUIテスト: LLMによるプロパティ定義生成でエッジケースを捉える
tetta_pdnt
0
310
Kiroの仕様駆動開発から見えてきたAIコーディングとの正しい付き合い方
clshinji
1
210
OSS開発者という働き方
andpad
5
1.7k
旅行プランAIエージェント開発の裏側
ippo012
2
890
奥深くて厄介な「改行」と仲良くなる20分
oguemon
1
520
GitHubとGitLabとAWS CodePipelineでCI/CDを組み比べてみた
satoshi256kbyte
4
220
Featured
See All Featured
Visualization
eitanlees
148
16k
A designer walks into a library…
pauljervisheath
207
24k
Raft: Consensus for Rubyists
vanstee
140
7.1k
Docker and Python
trallard
45
3.6k
実際に使うSQLの書き方 徹底解説 / pgcon21j-tutorial
soudai
PRO
188
55k
The Language of Interfaces
destraynor
161
25k
RailsConf 2023
tenderlove
30
1.2k
StorybookのUI Testing Handbookを読んだ
zakiyama
31
6.1k
What’s in a name? Adding method to the madness
productmarketing
PRO
23
3.7k
Build your cross-platform service in a week with App Engine
jlugia
231
18k
Distributed Sagas: A Protocol for Coordinating Microservices
caitiem20
333
22k
Done Done
chrislema
185
16k
Transcript
Vagrant Tutorials Masahiro Sakoda @masahiroSkd
Agenda • Target • What is Vagrant? • Prepare •
Install and Configure Vagrant • Control Virtual Machine • Other Tips
Target • Required Linux experience • Knowledge of SSH
What is Vagrant?
What is Vagrant? • VirtualBox frontend • Multiplatform • Mac
OS X • Windows • Linux • you can share development environment • integration with chef
Prepare for Installing Vagrant
Prepare for Installing Vagrant • Install VirtualBox • download installer
from https:// www.virtualbox.org/wiki/Downloads • Create Vagrant Directory
Installing Vagrant
Installing Vagrant • download installer from http:// www.vagrantup.com/downloads.html • install
with installer
Configure Box
Creating Box • Image file for Launching Virtual Machine •
Created from OS Image • Create box with following command
Initialize Box • Create Virtual Machine with follwing command
Control Virtual Machine
Launch Virtual Machine • To launch server, execute following command
Login via SSH • To login via SSH, execure like
this
Configure SSH Settings • To execute SSH with host or
alias, configure like this
Shutdown Virtual Machine • vagrant halt
Remove Box
List Box • vagrant box list
Check Vagrant Status • show already running or poweroff
Other Tips
Useful ways to use Vagrant • Just use oh-my-zsh plugin
for vagrant • and use chef to building server environment
@masahiroSkd Thank you for listening.