LoginSignup
2
2

More than 5 years have passed since last update.

VagrantでUbuntuを使っていて、networkがゆっくりしてるときの対処方法

Last updated at Posted at 2012-12-07

例えば、libavahi-common3 を remove してみる。という対処方法

$ cd cookbooks
$ knife cookbook create libavahi-common3 -o ./

libavahi-common3/recipes/default.rb
#
# Cookbook Name:: libavahi-common3
# Recipe:: default
#
# Copyright 2012, YOUR_COMPANY_NAME
#
# All rights reserved - Do Not Redistribute
#
package "libavahi-common3" do
  action :remove
end

$ cd ..
$ vagrant provision

これで今のところ事なきを得ています。

Vagrantの公式サイトに載っていたんですけどね!

2
2
1

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
2
2