Vagrant プラグインをインストールする

Vagrantで、プラグインをインストールする手順を記述してます。
環境
- OS windows10 pro
- Vagrant 2.3.1
プラグインをインストール
プラグインをインストールするには、「 plugin install 」コマンドを使用します。
> vagrant plugin install プラグイン名 プラグイン名 .....
実際に、「vagrant-vbguest」というプラグインをインストールしてみます。
> vagrant plugin install vagrant-vbguest
Installing the 'vagrant-vbguest' plugin. This can take a few minutes...
Fetching micromachine-3.0.0.gem
Fetching vagrant-vbguest-0.30.0.gem
Installed the plugin 'vagrant-vbguest (0.30.0)'!
インストールされていることが確認できます。
アンインストール
アンインストールするには「 plugin uninstall 」を使用します。
> vagrant plugin uninstall vagrant-vbguest
Uninstalling the 'vagrant-vbguest' plugin...
Successfully uninstalled micromachine-3.0.0
Successfully uninstalled vagrant-vbguest-0.30.0
-
前の記事
Fork コミット前の状態にファイルを戻す 2022.10.12
-
次の記事
Flutter ElevatedButtonの長押しイベントを取得する 2022.10.13
コメントを書く