fgrehm / vagrant-lxc

LXC provider for Vagrant
MIT License
1.21k stars 181 forks source link

Error while vagrant up #444

Closed andreclaudino closed 7 years ago

andreclaudino commented 7 years ago

I am receiving this error while vagrant up

$> vagrant up
Bringing machine 'tensorflow' up with 'lxc' provider...
==> tensorflow: Checking if box 'fgrehm/trusty64-lxc' is up to date...
==> tensorflow: Setting up mount entries for shared folders...
    tensorflow:  => /home/claudino/Aplicacoes/pacotes/cuda
==> tensorflow: Starting container...
There was an error executing ["sudo", "/usr/local/bin/vagrant-lxc-wrapper", "lxc-start", "-d", "--name", "tensorflow"]

A google search showed me problems like this are related to networking, but I can't solve it yet. My Vagrantfile is

Vagrant.configure(2) do |config|

    config.vm.synced_folder ".", "/vagrant", disabled: true
    config.vm.box = "fgrehm/trusty64-lxc"

    config.vm.define "tensorflow", primary: true do |tf|        
        tf.vm.network :forwarded_port, guest: 8888, host: 8080
        config.vm.network "private_network", ip: "173.198.43.01", lxc__bridge_name: 'vlxcbr1'
        tf.vm.synced_folder "./", ""
        tf.vm.provision "shell", path: "nvidia-activate.sh"

        tf.vm.provider :lxc do |lxc|
            lxc.container_name = :machine
        end
    end    
end

Some versions of programs in my machine:

$> vagrant --version
Vagrant 1.9.1
$> lxc-info --version
2.0.8

Am I doing something wrong or this is a bug?

iamjvn commented 7 years ago

Perhaps the output from vagrant up --debug will be useful.

andreclaudino commented 7 years ago

This is:

INFO global: Vagrant version: 1.9.1
 INFO global: Ruby version: 2.3.3
 INFO global: RubyGems version: 2.5.2
 INFO global: VAGRANT_LOG="debug"
 INFO global: Plugins:
 INFO global:   - vagrant-lxc = [installed: 1.2.3 constraint: > 0]
DEBUG bundler: Current generated plugin dependency list: [<Gem::Dependency type=:runtime name="vagrant-lxc" requirements="> 0">]
DEBUG bundler: Generating new builtin set instance.
DEBUG bundler: Generating new plugin set instance. Skip gems - []
DEBUG bundler: Activating solution set: ["vagrant-lxc-1.2.3"]
DEBUG bundler: Activating gem vagrant-lxc-1.2.3
DEBUG global: Loading core plugin: /usr/share/rubygems-integration/all/gems/vagrant-1.9.1/plugins/providers/hyperv/plugin.rb
 INFO manager: Registered plugin: Hyper-V provider
DEBUG global: Loading core plugin: /usr/share/rubygems-integration/all/gems/vagrant-1.9.1/plugins/providers/virtualbox/plugin.rb
 INFO manager: Registered plugin: VirtualBox provider
DEBUG global: Loading core plugin: /usr/share/rubygems-integration/all/gems/vagrant-1.9.1/plugins/providers/docker/plugin.rb
 INFO manager: Registered plugin: docker-provider
DEBUG global: Loading core plugin: /usr/share/rubygems-integration/all/gems/vagrant-1.9.1/plugins/kernel_v1/plugin.rb
 INFO manager: Registered plugin: kernel
DEBUG global: Loading core plugin: /usr/share/rubygems-integration/all/gems/vagrant-1.9.1/plugins/commands/suspend/plugin.rb
 INFO manager: Registered plugin: suspend command
DEBUG global: Loading core plugin: /usr/share/rubygems-integration/all/gems/vagrant-1.9.1/plugins/commands/login/plugin.rb
 INFO manager: Registered plugin: vagrant-login
DEBUG global: Loading core plugin: /usr/share/rubygems-integration/all/gems/vagrant-1.9.1/plugins/commands/destroy/plugin.rb
 INFO manager: Registered plugin: destroy command
DEBUG global: Loading core plugin: /usr/share/rubygems-integration/all/gems/vagrant-1.9.1/plugins/commands/provision/plugin.rb
 INFO manager: Registered plugin: provision command
DEBUG global: Loading core plugin: /usr/share/rubygems-integration/all/gems/vagrant-1.9.1/plugins/commands/rdp/plugin.rb
 INFO manager: Registered plugin: rdp command
DEBUG global: Loading core plugin: /usr/share/rubygems-integration/all/gems/vagrant-1.9.1/plugins/commands/list-commands/plugin.rb
 INFO manager: Registered plugin: list-commands command
DEBUG global: Loading core plugin: /usr/share/rubygems-integration/all/gems/vagrant-1.9.1/plugins/commands/box/plugin.rb
 INFO manager: Registered plugin: box command
DEBUG global: Loading core plugin: /usr/share/rubygems-integration/all/gems/vagrant-1.9.1/plugins/commands/cap/plugin.rb
 INFO manager: Registered plugin: cap command
DEBUG global: Loading core plugin: /usr/share/rubygems-integration/all/gems/vagrant-1.9.1/plugins/commands/ssh_config/plugin.rb
 INFO manager: Registered plugin: ssh-config command
DEBUG global: Loading core plugin: /usr/share/rubygems-integration/all/gems/vagrant-1.9.1/plugins/commands/ssh/plugin.rb
 INFO manager: Registered plugin: ssh command
DEBUG global: Loading core plugin: /usr/share/rubygems-integration/all/gems/vagrant-1.9.1/plugins/commands/port/plugin.rb
 INFO manager: Registered plugin: port command
DEBUG global: Loading core plugin: /usr/share/rubygems-integration/all/gems/vagrant-1.9.1/plugins/commands/help/plugin.rb
 INFO manager: Registered plugin: help command
DEBUG global: Loading core plugin: /usr/share/rubygems-integration/all/gems/vagrant-1.9.1/plugins/commands/up/plugin.rb
 INFO manager: Registered plugin: up command
DEBUG global: Loading core plugin: /usr/share/rubygems-integration/all/gems/vagrant-1.9.1/plugins/commands/version/plugin.rb
 INFO manager: Registered plugin: version command
DEBUG global: Loading core plugin: /usr/share/rubygems-integration/all/gems/vagrant-1.9.1/plugins/commands/halt/plugin.rb
 INFO manager: Registered plugin: halt command
DEBUG global: Loading core plugin: /usr/share/rubygems-integration/all/gems/vagrant-1.9.1/plugins/commands/global-status/plugin.rb
 INFO manager: Registered plugin: global-status command
DEBUG global: Loading core plugin: /usr/share/rubygems-integration/all/gems/vagrant-1.9.1/plugins/commands/resume/plugin.rb
 INFO manager: Registered plugin: resume command
DEBUG global: Loading core plugin: /usr/share/rubygems-integration/all/gems/vagrant-1.9.1/plugins/commands/plugin/plugin.rb
 INFO manager: Registered plugin: plugin command
DEBUG global: Loading core plugin: /usr/share/rubygems-integration/all/gems/vagrant-1.9.1/plugins/commands/package/plugin.rb
 INFO manager: Registered plugin: package command
DEBUG global: Loading core plugin: /usr/share/rubygems-integration/all/gems/vagrant-1.9.1/plugins/commands/powershell/plugin.rb
 INFO manager: Registered plugin: powershell command
DEBUG global: Loading core plugin: /usr/share/rubygems-integration/all/gems/vagrant-1.9.1/plugins/commands/provider/plugin.rb
 INFO manager: Registered plugin: provider command
DEBUG global: Loading core plugin: /usr/share/rubygems-integration/all/gems/vagrant-1.9.1/plugins/commands/init/plugin.rb
 INFO manager: Registered plugin: init command
DEBUG global: Loading core plugin: /usr/share/rubygems-integration/all/gems/vagrant-1.9.1/plugins/commands/push/plugin.rb
 INFO manager: Registered plugin: push command
DEBUG global: Loading core plugin: /usr/share/rubygems-integration/all/gems/vagrant-1.9.1/plugins/commands/reload/plugin.rb
 INFO manager: Registered plugin: reload command
DEBUG global: Loading core plugin: /usr/share/rubygems-integration/all/gems/vagrant-1.9.1/plugins/commands/snapshot/plugin.rb
 INFO manager: Registered plugin: snapshot command
DEBUG global: Loading core plugin: /usr/share/rubygems-integration/all/gems/vagrant-1.9.1/plugins/commands/status/plugin.rb
 INFO manager: Registered plugin: status command
DEBUG global: Loading core plugin: /usr/share/rubygems-integration/all/gems/vagrant-1.9.1/plugins/guests/darwin/plugin.rb
 INFO manager: Registered plugin: Darwin guest
DEBUG global: Loading core plugin: /usr/share/rubygems-integration/all/gems/vagrant-1.9.1/plugins/guests/pld/plugin.rb
 INFO manager: Registered plugin: PLD Linux guest
DEBUG global: Loading core plugin: /usr/share/rubygems-integration/all/gems/vagrant-1.9.1/plugins/guests/nixos/plugin.rb
 INFO manager: Registered plugin: NixOS guest
DEBUG global: Loading core plugin: /usr/share/rubygems-integration/all/gems/vagrant-1.9.1/plugins/guests/atomic/plugin.rb
 INFO manager: Registered plugin: Atomic Host guest
DEBUG global: Loading core plugin: /usr/share/rubygems-integration/all/gems/vagrant-1.9.1/plugins/guests/arch/plugin.rb
 INFO manager: Registered plugin: Arch guest
DEBUG global: Loading core plugin: /usr/share/rubygems-integration/all/gems/vagrant-1.9.1/plugins/guests/gentoo/plugin.rb
 INFO manager: Registered plugin: Gentoo guest
DEBUG global: Loading core plugin: /usr/share/rubygems-integration/all/gems/vagrant-1.9.1/plugins/guests/omnios/plugin.rb
 INFO manager: Registered plugin: OmniOS guest.
DEBUG global: Loading core plugin: /usr/share/rubygems-integration/all/gems/vagrant-1.9.1/plugins/guests/solaris11/plugin.rb
 INFO manager: Registered plugin: Solaris 11 guest.
DEBUG global: Loading core plugin: /usr/share/rubygems-integration/all/gems/vagrant-1.9.1/plugins/guests/netbsd/plugin.rb
 INFO manager: Registered plugin: NetBSD guest
DEBUG global: Loading core plugin: /usr/share/rubygems-integration/all/gems/vagrant-1.9.1/plugins/guests/amazon/plugin.rb
 INFO manager: Registered plugin: Amazon Linux guest
DEBUG global: Loading core plugin: /usr/share/rubygems-integration/all/gems/vagrant-1.9.1/plugins/guests/linux/plugin.rb
 INFO manager: Registered plugin: Linux guest.
DEBUG global: Loading core plugin: /usr/share/rubygems-integration/all/gems/vagrant-1.9.1/plugins/guests/funtoo/plugin.rb
 INFO manager: Registered plugin: Funtoo guest
DEBUG global: Loading core plugin: /usr/share/rubygems-integration/all/gems/vagrant-1.9.1/plugins/guests/mint/plugin.rb
 INFO manager: Registered plugin: Mint guest
DEBUG global: Loading core plugin: /usr/share/rubygems-integration/all/gems/vagrant-1.9.1/plugins/guests/suse/plugin.rb
 INFO manager: Registered plugin: SUSE guest
DEBUG global: Loading core plugin: /usr/share/rubygems-integration/all/gems/vagrant-1.9.1/plugins/guests/freebsd/plugin.rb
 INFO manager: Registered plugin: FreeBSD guest
DEBUG global: Loading core plugin: /usr/share/rubygems-integration/all/gems/vagrant-1.9.1/plugins/guests/redhat/plugin.rb
 INFO manager: Registered plugin: Red Hat Enterprise Linux guest
DEBUG global: Loading core plugin: /usr/share/rubygems-integration/all/gems/vagrant-1.9.1/plugins/guests/coreos/plugin.rb
 INFO manager: Registered plugin: CoreOS guest
DEBUG global: Loading core plugin: /usr/share/rubygems-integration/all/gems/vagrant-1.9.1/plugins/guests/fedora/plugin.rb
 INFO manager: Registered plugin: Fedora guest
DEBUG global: Loading core plugin: /usr/share/rubygems-integration/all/gems/vagrant-1.9.1/plugins/guests/smartos/plugin.rb
 INFO manager: Registered plugin: SmartOS guest.
DEBUG global: Loading core plugin: /usr/share/rubygems-integration/all/gems/vagrant-1.9.1/plugins/guests/ubuntu/plugin.rb
 INFO manager: Registered plugin: Ubuntu guest
DEBUG global: Loading core plugin: /usr/share/rubygems-integration/all/gems/vagrant-1.9.1/plugins/guests/esxi/plugin.rb
 INFO manager: Registered plugin: ESXi guest.
DEBUG global: Loading core plugin: /usr/share/rubygems-integration/all/gems/vagrant-1.9.1/plugins/guests/bsd/plugin.rb
 INFO manager: Registered plugin: BSD-based guest
DEBUG global: Loading core plugin: /usr/share/rubygems-integration/all/gems/vagrant-1.9.1/plugins/guests/windows/plugin.rb
 INFO manager: Registered plugin: Windows guest.
DEBUG global: Loading core plugin: /usr/share/rubygems-integration/all/gems/vagrant-1.9.1/plugins/guests/trisquel/plugin.rb
 INFO manager: Registered plugin: Trisquel guest
DEBUG global: Loading core plugin: /usr/share/rubygems-integration/all/gems/vagrant-1.9.1/plugins/guests/slackware/plugin.rb
 INFO manager: Registered plugin: Slackware guest
DEBUG global: Loading core plugin: /usr/share/rubygems-integration/all/gems/vagrant-1.9.1/plugins/guests/dragonflybsd/plugin.rb
 INFO manager: Registered plugin: DragonFly BSD guest
DEBUG global: Loading core plugin: /usr/share/rubygems-integration/all/gems/vagrant-1.9.1/plugins/guests/tinycore/plugin.rb
 INFO manager: Registered plugin: TinyCore Linux guest.
DEBUG global: Loading core plugin: /usr/share/rubygems-integration/all/gems/vagrant-1.9.1/plugins/guests/photon/plugin.rb
 INFO manager: Registered plugin: VMware Photon guest
DEBUG global: Loading core plugin: /usr/share/rubygems-integration/all/gems/vagrant-1.9.1/plugins/guests/solaris/plugin.rb
 INFO manager: Registered plugin: Solaris guest.
DEBUG global: Loading core plugin: /usr/share/rubygems-integration/all/gems/vagrant-1.9.1/plugins/guests/openbsd/plugin.rb
 INFO manager: Registered plugin: OpenBSD guest
DEBUG global: Loading core plugin: /usr/share/rubygems-integration/all/gems/vagrant-1.9.1/plugins/guests/debian/plugin.rb
 INFO manager: Registered plugin: Debian guest
DEBUG global: Loading core plugin: /usr/share/rubygems-integration/all/gems/vagrant-1.9.1/plugins/communicators/ssh/plugin.rb
 INFO manager: Registered plugin: ssh communicator
DEBUG global: Loading core plugin: /usr/share/rubygems-integration/all/gems/vagrant-1.9.1/plugins/communicators/winrm/plugin.rb
 INFO manager: Registered plugin: winrm communicator
DEBUG global: Loading core plugin: /usr/share/rubygems-integration/all/gems/vagrant-1.9.1/plugins/kernel_v2/plugin.rb
 INFO manager: Registered plugin: kernel
DEBUG global: Loading core plugin: /usr/share/rubygems-integration/all/gems/vagrant-1.9.1/plugins/provisioners/puppet/plugin.rb
 INFO manager: Registered plugin: puppet
DEBUG global: Loading core plugin: /usr/share/rubygems-integration/all/gems/vagrant-1.9.1/plugins/provisioners/file/plugin.rb
 INFO manager: Registered plugin: file
DEBUG global: Loading core plugin: /usr/share/rubygems-integration/all/gems/vagrant-1.9.1/plugins/provisioners/salt/plugin.rb
 INFO manager: Registered plugin: salt
DEBUG global: Loading core plugin: /usr/share/rubygems-integration/all/gems/vagrant-1.9.1/plugins/provisioners/chef/plugin.rb
 INFO manager: Registered plugin: chef
DEBUG global: Loading core plugin: /usr/share/rubygems-integration/all/gems/vagrant-1.9.1/plugins/provisioners/ansible/plugin.rb
 INFO manager: Registered plugin: ansible
DEBUG global: Loading core plugin: /usr/share/rubygems-integration/all/gems/vagrant-1.9.1/plugins/provisioners/docker/plugin.rb
 INFO manager: Registered plugin: docker
DEBUG global: Loading core plugin: /usr/share/rubygems-integration/all/gems/vagrant-1.9.1/plugins/provisioners/cfengine/plugin.rb
 INFO manager: Registered plugin: CFEngine Provisioner
DEBUG global: Loading core plugin: /usr/share/rubygems-integration/all/gems/vagrant-1.9.1/plugins/provisioners/shell/plugin.rb
 INFO manager: Registered plugin: shell
DEBUG global: Loading core plugin: /usr/share/rubygems-integration/all/gems/vagrant-1.9.1/plugins/pushes/noop/plugin.rb
 INFO manager: Registered plugin: noop
DEBUG global: Loading core plugin: /usr/share/rubygems-integration/all/gems/vagrant-1.9.1/plugins/pushes/heroku/plugin.rb
 INFO manager: Registered plugin: heroku
DEBUG global: Loading core plugin: /usr/share/rubygems-integration/all/gems/vagrant-1.9.1/plugins/pushes/atlas/plugin.rb
 INFO manager: Registered plugin: atlas
DEBUG global: Loading core plugin: /usr/share/rubygems-integration/all/gems/vagrant-1.9.1/plugins/pushes/local-exec/plugin.rb
 INFO manager: Registered plugin: local-exec
DEBUG global: Loading core plugin: /usr/share/rubygems-integration/all/gems/vagrant-1.9.1/plugins/pushes/ftp/plugin.rb
 INFO manager: Registered plugin: ftp
DEBUG global: Loading core plugin: /usr/share/rubygems-integration/all/gems/vagrant-1.9.1/plugins/hosts/darwin/plugin.rb
 INFO manager: Registered plugin: Mac OS X host
DEBUG global: Loading core plugin: /usr/share/rubygems-integration/all/gems/vagrant-1.9.1/plugins/hosts/arch/plugin.rb
 INFO manager: Registered plugin: Arch host
DEBUG global: Loading core plugin: /usr/share/rubygems-integration/all/gems/vagrant-1.9.1/plugins/hosts/gentoo/plugin.rb
 INFO manager: Registered plugin: Gentoo host
DEBUG global: Loading core plugin: /usr/share/rubygems-integration/all/gems/vagrant-1.9.1/plugins/hosts/null/plugin.rb
 INFO manager: Registered plugin: null host
DEBUG global: Loading core plugin: /usr/share/rubygems-integration/all/gems/vagrant-1.9.1/plugins/hosts/linux/plugin.rb
 INFO manager: Registered plugin: Linux host
DEBUG global: Loading core plugin: /usr/share/rubygems-integration/all/gems/vagrant-1.9.1/plugins/hosts/suse/plugin.rb
 INFO manager: Registered plugin: SUSE host
DEBUG global: Loading core plugin: /usr/share/rubygems-integration/all/gems/vagrant-1.9.1/plugins/hosts/freebsd/plugin.rb
 INFO manager: Registered plugin: FreeBSD host
DEBUG global: Loading core plugin: /usr/share/rubygems-integration/all/gems/vagrant-1.9.1/plugins/hosts/redhat/plugin.rb
 INFO manager: Registered plugin: Red Hat Enterprise Linux host
DEBUG global: Loading core plugin: /usr/share/rubygems-integration/all/gems/vagrant-1.9.1/plugins/hosts/bsd/plugin.rb
 INFO manager: Registered plugin: BSD host
DEBUG global: Loading core plugin: /usr/share/rubygems-integration/all/gems/vagrant-1.9.1/plugins/hosts/windows/plugin.rb
 INFO manager: Registered plugin: Windows host
DEBUG global: Loading core plugin: /usr/share/rubygems-integration/all/gems/vagrant-1.9.1/plugins/hosts/slackware/plugin.rb
 INFO manager: Registered plugin: Slackware host
DEBUG global: Loading core plugin: /usr/share/rubygems-integration/all/gems/vagrant-1.9.1/plugins/synced_folders/smb/plugin.rb
 INFO manager: Registered plugin: SMB synced folders
DEBUG global: Loading core plugin: /usr/share/rubygems-integration/all/gems/vagrant-1.9.1/plugins/synced_folders/nfs/plugin.rb
 INFO manager: Registered plugin: NFS synced folders
DEBUG global: Loading core plugin: /usr/share/rubygems-integration/all/gems/vagrant-1.9.1/plugins/synced_folders/rsync/plugin.rb
 INFO manager: Registered plugin: RSync synced folders
 INFO global: Loading plugins!
DEBUG global: Loading plugin `vagrant-lxc` with default require: `vagrant-lxc`
 INFO manager: Registered plugin: vagrant-lxc
DEBUG global: Successfully loaded plugin `vagrant-lxc`.
 INFO vagrant: `vagrant` invoked: ["up", "--debug"]
DEBUG vagrant: Creating Vagrant environment
 INFO environment: Environment initialized (#<Vagrant::Environment:0x0055f4145fec78>)
 INFO environment:   - cwd: /home/claudino/Aplicacoes/pacotes/cuda
 INFO environment: Home path: /home/claudino/.vagrant.d
DEBUG environment: Effective local data path: /home/claudino/Aplicacoes/pacotes/cuda/.vagrant
 INFO environment: Local data path: /home/claudino/Aplicacoes/pacotes/cuda/.vagrant
DEBUG environment: Creating: /home/claudino/Aplicacoes/pacotes/cuda/.vagrant
 INFO environment: Running hook: environment_plugins_loaded
 INFO runner: Preparing hooks for middleware sequence...
 INFO runner: 1 hooks defined.
 INFO runner: Running action: environment_plugins_loaded #<Vagrant::Action::Builder:0x0055f414a482e8>
 INFO environment: Running hook: environment_load
 INFO runner: Preparing hooks for middleware sequence...
 INFO runner: 1 hooks defined.
 INFO runner: Running action: environment_load #<Vagrant::Action::Builder:0x0055f414c69ef0>
 INFO cli: CLI: [] "up" []
DEBUG cli: Invoking command class: VagrantPlugins::CommandUp::Command []
DEBUG command: 'Up' each target VM...
 INFO loader: Set :root = ["#<Pathname:/home/claudino/Aplicacoes/pacotes/cuda/Vagrantfile>"]
DEBUG loader: Populating proc cache for #<Pathname:/home/claudino/Aplicacoes/pacotes/cuda/Vagrantfile>
DEBUG loader: Load procs for pathname: /home/claudino/Aplicacoes/pacotes/cuda/Vagrantfile
 INFO loader: Loading configuration in order: [:home, :root]
DEBUG loader: Loading from: root (evaluating)
DEBUG loader: Configuration loaded successfully, finalizing and returning
DEBUG push: finalizing
DEBUG command: Getting target VMs for command. Arguments:
DEBUG command:  -- names: ["tensorflow"]
DEBUG command:  -- options: nil
DEBUG command: Finding machine that match name: tensorflow
 INFO command: Active machine found with name tensorflow. Using provider: lxc
 INFO environment: Getting machine: tensorflow (lxc)
 INFO environment: Uncached load of machine.
 INFO loader: Set "47253403109280_machine_tensorflow" = ["[\"2\", #<Proc:0x0055f4145fe200@/home/claudino/Aplicacoes/pacotes/cuda/Vagrantfile:7>]"]
DEBUG loader: Populating proc cache for ["2", #<Proc:0x0055f4145fe200@/home/claudino/Aplicacoes/pacotes/cuda/Vagrantfile:7>]
 INFO loader: Loading configuration in order: [:home, :root, "47253403109280_machine_tensorflow"]
DEBUG loader: Loading from: root (cache)
DEBUG loader: Loading from: 47253403109280_machine_tensorflow (evaluating)
DEBUG provisioner: Provisioner defined: 
DEBUG loader: Configuration loaded successfully, finalizing and returning
DEBUG push: finalizing
 INFO box_collection: Box found: fgrehm/trusty64-lxc (lxc)
 INFO environment: Running hook: authenticate_box_url
 INFO host: Autodetecting host type for [#<Vagrant::Environment: /home/claudino/Aplicacoes/pacotes/cuda>]
DEBUG host: Trying: darwin
DEBUG host: Trying: arch
DEBUG host: Trying: gentoo
DEBUG host: Trying: suse
DEBUG host: Trying: freebsd
DEBUG host: Trying: redhat
DEBUG host: Trying: slackware
DEBUG host: Trying: null
DEBUG host: Trying: linux
 INFO host: Detected: linux!
 INFO runner: Preparing hooks for middleware sequence...
 INFO runner: 2 hooks defined.
 INFO runner: Running action: authenticate_box_url #<Vagrant::Action::Builder:0x0055f4148e6e18>
 INFO warden: Calling IN action: #<VagrantPlugins::LoginCommand::AddAuthentication:0x0055f41601e478>
DEBUG client: No authentication token in environment or /home/claudino/.vagrant.d/data/vagrant_login_token
 INFO warden: Calling OUT action: #<VagrantPlugins::LoginCommand::AddAuthentication:0x0055f41601e478>
 INFO machine: Initializing machine: tensorflow
 INFO machine:   - Provider: Vagrant::LXC::Provider
 INFO machine:   - Box: #<Vagrant::Box:0x0055f4160667f0>
 INFO machine:   - Data dir: /home/claudino/Aplicacoes/pacotes/cuda/.vagrant/machines/tensorflow/lxc
DEBUG lxc: Found sudo wrapper : /usr/local/bin/vagrant-lxc-wrapper
 INFO subprocess: Starting process: ["/usr/bin/sudo", "/usr/local/bin/vagrant-lxc-wrapper", "which", "lxc-create"]
 INFO subprocess: Vagrant not running in installer, restoring original environment...
DEBUG subprocess: Selecting on IO
DEBUG subprocess: stdout: /usr/bin/lxc-create
DEBUG subprocess: Waiting for process to exit. Remaining to timeout: 32000
DEBUG subprocess: Exit status: 0
DEBUG lxc: Instantiating the container for: "tensorflow"
 INFO subprocess: Starting process: ["/usr/bin/sudo", "/usr/local/bin/vagrant-lxc-wrapper", "lxc-ls"]
 INFO subprocess: Vagrant not running in installer, restoring original environment...
DEBUG subprocess: Selecting on IO
DEBUG subprocess: stdout: environment_api_1498090819403_57361      
environment_db_web_ml_1498090824195_18544
tensorflow                               
DEBUG subprocess: Waiting for process to exit. Remaining to timeout: 32000
DEBUG subprocess: Exit status: 0
 INFO subprocess: Starting process: ["/usr/bin/sudo", "/usr/local/bin/vagrant-lxc-wrapper", "lxc-info", "--name", "tensorflow"]
 INFO subprocess: Vagrant not running in installer, restoring original environment...
DEBUG subprocess: Selecting on IO
DEBUG subprocess: stdout: Name:           tensorflow
State:          STOPPED
DEBUG subprocess: Waiting for process to exit. Remaining to timeout: 32000
DEBUG subprocess: Exit status: 0
 INFO interface: Machine: metadata ["provider", :lxc, {:target=>:tensorflow}]
 INFO command: With machine: tensorflow (#<Vagrant::LXC::Provider:0x0055f416140540 @logger=#<Log4r::Logger:0x0055f4161404f0 @fullname="vagrant::provider::lxc", @outputters=[], @additive=true, @name="lxc", @path="vagrant::provider", @parent=#<Log4r::Logger:0x0055f4141f5c58 @fullname="vagrant", @outputters=[#<Log4r::StderrOutputter:0x0055f41437af10 @mon_owner=nil, @mon_count=0, @mon_mutex=#<Thread::Mutex:0x0055f41437ad30>, @name="stderr", @level=0, @formatter=#<Log4r::DefaultFormatter:0x0055f414511c98 @depth=7>, @out=#<IO:<STDERR>>>], @additive=true, @name="vagrant", @path="", @parent=#<Log4r::RootLogger:0x0055f4141f5af0 @level=0, @outputters=[]>, @level=1, @trace=false>, @level=1, @trace=false>, @machine=#<Vagrant::Machine: tensorflow (Vagrant::LXC::Provider)>, @shell=#<Vagrant::LXC::SudoWrapper:0x0055f41616e0a8 @wrapper_path="/usr/local/bin/vagrant-lxc-wrapper", @logger=#<Log4r::Logger:0x0055f41616e058 @fullname="vagrant::lxc::sudo_wrapper", @outputters=[], @additive=true, @name="sudo_wrapper", @path="vagrant::lxc", @parent=#<Log4r::Logger:0x0055f4141f5c58 @fullname="vagrant", @outputters=[#<Log4r::StderrOutputter:0x0055f41437af10 @mon_owner=nil, @mon_count=0, @mon_mutex=#<Thread::Mutex:0x0055f41437ad30>, @name="stderr", @level=0, @formatter=#<Log4r::DefaultFormatter:0x0055f414511c98 @depth=7>, @out=#<IO:<STDERR>>>], @additive=true, @name="vagrant", @path="", @parent=#<Log4r::RootLogger:0x0055f4141f5af0 @level=0, @outputters=[]>, @level=1, @trace=false>, @level=1, @trace=false>>, @driver=#<Vagrant::LXC::Driver:0x0055f414c23d60 @container_name="tensorflow", @sudo_wrapper=#<Vagrant::LXC::SudoWrapper:0x0055f41616e0a8 @wrapper_path="/usr/local/bin/vagrant-lxc-wrapper", @logger=#<Log4r::Logger:0x0055f41616e058 @fullname="vagrant::lxc::sudo_wrapper", @outputters=[], @additive=true, @name="sudo_wrapper", @path="vagrant::lxc", @parent=#<Log4r::Logger:0x0055f4141f5c58 @fullname="vagrant", @outputters=[#<Log4r::StderrOutputter:0x0055f41437af10 @mon_owner=nil, @mon_count=0, @mon_mutex=#<Thread::Mutex:0x0055f41437ad30>, @name="stderr", @level=0, @formatter=#<Log4r::DefaultFormatter:0x0055f414511c98 @depth=7>, @out=#<IO:<STDERR>>>], @additive=true, @name="vagrant", @path="", @parent=#<Log4r::RootLogger:0x0055f4141f5af0 @level=0, @outputters=[]>, @level=1, @trace=false>, @level=1, @trace=false>>, @cli=#<Vagrant::LXC::Driver::CLI:0x0055f414c23770 @sudo_wrapper=#<Vagrant::LXC::SudoWrapper:0x0055f41616e0a8 @wrapper_path="/usr/local/bin/vagrant-lxc-wrapper", @logger=#<Log4r::Logger:0x0055f41616e058 @fullname="vagrant::lxc::sudo_wrapper", @outputters=[], @additive=true, @name="sudo_wrapper", @path="vagrant::lxc", @parent=#<Log4r::Logger:0x0055f4141f5c58 @fullname="vagrant", @outputters=[#<Log4r::StderrOutputter:0x0055f41437af10 @mon_owner=nil, @mon_count=0, @mon_mutex=#<Thread::Mutex:0x0055f41437ad30>, @name="stderr", @level=0, @formatter=#<Log4r::DefaultFormatter:0x0055f414511c98 @depth=7>, @out=#<IO:<STDERR>>>], @additive=true, @name="vagrant", @path="", @parent=#<Log4r::RootLogger:0x0055f4141f5af0 @level=0, @outputters=[]>, @level=1, @trace=false>, @level=1, @trace=false>>, @name="tensorflow", @logger=#<Log4r::Logger:0x0055f414c23338 @fullname="vagrant::provider::lxc::container::cli", @outputters=[], @additive=true, @name="cli", @path="vagrant::provider::lxc::container", @parent=#<Log4r::Logger:0x0055f4161404f0 @fullname="vagrant::provider::lxc", @outputters=[], @additive=true, @name="lxc", @path="vagrant::provider", @parent=#<Log4r::Logger:0x0055f4141f5c58 @fullname="vagrant", @outputters=[#<Log4r::StderrOutputter:0x0055f41437af10 @mon_owner=nil, @mon_count=0, @mon_mutex=#<Thread::Mutex:0x0055f41437ad30>, @name="stderr", @level=0, @formatter=#<Log4r::DefaultFormatter:0x0055f414511c98 @depth=7>, @out=#<IO:<STDERR>>>], @additive=true, @name="vagrant", @path="", @parent=#<Log4r::RootLogger:0x0055f4141f5af0 @level=0, @outputters=[]>, @level=1, @trace=false>, @level=1, @trace=false>, @level=1, @trace=false>>, @logger=#<Log4r::Logger:0x0055f416208ea0 @fullname="vagrant::provider::lxc::driver", @outputters=[], @additive=true, @name="driver", @path="vagrant::provider::lxc", @parent=#<Log4r::Logger:0x0055f4161404f0 @fullname="vagrant::provider::lxc", @outputters=[], @additive=true, @name="lxc", @path="vagrant::provider", @parent=#<Log4r::Logger:0x0055f4141f5c58 @fullname="vagrant", @outputters=[#<Log4r::StderrOutputter:0x0055f41437af10 @mon_owner=nil, @mon_count=0, @mon_mutex=#<Thread::Mutex:0x0055f41437ad30>, @name="stderr", @level=0, @formatter=#<Log4r::DefaultFormatter:0x0055f414511c98 @depth=7>, @out=#<IO:<STDERR>>>], @additive=true, @name="vagrant", @path="", @parent=#<Log4r::RootLogger:0x0055f4141f5af0 @level=0, @outputters=[]>, @level=1, @trace=false>, @level=1, @trace=false>, @level=1, @trace=false>, @customizations=[]>, @cap_logger=#<Log4r::Logger:0x0055f41627f410 @fullname="vagrant::capability_host::vagrant::lxc::provider", @outputters=[], @additive=true, @name="provider", @path="vagrant::capability_host::vagrant::lxc", @parent=#<Log4r::Logger:0x0055f4141f5c58 @fullname="vagrant", @outputters=[#<Log4r::StderrOutputter:0x0055f41437af10 @mon_owner=nil, @mon_count=0, @mon_mutex=#<Thread::Mutex:0x0055f41437ad30>, @name="stderr", @level=0, @formatter=#<Log4r::DefaultFormatter:0x0055f414511c98 @depth=7>, @out=#<IO:<STDERR>>>], @additive=true, @name="vagrant", @path="", @parent=#<Log4r::RootLogger:0x0055f4141f5af0 @level=0, @outputters=[]>, @level=1, @trace=false>, @level=1, @trace=false>, @cap_host_chain=[[:lxc, #<#<Class:0x0055f41627f8e8>:0x0055f4162be958>]], @cap_args=[#<Vagrant::Machine: tensorflow (Vagrant::LXC::Provider)>], @cap_caps={:hyperv=>#<Vagrant::Registry:0x0055f41627f7a8 @items={:public_address=>#<Proc:0x0055f4145402a0@/usr/share/rubygems-integration/all/gems/vagrant-1.9.1/plugins/providers/hyperv/plugin.rb:25>, :snapshot_list=>#<Proc:0x0055f414540110@/usr/share/rubygems-integration/all/gems/vagrant-1.9.1/plugins/providers/hyperv/plugin.rb:30>}, @results_cache={}>, :virtualbox=>#<Vagrant::Registry:0x0055f41627f708 @items={:forwarded_ports=>#<Proc:0x0055f41452e6b8@/usr/share/rubygems-integration/all/gems/vagrant-1.9.1/plugins/providers/virtualbox/plugin.rb:27>, :nic_mac_addresses=>#<Proc:0x0055f41452e618@/usr/share/rubygems-integration/all/gems/vagrant-1.9.1/plugins/providers/virtualbox/plugin.rb:32>, :public_address=>#<Proc:0x0055f41452e5c8@/usr/share/rubygems-integration/all/gems/vagrant-1.9.1/plugins/providers/virtualbox/plugin.rb:37>, :snapshot_list=>#<Proc:0x0055f41452e5a0@/usr/share/rubygems-integration/all/gems/vagrant-1.9.1/plugins/providers/virtualbox/plugin.rb:42>}, @results_cache={}>, :docker=>#<Vagrant::Registry:0x0055f41627f668 @items={:public_address=>#<Proc:0x0055f4145125f8@/usr/share/rubygems-integration/all/gems/vagrant-1.9.1/plugins/providers/docker/plugin.rb:60>, :proxy_machine=>#<Proc:0x0055f414512508@/usr/share/rubygems-integration/all/gems/vagrant-1.9.1/plugins/providers/docker/plugin.rb:65>}, @results_cache={}>, :lxc=>#<Vagrant::Registry:0x0055f41627f5c8 @items={:public_address=>#<Proc:0x0055f41462fc60@/home/claudino/.vagrant.d/gems/2.3.3/gems/vagrant-lxc-1.2.3/lib/vagrant-lxc/plugin.rb:35>}, @results_cache={}>}>)
 INFO loader: Set "47253403109280_machine_tensorflow" = ["[\"2\", #<Proc:0x0055f4145fe200@/home/claudino/Aplicacoes/pacotes/cuda/Vagrantfile:7>]"]
 INFO loader: Loading configuration in order: [:home, :root, "47253403109280_machine_tensorflow"]
DEBUG loader: Loading from: root (cache)
DEBUG loader: Loading from: 47253403109280_machine_tensorflow (cache)
DEBUG loader: Configuration loaded successfully, finalizing and returning
DEBUG push: finalizing
 INFO subprocess: Starting process: ["/usr/bin/sudo", "/usr/local/bin/vagrant-lxc-wrapper", "lxc-info", "--name", "tensorflow"]
 INFO subprocess: Vagrant not running in installer, restoring original environment...
DEBUG subprocess: Selecting on IO
DEBUG subprocess: stdout: Name:           tensorflow
State:          STOPPED
DEBUG subprocess: Waiting for process to exit. Remaining to timeout: 32000
DEBUG subprocess: Exit status: 0
DEBUG host: Searching for cap: provider_install_lxc
DEBUG host: Checking in: linux
DEBUG command: Getting target VMs for command. Arguments:
DEBUG command:  -- names: ["tensorflow"]
DEBUG command:  -- options: {:provider=>nil}
DEBUG command: Finding machine that match name: tensorflow
 INFO command: Active machine found with name tensorflow. Using provider: lxc
 INFO environment: Getting machine: tensorflow (lxc)
 INFO environment: Returning cached machine: tensorflow (lxc)
 INFO command: With machine: tensorflow (#<Vagrant::LXC::Provider:0x0055f416140540 @logger=#<Log4r::Logger:0x0055f4161404f0 @fullname="vagrant::provider::lxc", @outputters=[], @additive=true, @name="lxc", @path="vagrant::provider", @parent=#<Log4r::Logger:0x0055f4141f5c58 @fullname="vagrant", @outputters=[#<Log4r::StderrOutputter:0x0055f41437af10 @mon_owner=nil, @mon_count=0, @mon_mutex=#<Thread::Mutex:0x0055f41437ad30>, @name="stderr", @level=0, @formatter=#<Log4r::DefaultFormatter:0x0055f414511c98 @depth=7>, @out=#<IO:<STDERR>>>], @additive=true, @name="vagrant", @path="", @parent=#<Log4r::RootLogger:0x0055f4141f5af0 @level=0, @outputters=[]>, @level=1, @trace=false>, @level=1, @trace=false>, @machine=#<Vagrant::Machine: tensorflow (Vagrant::LXC::Provider)>, @shell=#<Vagrant::LXC::SudoWrapper:0x0055f41616e0a8 @wrapper_path="/usr/local/bin/vagrant-lxc-wrapper", @logger=#<Log4r::Logger:0x0055f41616e058 @fullname="vagrant::lxc::sudo_wrapper", @outputters=[], @additive=true, @name="sudo_wrapper", @path="vagrant::lxc", @parent=#<Log4r::Logger:0x0055f4141f5c58 @fullname="vagrant", @outputters=[#<Log4r::StderrOutputter:0x0055f41437af10 @mon_owner=nil, @mon_count=0, @mon_mutex=#<Thread::Mutex:0x0055f41437ad30>, @name="stderr", @level=0, @formatter=#<Log4r::DefaultFormatter:0x0055f414511c98 @depth=7>, @out=#<IO:<STDERR>>>], @additive=true, @name="vagrant", @path="", @parent=#<Log4r::RootLogger:0x0055f4141f5af0 @level=0, @outputters=[]>, @level=1, @trace=false>, @level=1, @trace=false>>, @driver=#<Vagrant::LXC::Driver:0x0055f414c23d60 @container_name="tensorflow", @sudo_wrapper=#<Vagrant::LXC::SudoWrapper:0x0055f41616e0a8 @wrapper_path="/usr/local/bin/vagrant-lxc-wrapper", @logger=#<Log4r::Logger:0x0055f41616e058 @fullname="vagrant::lxc::sudo_wrapper", @outputters=[], @additive=true, @name="sudo_wrapper", @path="vagrant::lxc", @parent=#<Log4r::Logger:0x0055f4141f5c58 @fullname="vagrant", @outputters=[#<Log4r::StderrOutputter:0x0055f41437af10 @mon_owner=nil, @mon_count=0, @mon_mutex=#<Thread::Mutex:0x0055f41437ad30>, @name="stderr", @level=0, @formatter=#<Log4r::DefaultFormatter:0x0055f414511c98 @depth=7>, @out=#<IO:<STDERR>>>], @additive=true, @name="vagrant", @path="", @parent=#<Log4r::RootLogger:0x0055f4141f5af0 @level=0, @outputters=[]>, @level=1, @trace=false>, @level=1, @trace=false>>, @cli=#<Vagrant::LXC::Driver::CLI:0x0055f414c23770 @sudo_wrapper=#<Vagrant::LXC::SudoWrapper:0x0055f41616e0a8 @wrapper_path="/usr/local/bin/vagrant-lxc-wrapper", @logger=#<Log4r::Logger:0x0055f41616e058 @fullname="vagrant::lxc::sudo_wrapper", @outputters=[], @additive=true, @name="sudo_wrapper", @path="vagrant::lxc", @parent=#<Log4r::Logger:0x0055f4141f5c58 @fullname="vagrant", @outputters=[#<Log4r::StderrOutputter:0x0055f41437af10 @mon_owner=nil, @mon_count=0, @mon_mutex=#<Thread::Mutex:0x0055f41437ad30>, @name="stderr", @level=0, @formatter=#<Log4r::DefaultFormatter:0x0055f414511c98 @depth=7>, @out=#<IO:<STDERR>>>], @additive=true, @name="vagrant", @path="", @parent=#<Log4r::RootLogger:0x0055f4141f5af0 @level=0, @outputters=[]>, @level=1, @trace=false>, @level=1, @trace=false>>, @name="tensorflow", @logger=#<Log4r::Logger:0x0055f414c23338 @fullname="vagrant::provider::lxc::container::cli", @outputters=[], @additive=true, @name="cli", @path="vagrant::provider::lxc::container", @parent=#<Log4r::Logger:0x0055f4161404f0 @fullname="vagrant::provider::lxc", @outputters=[], @additive=true, @name="lxc", @path="vagrant::provider", @parent=#<Log4r::Logger:0x0055f4141f5c58 @fullname="vagrant", @outputters=[#<Log4r::StderrOutputter:0x0055f41437af10 @mon_owner=nil, @mon_count=0, @mon_mutex=#<Thread::Mutex:0x0055f41437ad30>, @name="stderr", @level=0, @formatter=#<Log4r::DefaultFormatter:0x0055f414511c98 @depth=7>, @out=#<IO:<STDERR>>>], @additive=true, @name="vagrant", @path="", @parent=#<Log4r::RootLogger:0x0055f4141f5af0 @level=0, @outputters=[]>, @level=1, @trace=false>, @level=1, @trace=false>, @level=1, @trace=false>>, @logger=#<Log4r::Logger:0x0055f416208ea0 @fullname="vagrant::provider::lxc::driver", @outputters=[], @additive=true, @name="driver", @path="vagrant::provider::lxc", @parent=#<Log4r::Logger:0x0055f4161404f0 @fullname="vagrant::provider::lxc", @outputters=[], @additive=true, @name="lxc", @path="vagrant::provider", @parent=#<Log4r::Logger:0x0055f4141f5c58 @fullname="vagrant", @outputters=[#<Log4r::StderrOutputter:0x0055f41437af10 @mon_owner=nil, @mon_count=0, @mon_mutex=#<Thread::Mutex:0x0055f41437ad30>, @name="stderr", @level=0, @formatter=#<Log4r::DefaultFormatter:0x0055f414511c98 @depth=7>, @out=#<IO:<STDERR>>>], @additive=true, @name="vagrant", @path="", @parent=#<Log4r::RootLogger:0x0055f4141f5af0 @level=0, @outputters=[]>, @level=1, @trace=false>, @level=1, @trace=false>, @level=1, @trace=false>, @customizations=[]>, @cap_logger=#<Log4r::Logger:0x0055f41627f410 @fullname="vagrant::capability_host::vagrant::lxc::provider", @outputters=[], @additive=true, @name="provider", @path="vagrant::capability_host::vagrant::lxc", @parent=#<Log4r::Logger:0x0055f4141f5c58 @fullname="vagrant", @outputters=[#<Log4r::StderrOutputter:0x0055f41437af10 @mon_owner=nil, @mon_count=0, @mon_mutex=#<Thread::Mutex:0x0055f41437ad30>, @name="stderr", @level=0, @formatter=#<Log4r::DefaultFormatter:0x0055f414511c98 @depth=7>, @out=#<IO:<STDERR>>>], @additive=true, @name="vagrant", @path="", @parent=#<Log4r::RootLogger:0x0055f4141f5af0 @level=0, @outputters=[]>, @level=1, @trace=false>, @level=1, @trace=false>, @cap_host_chain=[[:lxc, #<#<Class:0x0055f41627f8e8>:0x0055f4162be958>]], @cap_args=[#<Vagrant::Machine: tensorflow (Vagrant::LXC::Provider)>], @cap_caps={:hyperv=>#<Vagrant::Registry:0x0055f41627f7a8 @items={:public_address=>#<Proc:0x0055f4145402a0@/usr/share/rubygems-integration/all/gems/vagrant-1.9.1/plugins/providers/hyperv/plugin.rb:25>, :snapshot_list=>#<Proc:0x0055f414540110@/usr/share/rubygems-integration/all/gems/vagrant-1.9.1/plugins/providers/hyperv/plugin.rb:30>}, @results_cache={}>, :virtualbox=>#<Vagrant::Registry:0x0055f41627f708 @items={:forwarded_ports=>#<Proc:0x0055f41452e6b8@/usr/share/rubygems-integration/all/gems/vagrant-1.9.1/plugins/providers/virtualbox/plugin.rb:27>, :nic_mac_addresses=>#<Proc:0x0055f41452e618@/usr/share/rubygems-integration/all/gems/vagrant-1.9.1/plugins/providers/virtualbox/plugin.rb:32>, :public_address=>#<Proc:0x0055f41452e5c8@/usr/share/rubygems-integration/all/gems/vagrant-1.9.1/plugins/providers/virtualbox/plugin.rb:37>, :snapshot_list=>#<Proc:0x0055f41452e5a0@/usr/share/rubygems-integration/all/gems/vagrant-1.9.1/plugins/providers/virtualbox/plugin.rb:42>}, @results_cache={}>, :docker=>#<Vagrant::Registry:0x0055f41627f668 @items={:public_address=>#<Proc:0x0055f4145125f8@/usr/share/rubygems-integration/all/gems/vagrant-1.9.1/plugins/providers/docker/plugin.rb:60>, :proxy_machine=>#<Proc:0x0055f414512508@/usr/share/rubygems-integration/all/gems/vagrant-1.9.1/plugins/providers/docker/plugin.rb:65>}, @results_cache={}>, :lxc=>#<Vagrant::Registry:0x0055f41627f5c8 @items={:public_address=>#<Proc:0x0055f41462fc60@/home/claudino/.vagrant.d/gems/2.3.3/gems/vagrant-lxc-1.2.3/lib/vagrant-lxc/plugin.rb:35>}, @results_cache={}>}>)
 INFO interface: info: Bringing machine 'tensorflow' up with 'lxc' provider...
Bringing machine 'tensorflow' up with 'lxc' provider...
 INFO subprocess: Starting process: ["/usr/bin/sudo", "/usr/local/bin/vagrant-lxc-wrapper", "lxc-info", "--name", "tensorflow"]
 INFO subprocess: Vagrant not running in installer, restoring original environment...
DEBUG subprocess: Selecting on IO
DEBUG subprocess: stdout: Name:           tensorflow
State:          STOPPED
DEBUG subprocess: Waiting for process to exit. Remaining to timeout: 32000
DEBUG subprocess: Exit status: 0
 INFO batch_action: Enabling parallelization by default.
 INFO batch_action: Disabling parallelization because only executing one action
 INFO batch_action: Batch action will parallelize: false
 INFO batch_action: Starting action: #<Vagrant::Machine:0x0055f4160ebd38> up {:destroy_on_error=>true, :install_provider=>true, :parallel=>true, :provision_ignore_sentinel=>false, :provision_types=>nil}
 INFO machine: Calling action: up on provider LXC (tensorflow)
DEBUG environment: Attempting to acquire process-lock: machine-action-92343f86a52b895f8c121294b5cb19fa
DEBUG environment: Attempting to acquire process-lock: dotlock
 INFO environment: Acquired process lock: dotlock
 INFO environment: Released process lock: dotlock
 INFO environment: Acquired process lock: machine-action-92343f86a52b895f8c121294b5cb19fa
 INFO interface: Machine: action ["up", "start", {:target=>:tensorflow}]
 INFO runner: Preparing hooks for middleware sequence...
 INFO runner: 1 hooks defined.
 INFO runner: Running action: machine_action_up #<Vagrant::Action::Builder:0x0055f41686d2f0>
 INFO warden: Calling IN action: #<Vagrant::Action::Builtin::ConfigValidate:0x007f22480329d0>
 INFO warden: Calling IN action: #<Vagrant::Action::Builtin::Call:0x007f22480329a8>
 INFO runner: Preparing hooks for middleware sequence...
 INFO runner: 1 hooks defined.
 INFO runner: Running action: machine_action_up #<Vagrant::Action::Builder:0x0055f41679bdb8>
 INFO warden: Calling IN action: #<Vagrant::Action::Builtin::IsState:0x0055f416799478>
DEBUG is_state: Checking if machine state is 'not_created'
 INFO subprocess: Starting process: ["/usr/bin/sudo", "/usr/local/bin/vagrant-lxc-wrapper", "lxc-info", "--name", "tensorflow"]
 INFO subprocess: Vagrant not running in installer, restoring original environment...
DEBUG subprocess: Selecting on IO
DEBUG subprocess: stdout: Name:           tensorflow
State:          STOPPED
DEBUG subprocess: Waiting for process to exit. Remaining to timeout: 32000
DEBUG subprocess: Exit status: 0
DEBUG is_state: -- Machine state: stopped
 INFO warden: Calling OUT action: #<Vagrant::Action::Builtin::IsState:0x0055f416799478>
 INFO runner: Preparing hooks for middleware sequence...
 INFO runner: 1 hooks defined.
 INFO runner: Running action: machine_action_up #<Vagrant::Action::Warden:0x0055f416421430>
 INFO warden: Calling IN action: #<Proc:0x0055f4162a9350@/usr/share/rubygems-integration/all/gems/vagrant-1.9.1/lib/vagrant/action/warden.rb:94 (lambda)>
 INFO warden: Calling IN action: #<Proc:0x0055f416421390@/usr/share/rubygems-integration/all/gems/vagrant-1.9.1/lib/vagrant/action/warden.rb:94 (lambda)>
 INFO warden: Calling IN action: #<Vagrant::Action::Builtin::ConfigValidate:0x007f2248032930>
 INFO warden: Calling IN action: #<Vagrant::Action::Builtin::BoxCheckOutdated:0x007f2248032908>
 INFO interface: output: Checking if box 'fgrehm/trusty64-lxc' is up to date...
 INFO interface: output: ==> tensorflow: Checking if box 'fgrehm/trusty64-lxc' is up to date...
==> tensorflow: Checking if box 'fgrehm/trusty64-lxc' is up to date...
 INFO downloader: Downloader starting download: 
 INFO downloader:   -- Source: https://atlas.hashicorp.com/fgrehm/trusty64-lxc
 INFO downloader:   -- Destination: /tmp/vagrant-claudino-28545/vagrant-load-metadata20170718-28545-cpdp22
 INFO subprocess: Starting process: ["/usr/bin/curl", "-q", "--fail", "--location", "--max-redirs", "10", "--user-agent", "Vagrant/1.9.1 (+https://www.vagrantup.com; ruby2.3.3)", "-H", "Accept: application/json", "--output", "/tmp/vagrant-claudino-28545/vagrant-load-metadata20170718-28545-cpdp22", "https://atlas.hashicorp.com/fgrehm/trusty64-lxc"]
 INFO subprocess: Vagrant not running in installer, restoring original environment...
DEBUG subprocess: Selecting on IO
DEBUG subprocess: stderr:   % Total    % Received % Xferd  Average Speed   Time    Time     Time  Current
                                 Dload  Upload   Total   Spent    Left  Speed
  0     0    0     0    0     0      0      0 --:--:-- --:--:-- --:--:--     0
  0     0    0     0    0     0      0      0 --:--:-- --:--:-- --:--:--     0
100   119  100   119    0     0     73      0  0:00:01  0:00:01 --:--:--    73
100   117  100   117    0     0     63      0  0:00:01  0:00:01 --:--:--    63
  0     0    0     0    0     0      0      0 --:--:--  0:00:02 --:--:--     0
100  1202    0  1202    0     0    409      0 --:--:--  0:00:02 --:--:--  3815
DEBUG subprocess: Waiting for process to exit. Remaining to timeout: 31997
DEBUG subprocess: Exit status: 0
 INFO warden: Calling IN action: #<Vagrant::Action::Builtin::Call:0x007f22480647a0>
 INFO runner: Preparing hooks for middleware sequence...
 INFO runner: 1 hooks defined.
 INFO runner: Running action: machine_action_up #<Vagrant::Action::Builder:0x0055f415fcd398>
 INFO warden: Calling IN action: #<Vagrant::Action::Builtin::IsState:0x0055f415fc6840>
DEBUG is_state: Checking if machine state is 'running'
 INFO subprocess: Starting process: ["/usr/bin/sudo", "/usr/local/bin/vagrant-lxc-wrapper", "lxc-info", "--name", "tensorflow"]
 INFO subprocess: Vagrant not running in installer, restoring original environment...
DEBUG subprocess: Selecting on IO
DEBUG subprocess: stdout: Name:           tensorflow
State:          STOPPED
DEBUG subprocess: Waiting for process to exit. Remaining to timeout: 32000
DEBUG subprocess: Exit status: 0
DEBUG is_state: -- Machine state: stopped
 INFO warden: Calling OUT action: #<Vagrant::Action::Builtin::IsState:0x0055f415fc6840>
 INFO runner: Preparing hooks for middleware sequence...
 INFO runner: 1 hooks defined.
 INFO runner: Running action: machine_action_up #<Vagrant::Action::Warden:0x0055f415ea5f88>
 INFO warden: Calling IN action: #<Proc:0x0055f4155e0128@/usr/share/rubygems-integration/all/gems/vagrant-1.9.1/lib/vagrant/action/warden.rb:94 (lambda)>
 INFO warden: Calling IN action: #<Vagrant::Action::Builtin::Provision:0x0055f415ea5ee8>
 INFO provision: Checking provisioner sentinel file...
 INFO warden: Calling IN action: #<Vagrant::Action::Builtin::EnvSet:0x0055f415e5f880>
 INFO warden: Calling IN action: #<Vagrant::Action::Builtin::HandleForwardedPortCollisions:0x0055f415e5f858>
DEBUG environment: Attempting to acquire process-lock: fpcollision
DEBUG environment: Attempting to acquire process-lock: dotlock
 INFO environment: Acquired process lock: dotlock
 INFO environment: Released process lock: dotlock
 INFO environment: Acquired process lock: fpcollision
 INFO handle_port_collisions: Detecting any forwarded port collisions...
DEBUG handle_port_collisions: Extra in use: []
DEBUG handle_port_collisions: Remap: {}
DEBUG handle_port_collisions: Repair: true
 INFO environment: Released process lock: fpcollision
DEBUG environment: Attempting to acquire process-lock: dotlock
 INFO environment: Acquired process lock: dotlock
 INFO environment: Released process lock: dotlock
 INFO warden: Calling IN action: #<Vagrant::LXC::Action::PrepareNFSValidIds:0x0055f415e2c4f8>
 INFO subprocess: Starting process: ["/usr/bin/sudo", "/usr/local/bin/vagrant-lxc-wrapper", "lxc-ls"]
 INFO subprocess: Vagrant not running in installer, restoring original environment...
DEBUG subprocess: Selecting on IO
DEBUG subprocess: stdout: environment_api_1498090819403_57361      
environment_db_web_ml_1498090824195_18544
tensorflow                               
DEBUG subprocess: Waiting for process to exit. Remaining to timeout: 32000
DEBUG subprocess: Exit status: 0
 INFO warden: Calling IN action: #<VagrantPlugins::SyncedFolderNFS::ActionCleanup:0x0055f415dc6860>
DEBUG host: Searching for cap: nfs_prune
DEBUG host: Checking in: linux
DEBUG host: Found cap: nfs_prune in linux
 INFO nfs: NFS pruning. Valid IDs: ["environment_api_1498090819403_57361", "environment_db_web_ml_1498090824195_18544", "tensorflow"]
DEBUG host: Searching for cap: nfs_prune
DEBUG host: Checking in: linux
DEBUG host: Found cap: nfs_prune in linux
 INFO host: Execute capability: nfs_prune [#<Vagrant::Environment: /home/claudino/Aplicacoes/pacotes/cuda>, #<Vagrant::UI::Prefixed:0x0055f4154f6cd0 @logger=#<Log4r::Logger:0x0055f4154f6c80 @fullname="vagrant::ui::interface", @outputters=[], @additive=true, @name="interface", @path="vagrant::ui", @parent=#<Log4r::Logger:0x0055f4141f5c58 @fullname="vagrant", @outputters=[#<Log4r::StderrOutputter:0x0055f41437af10 @mon_owner=nil, @mon_count=0, @mon_mutex=#<Thread::Mutex:0x0055f41437ad30>, @name="stderr", @level=0, @formatter=#<Log4r::DefaultFormatter:0x0055f414511c98 @depth=7>, @out=#<IO:<STDERR>>>], @additive=true, @name="vagrant", @path="", @parent=#<Log4r::RootLogger:0x0055f4141f5af0 @level=0, @outputters=[]>, @level=1, @trace=false>, @level=1, @trace=false>, @opts={}, @stdin=#<IO:<STDIN>>, @stdout=#<IO:<STDOUT>>, @stderr=#<IO:<STDERR>>, @prefix=:tensorflow, @ui=#<Vagrant::UI::Colored:0x0055f4145fe9d0 @logger=#<Log4r::Logger:0x0055f4145fe958 @fullname="vagrant::ui::interface", @outputters=[], @additive=true, @name="interface", @path="vagrant::ui", @parent=#<Log4r::Logger:0x0055f4141f5c58 @fullname="vagrant", @outputters=[#<Log4r::StderrOutputter:0x0055f41437af10 @mon_owner=nil, @mon_count=0, @mon_mutex=#<Thread::Mutex:0x0055f41437ad30>, @name="stderr", @level=0, @formatter=#<Log4r::DefaultFormatter:0x0055f414511c98 @depth=7>, @out=#<IO:<STDERR>>>], @additive=true, @name="vagrant", @path="", @parent=#<Log4r::RootLogger:0x0055f4141f5af0 @level=0, @outputters=[]>, @level=1, @trace=false>, @level=1, @trace=false>, @opts={:color=>:default}, @stdin=#<IO:<STDIN>>, @stdout=#<IO:<STDOUT>>, @stderr=#<IO:<STDERR>>, @lock=#<Thread::Mutex:0x0055f41472a160>>>, ["environment_api_1498090819403_57361", "environment_db_web_ml_1498090824195_18544", "tensorflow"]] (linux)
 INFO warden: Calling IN action: #<Vagrant::Action::Builtin::SyncedFolderCleanup:0x0055f415c9c700>
 INFO synced_folder_cleanup: Invoking synced folder cleanup for: lxc
 INFO warden: Calling IN action: #<Vagrant::Action::Builtin::SyncedFolders:0x0055f415b6f760>
 INFO synced_folders: SyncedFolders loading from cache: false
 INFO synced_folders: Synced Folder Implementation: lxc
 INFO synced_folders:   - /home/vagrant/local: ./ => /home/vagrant/local
 INFO synced_folders: Invoking synced folder prepare for: lxc
 INFO interface: output: Setting up mount entries for shared folders...
 INFO interface: output: ==> tensorflow: Setting up mount entries for shared folders...
==> tensorflow: Setting up mount entries for shared folders...
 INFO interface: detail: /home/vagrant/local => /home/claudino/Aplicacoes/pacotes/cuda
 INFO interface: detail:     tensorflow: /home/vagrant/local => /home/claudino/Aplicacoes/pacotes/cuda
    tensorflow: /home/vagrant/local => /home/claudino/Aplicacoes/pacotes/cuda
 INFO warden: Calling IN action: #<Vagrant::LXC::Action::PrepareNFSSettings:0x0055f415a37438>
 INFO warden: Calling IN action: #<Vagrant::Action::Builtin::SetHostname:0x0055f415910488>
 INFO warden: Calling IN action: #<Vagrant::LXC::Action::WarnNetworks:0x0055f4159103c0>
 INFO warden: Calling IN action: #<Vagrant::LXC::Action::ForwardPorts:0x0055f415910398>
 INFO warden: Calling IN action: #<Vagrant::LXC::Action::PrivateNetworks:0x0055f41576a200>
 INFO warden: Calling IN action: #<Vagrant::LXC::Action::Boot:0x0055f41576a160>
 INFO interface: info: Starting container...
 INFO interface: info: ==> tensorflow: Starting container...
==> tensorflow: Starting container...
 INFO driver: Starting container...
DEBUG driver: Prunning vagrant-lxc customizations
 INFO subprocess: Starting process: ["/usr/bin/sudo", "/usr/local/bin/vagrant-lxc-wrapper", "which", "lxc-version"]
 INFO subprocess: Vagrant not running in installer, restoring original environment...
DEBUG subprocess: Selecting on IO
DEBUG subprocess: Waiting for process to exit. Remaining to timeout: 32000
DEBUG subprocess: Exit status: 1
 INFO subprocess: Starting process: ["/usr/bin/sudo", "/usr/local/bin/vagrant-lxc-wrapper", "lxc-create", "--version"]
 INFO subprocess: Vagrant not running in installer, restoring original environment...
DEBUG subprocess: Selecting on IO
DEBUG subprocess: stdout: 2.0.8
DEBUG subprocess: Waiting for process to exit. Remaining to timeout: 31999
DEBUG subprocess: Exit status: 0
 INFO subprocess: Starting process: ["/usr/bin/sudo", "/usr/local/bin/vagrant-lxc-wrapper", "lxc-config", "lxc.lxcpath"]
 INFO subprocess: Vagrant not running in installer, restoring original environment...
DEBUG subprocess: Selecting on IO
DEBUG subprocess: stdout: /var/lib/lxc
DEBUG subprocess: Waiting for process to exit. Remaining to timeout: 32000
DEBUG subprocess: Exit status: 0
 INFO subprocess: Starting process: ["/usr/bin/sudo", "/usr/local/bin/vagrant-lxc-wrapper", "cat", "/var/lib/lxc/tensorflow/config"]
 INFO subprocess: Vagrant not running in installer, restoring original environment...
DEBUG subprocess: Selecting on IO
DEBUG subprocess: stdout: # Template used to create this container: /home/claudino/.vagrant.d/gems/2.3.3/gems/vagrant-lxc-1.2.3/scripts/lxc-template
# Parameters passed to the template: --tarball /home/claudino/.vagrant.d/boxes/fgrehm-VAGRANTSLASH-trusty64-lxc/1.2.0/lxc/rootfs.tar.gz --config /home/claudino/.vagrant.d/boxes/fgrehm-VAGRANTSLASH-trusty64-lxc/1.2.0/lxc/lxc-config
# Template script checksum (SHA-1): 849338327edde8c655406d97f25e3beadf730c55
# For additional config options, please look at lxc.container.conf(5)

# Uncomment the following line to support nesting containers:
#lxc.include = /usr/share/lxc/config/nesting.conf
# (Be aware this has security implications)

##############################################
# Container specific configuration (automatically set)
lxc.rootfs = /var/lib/lxc/tensorflow/rootfs
lxc.rootfs.backend = dir
lxc.utsname = tensorflow

##############################################
# Network configuration (automatically set)
lxc.network.type = veth
lxc.network.link = lxcbr0
lxc.network.flags = up
lxc.network.hwaddr = 00:16:3e:33:fa:02

##############################################
# vagrant-lxc base box specific configuration
# Default pivot location
lxc.pivotdir = lxc_putold

# Default mount entries
lxc.mount.entry = proc proc proc nodev,noexec,nosuid 0 0
lxc.mount.entry = sysfs sys sysfs defaults 0 0

# Default console settings
lxc.devttydir = lxc
lxc.tty = 4
lxc.pts = 1024

# Default capabilities
lxc.cap.drop = sys_module mac_admin mac_override sys_time

# When using LXC with apparmor, the container will be confined by default.
# If you wish for it to instead run unconfined, copy the following line
# (uncommented) to the container's configuration file.
#lxc.aa_profile = unconfined

# To support container nesting on an Ubuntu host while retaining most of
# apparmor's added security, use the following two lines instead.
#lxc.aa_profile = lxc-container-default-with-nesting
#lxc.hook.mount = /usr/share/lxc/hooks/mountcgroups

# Uncomment the following line to autodetect squid-deb-proxy configuration on the
# host and forward it to the guest at start time.
#lxc.hook.pre-start = /usr/share/lxc/hooks/squid-deb-proxy-client

# If you wish to allow mounting block filesystems, then use the following
# line instead, and make sure to grant access to the block device and/or loop
# devices below in lxc.cgroup.devices.allow.
#lxc.aa_profile = lxc-container-default-with-mounting

# Default cgroup limits
lxc.cgroup.devices.deny = a
## Allow any mknod (but not using the node)
lxc.cgroup.devices.allow = c *:* m
lxc.cgroup.devices.allow = b *:* m
## /dev/null and zero
lxc.cgroup.devices.allow = c 1:3 rwm
lxc.cgroup.devices.allow = c 1:5 rwm
## consoles
lxc.cgroup.devices.allow = c 5:0 rwm
lxc.cgroup.devices.allow = c 5:1 rwm
## /dev/{,u}random
lxc.cgroup.devices.allow = c 1:8 rwm
lxc.cgroup.devices.allow = c 1:9 rwm
## /dev/pts/*
lxc.cgroup.devices.allow = c 5:2 rwm
lxc.cgroup.devices.allow = c 136:* rwm
## rtc
lxc.cgroup.devices.allow = c 254:0 rm
## fuse
lxc.cgroup.devices.allow = c 10:229 rwm
## tun
lxc.cgroup.devices.allow = c 10:200 rwm
## full
lxc.cgroup.devices.allow = c 1:7 rwm
## hpet
lxc.cgroup.devices.allow = c 10:228 rwm
## kvm
lxc.cgroup.devices.allow = c 10:232 rwm
## To use loop devices, copy the following line to the container's
## configuration file (uncommented).
#lxc.cgroup.devices.allow = b 7:* rwm

##############################################
# vagrant-lxc container specific configuration
# VAGRANT-BEGIN
lxc.utsname=tensorflow
lxc.mount.entry=/sys/fs/pstore sys/fs/pstore none bind,optional 0 0
lxc.mount.entry=tmpfs tmp tmpfs nodev,nosuid,size=2G 0 0
lxc.mount.entry=/home/claudino/Aplicacoes/pacotes/cuda home/vagrant/local none bind,create=dir 0 0
# VAGRANT-END
DEBUG subprocess: Waiting for process to exit. Remaining to timeout: 32000
DEBUG subprocess: Exit status: 0
 INFO subprocess: Starting process: ["/usr/bin/sudo", "/usr/local/bin/vagrant-lxc-wrapper", "cp", "-f", "/tmp/lxc-config20170718-28545-ggqo16", "/var/lib/lxc/tensorflow/config"]
 INFO subprocess: Vagrant not running in installer, restoring original environment...
DEBUG subprocess: Selecting on IO
DEBUG subprocess: Waiting for process to exit. Remaining to timeout: 32000
DEBUG subprocess: Exit status: 0
 INFO subprocess: Starting process: ["/usr/bin/sudo", "/usr/local/bin/vagrant-lxc-wrapper", "chown", "root:root", "/var/lib/lxc/tensorflow/config"]
 INFO subprocess: Vagrant not running in installer, restoring original environment...
DEBUG subprocess: Selecting on IO
DEBUG subprocess: Waiting for process to exit. Remaining to timeout: 32000
DEBUG subprocess: Exit status: 0
 INFO subprocess: Starting process: ["/usr/bin/sudo", "/usr/local/bin/vagrant-lxc-wrapper", "cat", "/var/lib/lxc/tensorflow/config"]
 INFO subprocess: Vagrant not running in installer, restoring original environment...
DEBUG subprocess: Selecting on IO
DEBUG subprocess: stdout: # Template used to create this container: /home/claudino/.vagrant.d/gems/2.3.3/gems/vagrant-lxc-1.2.3/scripts/lxc-template
# Parameters passed to the template: --tarball /home/claudino/.vagrant.d/boxes/fgrehm-VAGRANTSLASH-trusty64-lxc/1.2.0/lxc/rootfs.tar.gz --config /home/claudino/.vagrant.d/boxes/fgrehm-VAGRANTSLASH-trusty64-lxc/1.2.0/lxc/lxc-config
# Template script checksum (SHA-1): 849338327edde8c655406d97f25e3beadf730c55
# For additional config options, please look at lxc.container.conf(5)

# Uncomment the following line to support nesting containers:
#lxc.include = /usr/share/lxc/config/nesting.conf
# (Be aware this has security implications)

##############################################
# Container specific configuration (automatically set)
lxc.rootfs = /var/lib/lxc/tensorflow/rootfs
lxc.rootfs.backend = dir
lxc.utsname = tensorflow

##############################################
# Network configuration (automatically set)
lxc.network.type = veth
lxc.network.link = lxcbr0
lxc.network.flags = up
lxc.network.hwaddr = 00:16:3e:33:fa:02

##############################################
# vagrant-lxc base box specific configuration
# Default pivot location
lxc.pivotdir = lxc_putold

# Default mount entries
lxc.mount.entry = proc proc proc nodev,noexec,nosuid 0 0
lxc.mount.entry = sysfs sys sysfs defaults 0 0

# Default console settings
lxc.devttydir = lxc
lxc.tty = 4
lxc.pts = 1024

# Default capabilities
lxc.cap.drop = sys_module mac_admin mac_override sys_time

# When using LXC with apparmor, the container will be confined by default.
# If you wish for it to instead run unconfined, copy the following line
# (uncommented) to the container's configuration file.
#lxc.aa_profile = unconfined

# To support container nesting on an Ubuntu host while retaining most of
# apparmor's added security, use the following two lines instead.
#lxc.aa_profile = lxc-container-default-with-nesting
#lxc.hook.mount = /usr/share/lxc/hooks/mountcgroups

# Uncomment the following line to autodetect squid-deb-proxy configuration on the
# host and forward it to the guest at start time.
#lxc.hook.pre-start = /usr/share/lxc/hooks/squid-deb-proxy-client

# If you wish to allow mounting block filesystems, then use the following
# line instead, and make sure to grant access to the block device and/or loop
# devices below in lxc.cgroup.devices.allow.
#lxc.aa_profile = lxc-container-default-with-mounting

# Default cgroup limits
lxc.cgroup.devices.deny = a
## Allow any mknod (but not using the node)
lxc.cgroup.devices.allow = c *:* m
lxc.cgroup.devices.allow = b *:* m
## /dev/null and zero
lxc.cgroup.devices.allow = c 1:3 rwm
lxc.cgroup.devices.allow = c 1:5 rwm
## consoles
lxc.cgroup.devices.allow = c 5:0 rwm
lxc.cgroup.devices.allow = c 5:1 rwm
## /dev/{,u}random
lxc.cgroup.devices.allow = c 1:8 rwm
lxc.cgroup.devices.allow = c 1:9 rwm
## /dev/pts/*
lxc.cgroup.devices.allow = c 5:2 rwm
lxc.cgroup.devices.allow = c 136:* rwm
## rtc
lxc.cgroup.devices.allow = c 254:0 rm
## fuse
lxc.cgroup.devices.allow = c 10:229 rwm
## tun
lxc.cgroup.devices.allow = c 10:200 rwm
## full
lxc.cgroup.devices.allow = c 1:7 rwm
## hpet
lxc.cgroup.devices.allow = c 10:228 rwm
## kvm
lxc.cgroup.devices.allow = c 10:232 rwm
## To use loop devices, copy the following line to the container's
## configuration file (uncommented).
#lxc.cgroup.devices.allow = b 7:* rwm

##############################################
# vagrant-lxc container specific configuration
DEBUG subprocess: Waiting for process to exit. Remaining to timeout: 32000
DEBUG subprocess: Exit status: 0
 INFO subprocess: Starting process: ["/usr/bin/sudo", "/usr/local/bin/vagrant-lxc-wrapper", "cp", "-f", "/tmp/lxc-config20170718-28545-24zkri", "/var/lib/lxc/tensorflow/config"]
 INFO subprocess: Vagrant not running in installer, restoring original environment...
DEBUG subprocess: Selecting on IO
DEBUG subprocess: Waiting for process to exit. Remaining to timeout: 32000
DEBUG subprocess: Exit status: 0
 INFO subprocess: Starting process: ["/usr/bin/sudo", "/usr/local/bin/vagrant-lxc-wrapper", "chown", "root:root", "/var/lib/lxc/tensorflow/config"]
 INFO subprocess: Vagrant not running in installer, restoring original environment...
DEBUG subprocess: Selecting on IO
DEBUG subprocess: Waiting for process to exit. Remaining to timeout: 32000
DEBUG subprocess: Exit status: 0
 INFO subprocess: Starting process: ["/usr/bin/sudo", "/usr/local/bin/vagrant-lxc-wrapper", "lxc-start", "-d", "--name", "tensorflow"]
 INFO subprocess: Vagrant not running in installer, restoring original environment...
DEBUG subprocess: Selecting on IO
DEBUG subprocess: Waiting for process to exit. Remaining to timeout: 32000
DEBUG subprocess: Exit status: 0
 INFO warden: Calling IN action: #<Vagrant::Action::Builtin::WaitForCommunicator:0x0055f41576a0c0>
 INFO interface: output: Waiting for machine to boot. This may take a few minutes...
 INFO interface: output: ==> tensorflow: Waiting for machine to boot. This may take a few minutes...
==> tensorflow: Waiting for machine to boot. This may take a few minutes...
 INFO subprocess: Starting process: ["/usr/bin/sudo", "/usr/local/bin/vagrant-lxc-wrapper", "lxc-info", "--name", "tensorflow"]
 INFO subprocess: Vagrant not running in installer, restoring original environment...
DEBUG subprocess: Selecting on IO
 INFO subprocess: Starting process: ["/usr/bin/sudo", "/usr/local/bin/vagrant-lxc-wrapper", "lxc-info", "--name", "tensorflow"]
 INFO subprocess: Vagrant not running in installer, restoring original environment...
DEBUG subprocess: stdout: Name:           tensorflow
State:          RUNNING
PID:            28742
DEBUG subprocess: stdout: CPU use:        0.22 seconds
DEBUG subprocess: stdout: BlkIO use:      80.00 KiB
DEBUG subprocess: stdout: Memory use:     7.25 MiB
DEBUG subprocess: stdout: KMem use:       4.70 MiB
DEBUG subprocess: stdout: Link:           vethI8KCF1
DEBUG subprocess: stdout:  TX bytes:      90 bytes
 RX bytes:      506 bytes
 Total bytes:   596 bytes
DEBUG subprocess: Selecting on IO
DEBUG subprocess: Waiting for process to exit. Remaining to timeout: 32000
DEBUG subprocess: Exit status: 0
DEBUG subprocess: stdout: Name:           tensorflow
DEBUG subprocess: stdout: State:          RUNNING
PID:            28742
DEBUG subprocess: stdout: CPU use:        0.42 seconds
DEBUG subprocess: stdout: BlkIO use:      96.00 KiB
DEBUG subprocess: stdout: Memory use:     9.95 MiB
DEBUG subprocess: stdout: KMem use:       6.12 MiB
DEBUG subprocess: stdout: Link:           vethI8KCF1
DEBUG subprocess: stdout:  TX bytes:      90 bytes
 RX bytes:      506 bytes
 Total bytes:   596 bytes
DEBUG subprocess: Waiting for process to exit. Remaining to timeout: 32000
DEBUG subprocess: Exit status: 0
 INFO machine: Calling action: ssh_ip on provider LXC (tensorflow)
 INFO interface: Machine: action ["ssh_ip", "start", {:target=>:tensorflow}]
 INFO runner: Preparing hooks for middleware sequence...
 INFO runner: 1 hooks defined.
 INFO runner: Running action: machine_action_ssh_ip #<Vagrant::Action::Builder:0x0055f416220960>
 INFO warden: Calling IN action: #<Vagrant::Action::Builtin::Call:0x0055f4161f49c8>
 INFO runner: Preparing hooks for middleware sequence...
 INFO runner: 1 hooks defined.
 INFO runner: Running action: machine_action_ssh_ip #<Vagrant::Action::Builder:0x0055f416071768>
 INFO warden: Calling IN action: #<Vagrant::Action::Builtin::ConfigValidate:0x0055f41606be58>
 INFO warden: Calling OUT action: #<Vagrant::Action::Builtin::ConfigValidate:0x0055f41606be58>
 INFO subprocess: Starting process: ["/usr/bin/sudo", "/usr/local/bin/vagrant-lxc-wrapper", "lxc-attach", "--name", "tensorflow", "--", "/bin/true"]
 INFO subprocess: Vagrant not running in installer, restoring original environment...
DEBUG subprocess: Selecting on IO
DEBUG subprocess: Waiting for process to exit. Remaining to timeout: 32000
DEBUG subprocess: Exit status: 0
 INFO runner: Preparing hooks for middleware sequence...
 INFO runner: 1 hooks defined.
 INFO runner: Running action: machine_action_ssh_ip #<Vagrant::Action::Warden:0x0055f41684ef30>
 INFO warden: Calling IN action: #<Proc:0x0055f41664d380@/usr/share/rubygems-integration/all/gems/vagrant-1.9.1/lib/vagrant/action/warden.rb:94 (lambda)>
 INFO warden: Calling IN action: #<Vagrant::LXC::Action::FetchIpWithLxcAttach:0x0055f41684eeb8>
 INFO subprocess: Starting process: ["/usr/bin/sudo", "/usr/local/bin/vagrant-lxc-wrapper", "lxc-attach", "-h"]
 INFO subprocess: Vagrant not running in installer, restoring original environment...
DEBUG subprocess: Selecting on IO
DEBUG subprocess: stderr: Usage: lxc-attach --name=NAME [-- COMMAND]

Execute the specified COMMAND - enter the container NAME

Options :
  -n, --name=NAME   NAME of the container
  -e, --elevated-privileges=PRIVILEGES
                    Use elevated privileges instead of those of the
                    container. If you don't specify privileges to be
                    elevated as OR'd list: CAP, CGROUP and LSM (capabilities,
                    cgroup and restrictions, respectively) then all of them
                    will be elevated.
                    WARNING: This may leak privileges into the container.
                    Use with care.
  -a, --arch=ARCH   Use ARCH for program instead of container's own
                    architecture.
  -s, --namespaces=FLAGS
                    Don't attach to all the namespaces of the container
                    but just to the following OR'd list of flags:
                    MOUNT, PID, UTSNAME, IPC, USER or NETWORK.
                    WARNING: Using -s implies -e with all privileges
                    elevated, it may therefore leak privileges into the
                    container. Use with care.
  -R, --remount-sys-proc
                    Remount /sys and /proc if not attaching to the
                    mount namespace when using -s in order to properly
                    reflect the correct namespace context. See the
                    lxc-attach(1) manual page for details.
      --clear-env   Clear all environment variables before attaching.
                    The attached shell/program will start with only
                    container=lxc set.
      --keep-env    Keep all current environment variables. This
                    is the current default behaviour, but is likely to
                    change in the future.
  -L, --pty-log=FILE
                    Log pty output to FILE
  -v, --set-var     Set an additional variable that is seen by the
                    attached program in the container. May be specified
                    multiple times.
      --keep-var    Keep an additional environment variable. Only
                    applicable if --clear-env is specified. May be used
                    multiple times.
  -f, --rcfile=FILE
                    Load configuration file FILE

Common options :
  -o, --logfile=FILE               Output log to FILE instead of stderr
  -l, --logpriority=LEVEL          Set log priority to LEVEL
  -q, --quiet                      Don't produce any output
  -P, --lxcpath=PATH               Use specified container path
  -?, --help                       Give this help list
      --usage                      Give a short usage message
      --version                    Print the version number

Mandatory or optional arguments to long options are also mandatory or optional
for any corresponding short options.

See the lxc-attach man page for further information.

DEBUG subprocess: Waiting for process to exit. Remaining to timeout: 32000
DEBUG subprocess: Exit status: 0
 INFO subprocess: Starting process: ["/usr/bin/sudo", "/usr/local/bin/vagrant-lxc-wrapper", "lxc-attach", "--name", "tensorflow", "--namespaces", "'NETWORK|MOUNT'", "--", "/sbin/ip", "-4", "addr", "show", "scope", "global", "eth0"]
 INFO subprocess: Vagrant not running in installer, restoring original environment...
DEBUG subprocess: Selecting on IO
DEBUG subprocess: Waiting for process to exit. Remaining to timeout: 32000
DEBUG subprocess: Exit status: 0
 INFO retryable: Retryable exception raised: #<Vagrant::LXC::Errors::ExecuteError: There was an error executing lxc-attach

For more information on the failure, enable detailed logging by setting
the environment variable VAGRANT_LOG to DEBUG.>
 INFO subprocess: Starting process: ["/usr/bin/sudo", "/usr/local/bin/vagrant-lxc-wrapper", "lxc-info", "--name", "tensorflow"]
 INFO subprocess: Vagrant not running in installer, restoring original environment...
DEBUG subprocess: Selecting on IO
DEBUG subprocess: stdout: Name:           tensorflow
State:          RUNNING
DEBUG subprocess: stdout: PID:            28742
DEBUG subprocess: stdout: IP:             10.0.1.224
DEBUG subprocess: stdout: CPU use:        1.44 seconds
DEBUG subprocess: stdout: BlkIO use:      436.00 KiB
DEBUG subprocess: stdout: Memory use:     15.82 MiB
DEBUG subprocess: stdout: KMem use:       7.94 MiB
DEBUG subprocess: stdout: Link:           vethI8KCF1
 TX bytes:      978 bytes
 RX bytes:      2.78 KiB
 Total bytes:   3.73 KiB
DEBUG subprocess: Waiting for process to exit. Remaining to timeout: 32000
DEBUG subprocess: Exit status: 0
 INFO subprocess: Starting process: ["/usr/bin/sudo", "/usr/local/bin/vagrant-lxc-wrapper", "lxc-info", "--name", "tensorflow"]
 INFO subprocess: Vagrant not running in installer, restoring original environment...
DEBUG subprocess: Selecting on IO
DEBUG subprocess: stdout: Name:           tensorflow
DEBUG subprocess: stdout: State:          RUNNING
DEBUG subprocess: stdout: PID:            28742
DEBUG subprocess: stdout: IP:             10.0.1.224
DEBUG subprocess: stdout: CPU use:        1.44 seconds
DEBUG subprocess: stdout: BlkIO use:      436.00 KiB
DEBUG subprocess: stdout: Memory use:     15.74 MiB
DEBUG subprocess: stdout: KMem use:       7.93 MiB
DEBUG subprocess: stdout: Link:           vethI8KCF1
DEBUG subprocess: stdout:  TX bytes:      1.29 KiB
 RX bytes:      4.84 KiB
 Total bytes:   6.13 KiB
DEBUG subprocess: Waiting for process to exit. Remaining to timeout: 32000
DEBUG subprocess: Exit status: 0
 INFO subprocess: Starting process: ["/usr/bin/sudo", "/usr/local/bin/vagrant-lxc-wrapper", "lxc-info", "--name", "tensorflow"]
 INFO subprocess: Vagrant not running in installer, restoring original environment...
DEBUG subprocess: Selecting on IO
 INFO subprocess: Starting process: ["/usr/bin/sudo", "/usr/local/bin/vagrant-lxc-wrapper", "lxc-attach", "--name", "tensorflow", "--namespaces", "'NETWORK|MOUNT'", "--", "/sbin/ip", "-4", "addr", "show", "scope", "global", "eth0"]
 INFO subprocess: Vagrant not running in installer, restoring original environment...
DEBUG subprocess: Selecting on IO
DEBUG subprocess: stdout: Name:           tensorflow
State:          RUNNING
DEBUG subprocess: stdout: PID:            28742
DEBUG subprocess: stdout: IP:             10.0.1.224
DEBUG subprocess: stdout: CPU use:        1.44 seconds
DEBUG subprocess: stdout: BlkIO use:      436.00 KiB
DEBUG subprocess: stdout: Memory use:     15.72 MiB
DEBUG subprocess: stdout: KMem use:       7.91 MiB
Link:           vethI8KCF1
DEBUG subprocess: stdout:  TX bytes:      1.55 KiB
 RX bytes:      6.53 KiB
 Total bytes:   8.08 KiB
DEBUG subprocess: Waiting for process to exit. Remaining to timeout: 32000
DEBUG subprocess: Exit status: 0
DEBUG subprocess: stdout: 33: eth0@if34: <BROADCAST,MULTICAST,UP,LOWER_UP> mtu 1500 qdisc noqueue state UP group default qlen 1000
    inet 10.0.1.224/24 brd 10.0.1.255 scope global eth0
       valid_lft forever preferred_lft forever
DEBUG subprocess: Waiting for process to exit. Remaining to timeout: 32000
DEBUG subprocess: Exit status: 0
 INFO warden: Calling IN action: #<Vagrant::LXC::Action::FetchIpFromDnsmasqLeases:0x0055f4167d5568>
 INFO warden: Calling IN action: #<Proc:0x0055f41677d9a8@/usr/share/rubygems-integration/all/gems/vagrant-1.9.1/lib/vagrant/action/warden.rb:94 (lambda)>
 INFO warden: Calling OUT action: #<Proc:0x0055f41677d9a8@/usr/share/rubygems-integration/all/gems/vagrant-1.9.1/lib/vagrant/action/warden.rb:94 (lambda)>
 INFO warden: Calling OUT action: #<Vagrant::LXC::Action::FetchIpFromDnsmasqLeases:0x0055f4167d5568>
 INFO warden: Calling OUT action: #<Vagrant::LXC::Action::FetchIpWithLxcAttach:0x0055f41684eeb8>
 INFO warden: Calling OUT action: #<Proc:0x0055f41664d380@/usr/share/rubygems-integration/all/gems/vagrant-1.9.1/lib/vagrant/action/warden.rb:94 (lambda)>
 INFO warden: Calling OUT action: #<Vagrant::Action::Builtin::Call:0x0055f4161f49c8>
 INFO interface: Machine: action ["ssh_ip", "end", {:target=>:tensorflow}]
DEBUG ssh: Checking key permissions: /home/claudino/Aplicacoes/pacotes/cuda/.vagrant/machines/tensorflow/lxc/private_key
 INFO interface: detail: SSH address: 10.0.1.224:22
 INFO interface: detail:     tensorflow: SSH address: 10.0.1.224:22
    tensorflow: SSH address: 10.0.1.224:22
 INFO interface: detail: SSH username: vagrant
 INFO interface: detail:     tensorflow: SSH username: vagrant
    tensorflow: SSH username: vagrant
 INFO interface: detail: SSH auth method: private key
 INFO interface: detail:     tensorflow: SSH auth method: private key
    tensorflow: SSH auth method: private key
 INFO subprocess: Starting process: ["/usr/bin/sudo", "/usr/local/bin/vagrant-lxc-wrapper", "lxc-info", "--name", "tensorflow"]
 INFO subprocess: Vagrant not running in installer, restoring original environment...
DEBUG subprocess: Selecting on IO
DEBUG subprocess: stdout: Name:           tensorflow
DEBUG subprocess: stdout: State:          RUNNING
DEBUG subprocess: stdout: PID:            28742
DEBUG subprocess: stdout: IP:             10.0.1.224
DEBUG subprocess: stdout: CPU use:        1.44 seconds
DEBUG subprocess: stdout: BlkIO use:      436.00 KiB
DEBUG subprocess: stdout: Memory use:     15.68 MiB
DEBUG subprocess: stdout: KMem use:       7.87 MiB
DEBUG subprocess: stdout: Link:           vethI8KCF1
DEBUG subprocess: stdout:  TX bytes:      1.55 KiB
 RX bytes:      6.62 KiB
 Total bytes:   8.17 KiB
DEBUG subprocess: Waiting for process to exit. Remaining to timeout: 32000
DEBUG subprocess: Exit status: 0
 INFO machine: Calling action: ssh_ip on provider LXC (tensorflow)
 INFO interface: Machine: action ["ssh_ip", "start", {:target=>:tensorflow}]
 INFO runner: Preparing hooks for middleware sequence...
 INFO runner: 1 hooks defined.
 INFO runner: Running action: machine_action_ssh_ip #<Vagrant::Action::Builder:0x0055f415fd2730>
 INFO warden: Calling IN action: #<Vagrant::Action::Builtin::Call:0x0055f415fcf170>
 INFO runner: Preparing hooks for middleware sequence...
 INFO runner: 1 hooks defined.
 INFO runner: Running action: machine_action_ssh_ip #<Vagrant::Action::Builder:0x0055f415f95d58>
 INFO warden: Calling IN action: #<Vagrant::Action::Builtin::ConfigValidate:0x0055f415f92bd0>
 INFO warden: Calling OUT action: #<Vagrant::Action::Builtin::ConfigValidate:0x0055f415f92bd0>
 INFO runner: Preparing hooks for middleware sequence...
 INFO runner: 1 hooks defined.
 INFO runner: Running action: machine_action_ssh_ip #<Vagrant::Action::Warden:0x0055f415f741d0>
 INFO warden: Calling IN action: #<Proc:0x0055f415f1c7a0@/usr/share/rubygems-integration/all/gems/vagrant-1.9.1/lib/vagrant/action/warden.rb:94 (lambda)>
 INFO warden: Calling IN action: #<Vagrant::LXC::Action::FetchIpWithLxcAttach:0x0055f415f74130>
 INFO subprocess: Starting process: ["/usr/bin/sudo", "/usr/local/bin/vagrant-lxc-wrapper", "lxc-attach", "--name", "tensorflow", "--namespaces", "'NETWORK|MOUNT'", "--", "/sbin/ip", "-4", "addr", "show", "scope", "global", "eth0"]
 INFO subprocess: Vagrant not running in installer, restoring original environment...
DEBUG subprocess: Selecting on IO
DEBUG subprocess: stdout: 33: eth0@if34: <BROADCAST,MULTICAST,UP,LOWER_UP> mtu 1500 qdisc noqueue state UP group default qlen 1000
    inet 10.0.1.224/24 brd 10.0.1.255 scope global eth0
       valid_lft forever preferred_lft forever
DEBUG subprocess: Waiting for process to exit. Remaining to timeout: 31999
DEBUG subprocess: Exit status: 0
 INFO warden: Calling IN action: #<Vagrant::LXC::Action::FetchIpFromDnsmasqLeases:0x0055f415f57d00>
 INFO warden: Calling IN action: #<Proc:0x0055f415f3bb28@/usr/share/rubygems-integration/all/gems/vagrant-1.9.1/lib/vagrant/action/warden.rb:94 (lambda)>
 INFO warden: Calling OUT action: #<Proc:0x0055f415f3bb28@/usr/share/rubygems-integration/all/gems/vagrant-1.9.1/lib/vagrant/action/warden.rb:94 (lambda)>
 INFO warden: Calling OUT action: #<Vagrant::LXC::Action::FetchIpFromDnsmasqLeases:0x0055f415f57d00>
 INFO warden: Calling OUT action: #<Vagrant::LXC::Action::FetchIpWithLxcAttach:0x0055f415f74130>
 INFO warden: Calling OUT action: #<Proc:0x0055f415f1c7a0@/usr/share/rubygems-integration/all/gems/vagrant-1.9.1/lib/vagrant/action/warden.rb:94 (lambda)>
 INFO warden: Calling OUT action: #<Vagrant::Action::Builtin::Call:0x0055f415fcf170>
 INFO interface: Machine: action ["ssh_ip", "end", {:target=>:tensorflow}]
DEBUG ssh: Checking key permissions: /home/claudino/Aplicacoes/pacotes/cuda/.vagrant/machines/tensorflow/lxc/private_key
 INFO ssh: Attempting SSH connection...
 INFO ssh: Attempting to connect to SSH...
 INFO ssh:   - Host: 10.0.1.224
 INFO ssh:   - Port: 22
 INFO ssh:   - Username: vagrant
 INFO ssh:   - Password? false
 INFO ssh:   - Key Path: ["/home/claudino/Aplicacoes/pacotes/cuda/.vagrant/machines/tensorflow/lxc/private_key"]
DEBUG ssh:   - connect_opts: {:auth_methods=>["none", "hostbased", "publickey"], :config=>false, :forward_agent=>false, :send_env=>false, :keys_only=>true, :paranoid=>false, :password=>nil, :port=>22, :timeout=>15, :user_known_hosts_file=>[], :verbose=>:debug, :logger=>#<Logger:0x0055f415ed5af8 @progname=nil, @level=0, @default_formatter=#<Logger::Formatter:0x0055f415ed5ad0 @datetime_format=nil>, @formatter=nil, @logdev=#<Logger::LogDevice:0x0055f415ed5940 @shift_size=nil, @shift_age=nil, @filename=nil, @dev=#<StringIO:0x0055f415ed5bc0>, @mon_owner=nil, @mon_count=0, @mon_mutex=#<Thread::Mutex:0x0055f415ed58f0>>>, :keys=>["/home/claudino/Aplicacoes/pacotes/cuda/.vagrant/machines/tensorflow/lxc/private_key"]}
DEBUG ssh: == Net-SSH connection debug-level log START ==
DEBUG ssh: D, [2017-07-18T15:04:39.003433 #28545] DEBUG -- net.ssh.transport.session[2afa0af69df0]: establishing connection to 10.0.1.224:22
D, [2017-07-18T15:04:39.003668 #28545] DEBUG -- net.ssh.transport.session[2afa0af69df0]: connection established
I, [2017-07-18T15:04:39.003722 #28545]  INFO -- net.ssh.transport.server_version[2afa0af69558]: negotiating protocol version
D, [2017-07-18T15:04:39.003738 #28545] DEBUG -- net.ssh.transport.server_version[2afa0af69558]: local is `SSH-2.0-Ruby/Net::SSH_3.2.0 x86_64-linux-gnu'
D, [2017-07-18T15:04:39.007625 #28545] DEBUG -- net.ssh.transport.server_version[2afa0af69558]: remote is `SSH-2.0-OpenSSH_6.6.1p1 Ubuntu-2ubuntu2'
I, [2017-07-18T15:04:39.007823 #28545]  INFO -- net.ssh.transport.algorithms[2afa0af68748]: sending KEXINIT
D, [2017-07-18T15:04:39.007988 #28545] DEBUG -- socket[2afa0af69a30]: queueing packet nr 0 type 20 len 1684
D, [2017-07-18T15:04:39.008051 #28545] DEBUG -- socket[2afa0af69a30]: sent 1688 bytes
D, [2017-07-18T15:04:39.008099 #28545] DEBUG -- socket[2afa0af69a30]: read 1648 bytes
D, [2017-07-18T15:04:39.008160 #28545] DEBUG -- socket[2afa0af69a30]: received packet nr 0 type 20 len 1644
I, [2017-07-18T15:04:39.008189 #28545]  INFO -- net.ssh.transport.algorithms[2afa0af68748]: got KEXINIT from server
I, [2017-07-18T15:04:39.008302 #28545]  INFO -- net.ssh.transport.algorithms[2afa0af68748]: negotiating algorithms
D, [2017-07-18T15:04:39.008364 #28545] DEBUG -- net.ssh.transport.algorithms[2afa0af68748]: negotiated:
* kex: diffie-hellman-group-exchange-sha1
* host_key: ssh-rsa
* encryption_server: aes128-cbc
* encryption_client: aes128-cbc
* hmac_client: hmac-sha1
* hmac_server: hmac-sha1
* compression_client: none
* compression_server: none
* language_client: 
* language_server: 
D, [2017-07-18T15:04:39.008379 #28545] DEBUG -- net.ssh.transport.algorithms[2afa0af68748]: exchanging keys
D, [2017-07-18T15:04:39.008502 #28545] DEBUG -- socket[2afa0af69a30]: queueing packet nr 1 type 34 len 20
D, [2017-07-18T15:04:39.008535 #28545] DEBUG -- socket[2afa0af69a30]: sent 24 bytes
D, [2017-07-18T15:04:39.009868 #28545] DEBUG -- socket[2afa0af69a30]: read 152 bytes
D, [2017-07-18T15:04:39.009918 #28545] DEBUG -- socket[2afa0af69a30]: received packet nr 1 type 31 len 148
D, [2017-07-18T15:04:39.010842 #28545] DEBUG -- socket[2afa0af69a30]: queueing packet nr 2 type 32 len 140
D, [2017-07-18T15:04:39.010890 #28545] DEBUG -- socket[2afa0af69a30]: sent 144 bytes
D, [2017-07-18T15:04:39.012660 #28545] DEBUG -- socket[2afa0af69a30]: read 720 bytes
D, [2017-07-18T15:04:39.012711 #28545] DEBUG -- socket[2afa0af69a30]: received packet nr 2 type 33 len 700
D, [2017-07-18T15:04:39.013360 #28545] DEBUG -- socket[2afa0af69a30]: queueing packet nr 3 type 21 len 20
D, [2017-07-18T15:04:39.013402 #28545] DEBUG -- socket[2afa0af69a30]: sent 24 bytes
D, [2017-07-18T15:04:39.013468 #28545] DEBUG -- socket[2afa0af69a30]: received packet nr 3 type 21 len 12
D, [2017-07-18T15:04:39.013637 #28545] DEBUG -- net.ssh.authentication.session[2afa0af5ae04]: beginning authentication of `vagrant'
D, [2017-07-18T15:04:39.013703 #28545] DEBUG -- socket[2afa0af69a30]: queueing packet nr 4 type 5 len 28
D, [2017-07-18T15:04:39.013723 #28545] DEBUG -- socket[2afa0af69a30]: sent 52 bytes
D, [2017-07-18T15:04:39.059057 #28545] DEBUG -- socket[2afa0af69a30]: read 52 bytes
D, [2017-07-18T15:04:39.059279 #28545] DEBUG -- socket[2afa0af69a30]: received packet nr 4 type 6 len 28
D, [2017-07-18T15:04:39.059566 #28545] DEBUG -- net.ssh.authentication.session[2afa0af5ae04]: trying none
D, [2017-07-18T15:04:39.059792 #28545] DEBUG -- socket[2afa0af69a30]: queueing packet nr 5 type 50 len 44
D, [2017-07-18T15:04:39.059916 #28545] DEBUG -- socket[2afa0af69a30]: sent 68 bytes
D, [2017-07-18T15:04:39.062231 #28545] DEBUG -- socket[2afa0af69a30]: read 68 bytes
D, [2017-07-18T15:04:39.062421 #28545] DEBUG -- socket[2afa0af69a30]: received packet nr 5 type 51 len 44
D, [2017-07-18T15:04:39.062552 #28545] DEBUG -- net.ssh.authentication.session[2afa0af5ae04]: allowed methods: publickey,password
D, [2017-07-18T15:04:39.062646 #28545] DEBUG -- net.ssh.authentication.methods.none[2afa0af59c20]: none failed
D, [2017-07-18T15:04:39.062814 #28545] DEBUG -- net.ssh.authentication.session[2afa0af5ae04]: trying publickey
D, [2017-07-18T15:04:39.063261 #28545] DEBUG -- net.ssh.authentication.agent[2afa0af5853c]: connecting to ssh-agent
D, [2017-07-18T15:04:39.063423 #28545] DEBUG -- net.ssh.authentication.agent[2afa0af5853c]: sending agent request 1 len 48
D, [2017-07-18T15:04:39.063771 #28545] DEBUG -- net.ssh.authentication.agent[2afa0af5853c]: received agent packet 5 len 1
D, [2017-07-18T15:04:39.063911 #28545] DEBUG -- net.ssh.authentication.agent[2afa0af5853c]: sending agent request 11 len 0
D, [2017-07-18T15:04:39.064102 #28545] DEBUG -- net.ssh.authentication.agent[2afa0af5853c]: received agent packet 12 len 5
D, [2017-07-18T15:04:39.064518 #28545] DEBUG -- net.ssh.authentication.methods.publickey[2afa0af58794]: trying publickey (a4:b3:e7:6b:5a:b2:e5:9b:15:04:cd:35:ba:98:51:9c)
D, [2017-07-18T15:04:39.064831 #28545] DEBUG -- socket[2afa0af69a30]: queueing packet nr 6 type 50 len 348
D, [2017-07-18T15:04:39.064992 #28545] DEBUG -- socket[2afa0af69a30]: sent 372 bytes
D, [2017-07-18T15:04:39.065808 #28545] DEBUG -- socket[2afa0af69a30]: read 324 bytes
D, [2017-07-18T15:04:39.066017 #28545] DEBUG -- socket[2afa0af69a30]: received packet nr 6 type 60 len 300
D, [2017-07-18T15:04:39.071146 #28545] DEBUG -- socket[2afa0af69a30]: queueing packet nr 7 type 50 len 620
D, [2017-07-18T15:04:39.071323 #28545] DEBUG -- socket[2afa0af69a30]: sent 644 bytes
D, [2017-07-18T15:04:39.073074 #28545] DEBUG -- socket[2afa0af69a30]: read 36 bytes
D, [2017-07-18T15:04:39.073372 #28545] DEBUG -- socket[2afa0af69a30]: received packet nr 7 type 52 len 12
D, [2017-07-18T15:04:39.073492 #28545] DEBUG -- net.ssh.authentication.methods.publickey[2afa0af58794]: publickey succeeded (a4:b3:e7:6b:5a:b2:e5:9b:15:04:cd:35:ba:98:51:9c)

DEBUG ssh: == Net-SSH connection debug-level log END ==
DEBUG ssh: Checking whether SSH is ready...
DEBUG ssh: Re-using SSH connection.
 INFO ssh: SSH is ready!
DEBUG ssh: Re-using SSH connection.
 INFO ssh: Execute:  (sudo=false)
DEBUG ssh: Exit status: 0
 INFO subprocess: Starting process: ["/usr/bin/sudo", "/usr/local/bin/vagrant-lxc-wrapper", "lxc-info", "--name", "tensorflow"]
 INFO subprocess: Vagrant not running in installer, restoring original environment...
DEBUG subprocess: Selecting on IO
DEBUG subprocess: stdout: Name:           tensorflow
DEBUG subprocess: stdout: State:          RUNNING
PID:            28742
DEBUG subprocess: stdout: IP:             10.0.1.224
DEBUG subprocess: stdout: CPU use:        1.50 seconds
DEBUG subprocess: stdout: BlkIO use:      436.00 KiB
DEBUG subprocess: stdout: Memory use:     16.94 MiB
DEBUG subprocess: stdout: KMem use:       8.18 MiB
DEBUG subprocess: stdout: Link:           vethI8KCF1
 TX bytes:      7.13 KiB
 RX bytes:      12.13 KiB
 Total bytes:   19.27 KiB
DEBUG subprocess: Waiting for process to exit. Remaining to timeout: 32000
DEBUG subprocess: Exit status: 0
 INFO machine: Calling action: ssh_ip on provider LXC (tensorflow)
 INFO interface: Machine: action ["ssh_ip", "start", {:target=>:tensorflow}]
 INFO runner: Preparing hooks for middleware sequence...
 INFO runner: 1 hooks defined.
 INFO runner: Running action: machine_action_ssh_ip #<Vagrant::Action::Builder:0x0055f415e50330>
 INFO warden: Calling IN action: #<Vagrant::Action::Builtin::Call:0x0055f415e4cf00>
 INFO runner: Preparing hooks for middleware sequence...
 INFO runner: 1 hooks defined.
 INFO runner: Running action: machine_action_ssh_ip #<Vagrant::Action::Builder:0x0055f415e044d0>
 INFO warden: Calling IN action: #<Vagrant::Action::Builtin::ConfigValidate:0x0055f415e01be0>
 INFO warden: Calling OUT action: #<Vagrant::Action::Builtin::ConfigValidate:0x0055f415e01be0>
 INFO runner: Preparing hooks for middleware sequence...
 INFO runner: 1 hooks defined.
 INFO runner: Running action: machine_action_ssh_ip #<Vagrant::Action::Warden:0x0055f415dbf6f0>
 INFO warden: Calling IN action: #<Proc:0x0055f415bd5ee8@/usr/share/rubygems-integration/all/gems/vagrant-1.9.1/lib/vagrant/action/warden.rb:94 (lambda)>
 INFO warden: Calling IN action: #<Vagrant::LXC::Action::FetchIpWithLxcAttach:0x0055f415dbf678>
 INFO subprocess: Starting process: ["/usr/bin/sudo", "/usr/local/bin/vagrant-lxc-wrapper", "lxc-attach", "--name", "tensorflow", "--namespaces", "'NETWORK|MOUNT'", "--", "/sbin/ip", "-4", "addr", "show", "scope", "global", "eth0"]
 INFO subprocess: Vagrant not running in installer, restoring original environment...
DEBUG subprocess: Selecting on IO
DEBUG subprocess: stdout: 33: eth0@if34: <BROADCAST,MULTICAST,UP,LOWER_UP> mtu 1500 qdisc noqueue state UP group default qlen 1000
    inet 10.0.1.224/24 brd 10.0.1.255 scope global eth0
       valid_lft forever preferred_lft forever
DEBUG subprocess: Waiting for process to exit. Remaining to timeout: 32000
DEBUG subprocess: Exit status: 0
 INFO warden: Calling IN action: #<Vagrant::LXC::Action::FetchIpFromDnsmasqLeases:0x0055f415d9c470>
 INFO warden: Calling IN action: #<Proc:0x0055f415c7a4c0@/usr/share/rubygems-integration/all/gems/vagrant-1.9.1/lib/vagrant/action/warden.rb:94 (lambda)>
 INFO warden: Calling OUT action: #<Proc:0x0055f415c7a4c0@/usr/share/rubygems-integration/all/gems/vagrant-1.9.1/lib/vagrant/action/warden.rb:94 (lambda)>
 INFO warden: Calling OUT action: #<Vagrant::LXC::Action::FetchIpFromDnsmasqLeases:0x0055f415d9c470>
 INFO warden: Calling OUT action: #<Vagrant::LXC::Action::FetchIpWithLxcAttach:0x0055f415dbf678>
 INFO warden: Calling OUT action: #<Proc:0x0055f415bd5ee8@/usr/share/rubygems-integration/all/gems/vagrant-1.9.1/lib/vagrant/action/warden.rb:94 (lambda)>
 INFO warden: Calling OUT action: #<Vagrant::Action::Builtin::Call:0x0055f415e4cf00>
 INFO interface: Machine: action ["ssh_ip", "end", {:target=>:tensorflow}]
DEBUG ssh: Checking key permissions: /home/claudino/Aplicacoes/pacotes/cuda/.vagrant/machines/tensorflow/lxc/private_key
 INFO interface: output: Machine booted and ready!
 INFO interface: output: ==> tensorflow: Machine booted and ready!
==> tensorflow: Machine booted and ready!
 INFO warden: Calling IN action: #<Proc:0x0055f41576a048@/usr/share/rubygems-integration/all/gems/vagrant-1.9.1/lib/vagrant/action/warden.rb:94 (lambda)>
 INFO warden: Calling OUT action: #<Proc:0x0055f41576a048@/usr/share/rubygems-integration/all/gems/vagrant-1.9.1/lib/vagrant/action/warden.rb:94 (lambda)>
 INFO warden: Calling OUT action: #<Vagrant::Action::Builtin::WaitForCommunicator:0x0055f41576a0c0>
 INFO warden: Calling OUT action: #<Vagrant::LXC::Action::Boot:0x0055f41576a160>
 INFO interface: output: Setting up private networks...
 INFO interface: output: ==> tensorflow: Setting up private networks...
==> tensorflow: Setting up private networks...
 INFO driver: Configuring network interface for tensorflow using 173.198.43.01 and bridge vlxcbr1
 INFO driver: Checking whether bridge vlxcbr1 exists
 INFO driver: Creating the bridge vlxcbr1
 INFO subprocess: Starting process: ["/usr/bin/sudo", "/usr/local/bin/vagrant-lxc-wrapper", "brctl", "addbr", "vlxcbr1"]
 INFO subprocess: Vagrant not running in installer, restoring original environment...
DEBUG subprocess: Selecting on IO
DEBUG subprocess: Waiting for process to exit. Remaining to timeout: 32000
DEBUG subprocess: Exit status: 0
 INFO driver: Checking whether the bridge vlxcbr1 has an IP
 INFO driver: Adding 173.198.43.254 to the bridge vlxcbr1
 INFO subprocess: Starting process: ["/usr/bin/sudo", "/usr/local/bin/vagrant-lxc-wrapper", "ip", "addr", "add", "173.198.43.254/24", "dev", "vlxcbr1"]
 INFO subprocess: Vagrant not running in installer, restoring original environment...
DEBUG subprocess: Selecting on IO
DEBUG subprocess: Waiting for process to exit. Remaining to timeout: 32000
DEBUG subprocess: Exit status: 0
 INFO subprocess: Starting process: ["/usr/bin/sudo", "/usr/local/bin/vagrant-lxc-wrapper", "ip", "link", "set", "vlxcbr1", "up"]
 INFO subprocess: Vagrant not running in installer, restoring original environment...
DEBUG subprocess: Selecting on IO
DEBUG subprocess: Waiting for process to exit. Remaining to timeout: 32000
DEBUG subprocess: Exit status: 0
 INFO subprocess: Starting process: ["/usr/bin/sudo", "/usr/local/bin/vagrant-lxc-wrapper", "/home/claudino/.vagrant.d/gems/2.3.3/gems/vagrant-lxc-1.2.3/scripts/pipework", "vlxcbr1", "tensorflow", "173.198.43.01/24"]
 INFO subprocess: Vagrant not running in installer, restoring original environment...
DEBUG subprocess: Selecting on IO
DEBUG subprocess: stderr: Invalid arguments for command /home/claudino/.vagrant.d/gems/2.3.3/gems/vagrant-lxc-1.2.3/scripts/pipework, provided args: ["vlxcbr1", "tensorflow", "173.198.43.01/24"]
DEBUG subprocess: Waiting for process to exit. Remaining to timeout: 32000
DEBUG subprocess: Exit status: 1
ERROR warden: Error occurred: There was an error executing ["sudo", "/usr/local/bin/vagrant-lxc-wrapper", "/home/claudino/.vagrant.d/gems/2.3.3/gems/vagrant-lxc-1.2.3/scripts/pipework", "vlxcbr1", "tensorflow", "173.198.43.01/24"]

For more information on the failure, enable detailed logging by setting
the environment variable VAGRANT_LOG to DEBUG.
 INFO warden: Beginning recovery process...
 INFO warden: Calling recover: #<Vagrant::Action::Builtin::HandleForwardedPortCollisions:0x0055f415e5f858>
 INFO warden: Recovery complete.
 INFO warden: Beginning recovery process...
 INFO warden: Recovery complete.
 INFO warden: Beginning recovery process...
 INFO warden: Recovery complete.
 INFO warden: Beginning recovery process...
 INFO warden: Recovery complete.
 INFO warden: Beginning recovery process...
 INFO warden: Recovery complete.
 INFO warden: Beginning recovery process...
 INFO warden: Recovery complete.
 INFO warden: Beginning recovery process...
 INFO warden: Recovery complete.
 INFO warden: Beginning recovery process...
 INFO warden: Recovery complete.
 INFO warden: Beginning recovery process...
 INFO warden: Recovery complete.
 INFO warden: Beginning recovery process...
 INFO warden: Recovery complete.
 INFO warden: Beginning recovery process...
 INFO warden: Recovery complete.
 INFO warden: Beginning recovery process...
 INFO warden: Recovery complete.
ERROR warden: Error occurred: There was an error executing ["sudo", "/usr/local/bin/vagrant-lxc-wrapper", "/home/claudino/.vagrant.d/gems/2.3.3/gems/vagrant-lxc-1.2.3/scripts/pipework", "vlxcbr1", "tensorflow", "173.198.43.01/24"]

For more information on the failure, enable detailed logging by setting
the environment variable VAGRANT_LOG to DEBUG.
 INFO warden: Beginning recovery process...
 INFO warden: Recovery complete.
ERROR warden: Error occurred: There was an error executing ["sudo", "/usr/local/bin/vagrant-lxc-wrapper", "/home/claudino/.vagrant.d/gems/2.3.3/gems/vagrant-lxc-1.2.3/scripts/pipework", "vlxcbr1", "tensorflow", "173.198.43.01/24"]

For more information on the failure, enable detailed logging by setting
the environment variable VAGRANT_LOG to DEBUG.
 INFO warden: Beginning recovery process...
 INFO warden: Calling recover: #<Vagrant::Action::Builtin::Call:0x007f22480647a0>
 INFO warden: Beginning recovery process...
 INFO warden: Recovery complete.
 INFO warden: Calling recover: #<Vagrant::Action::Builtin::Call:0x007f22480329a8>
 INFO warden: Beginning recovery process...
 INFO warden: Recovery complete.
 INFO warden: Recovery complete.
 INFO warden: Beginning recovery process...
 INFO warden: Recovery complete.
 INFO warden: Beginning recovery process...
 INFO warden: Recovery complete.
ERROR warden: Error occurred: There was an error executing ["sudo", "/usr/local/bin/vagrant-lxc-wrapper", "/home/claudino/.vagrant.d/gems/2.3.3/gems/vagrant-lxc-1.2.3/scripts/pipework", "vlxcbr1", "tensorflow", "173.198.43.01/24"]

For more information on the failure, enable detailed logging by setting
the environment variable VAGRANT_LOG to DEBUG.
 INFO warden: Beginning recovery process...
 INFO warden: Recovery complete.
ERROR warden: Error occurred: There was an error executing ["sudo", "/usr/local/bin/vagrant-lxc-wrapper", "/home/claudino/.vagrant.d/gems/2.3.3/gems/vagrant-lxc-1.2.3/scripts/pipework", "vlxcbr1", "tensorflow", "173.198.43.01/24"]

For more information on the failure, enable detailed logging by setting
the environment variable VAGRANT_LOG to DEBUG.
 INFO warden: Beginning recovery process...
 INFO warden: Recovery complete.
 INFO warden: Beginning recovery process...
 INFO warden: Recovery complete.
 INFO warden: Beginning recovery process...
 INFO warden: Recovery complete.
 INFO environment: Released process lock: machine-action-92343f86a52b895f8c121294b5cb19fa
 INFO environment: Running hook: environment_unload
 INFO runner: Preparing hooks for middleware sequence...
 INFO runner: 1 hooks defined.
 INFO runner: Running action: environment_unload #<Vagrant::Action::Builder:0x0055f4156290f8>
ERROR vagrant: Vagrant experienced an error! Details:
ERROR vagrant: #<Vagrant::LXC::Errors::ExecuteError: There was an error executing ["sudo", "/usr/local/bin/vagrant-lxc-wrapper", "/home/claudino/.vagrant.d/gems/2.3.3/gems/vagrant-lxc-1.2.3/scripts/pipework", "vlxcbr1", "tensorflow", "173.198.43.01/24"]

For more information on the failure, enable detailed logging by setting
the environment variable VAGRANT_LOG to DEBUG.>
ERROR vagrant: There was an error executing ["sudo", "/usr/local/bin/vagrant-lxc-wrapper", "/home/claudino/.vagrant.d/gems/2.3.3/gems/vagrant-lxc-1.2.3/scripts/pipework", "vlxcbr1", "tensorflow", "173.198.43.01/24"]

For more information on the failure, enable detailed logging by setting
the environment variable VAGRANT_LOG to DEBUG.
ERROR vagrant: /home/claudino/.vagrant.d/gems/2.3.3/gems/vagrant-lxc-1.2.3/lib/vagrant-lxc/sudo_wrapper.rb:51:in `block in execute'
/usr/share/rubygems-integration/all/gems/vagrant-1.9.1/lib/vagrant/util/retryable.rb:17:in `retryable'
/home/claudino/.vagrant.d/gems/2.3.3/gems/vagrant-lxc-1.2.3/lib/vagrant-lxc/sudo_wrapper.rb:41:in `execute'
/home/claudino/.vagrant.d/gems/2.3.3/gems/vagrant-lxc-1.2.3/lib/vagrant-lxc/sudo_wrapper.rb:18:in `run'
/home/claudino/.vagrant.d/gems/2.3.3/gems/vagrant-lxc-1.2.3/lib/vagrant-lxc/driver.rb:172:in `configure_private_network'
/home/claudino/.vagrant.d/gems/2.3.3/gems/vagrant-lxc-1.2.3/lib/vagrant-lxc/action/private_networks.rb:34:in `block in configure_private_networks'
/home/claudino/.vagrant.d/gems/2.3.3/gems/vagrant-lxc-1.2.3/lib/vagrant-lxc/action/private_networks.rb:25:in `each'
/home/claudino/.vagrant.d/gems/2.3.3/gems/vagrant-lxc-1.2.3/lib/vagrant-lxc/action/private_networks.rb:25:in `find'
/home/claudino/.vagrant.d/gems/2.3.3/gems/vagrant-lxc-1.2.3/lib/vagrant-lxc/action/private_networks.rb:25:in `configure_private_networks'
/home/claudino/.vagrant.d/gems/2.3.3/gems/vagrant-lxc-1.2.3/lib/vagrant-lxc/action/private_networks.rb:14:in `call'
/usr/share/rubygems-integration/all/gems/vagrant-1.9.1/lib/vagrant/action/warden.rb:34:in `call'
/home/claudino/.vagrant.d/gems/2.3.3/gems/vagrant-lxc-1.2.3/lib/vagrant-lxc/action/forward_ports.rb:29:in `call'
/usr/share/rubygems-integration/all/gems/vagrant-1.9.1/lib/vagrant/action/warden.rb:34:in `call'
/home/claudino/.vagrant.d/gems/2.3.3/gems/vagrant-lxc-1.2.3/lib/vagrant-lxc/action/warn_networks.rb:14:in `call'
/usr/share/rubygems-integration/all/gems/vagrant-1.9.1/lib/vagrant/action/warden.rb:34:in `call'
/usr/share/rubygems-integration/all/gems/vagrant-1.9.1/lib/vagrant/action/builtin/set_hostname.rb:16:in `call'
/usr/share/rubygems-integration/all/gems/vagrant-1.9.1/lib/vagrant/action/warden.rb:34:in `call'
/home/claudino/.vagrant.d/gems/2.3.3/gems/vagrant-lxc-1.2.3/lib/vagrant-lxc/action/prepare_nfs_settings.rb:15:in `call'
/usr/share/rubygems-integration/all/gems/vagrant-1.9.1/lib/vagrant/action/warden.rb:34:in `call'
/usr/share/rubygems-integration/all/gems/vagrant-1.9.1/lib/vagrant/action/builtin/synced_folders.rb:87:in `call'
/usr/share/rubygems-integration/all/gems/vagrant-1.9.1/lib/vagrant/action/warden.rb:34:in `call'
/usr/share/rubygems-integration/all/gems/vagrant-1.9.1/lib/vagrant/action/builtin/synced_folder_cleanup.rb:28:in `call'
/usr/share/rubygems-integration/all/gems/vagrant-1.9.1/lib/vagrant/action/warden.rb:34:in `call'
/usr/share/rubygems-integration/all/gems/vagrant-1.9.1/plugins/synced_folders/nfs/action_cleanup.rb:25:in `call'
/usr/share/rubygems-integration/all/gems/vagrant-1.9.1/lib/vagrant/action/warden.rb:34:in `call'
/home/claudino/.vagrant.d/gems/2.3.3/gems/vagrant-lxc-1.2.3/lib/vagrant-lxc/action/prepare_nfs_valid_ids.rb:14:in `call'
/usr/share/rubygems-integration/all/gems/vagrant-1.9.1/lib/vagrant/action/warden.rb:34:in `call'
/usr/share/rubygems-integration/all/gems/vagrant-1.9.1/lib/vagrant/action/builtin/handle_forwarded_port_collisions.rb:49:in `call'
/usr/share/rubygems-integration/all/gems/vagrant-1.9.1/lib/vagrant/action/warden.rb:34:in `call'
/usr/share/rubygems-integration/all/gems/vagrant-1.9.1/lib/vagrant/action/builtin/env_set.rb:19:in `call'
/usr/share/rubygems-integration/all/gems/vagrant-1.9.1/lib/vagrant/action/warden.rb:34:in `call'
/usr/share/rubygems-integration/all/gems/vagrant-1.9.1/lib/vagrant/action/builtin/provision.rb:80:in `call'
/usr/share/rubygems-integration/all/gems/vagrant-1.9.1/lib/vagrant/action/warden.rb:34:in `call'
/usr/share/rubygems-integration/all/gems/vagrant-1.9.1/lib/vagrant/action/warden.rb:95:in `block in finalize_action'
/usr/share/rubygems-integration/all/gems/vagrant-1.9.1/lib/vagrant/action/warden.rb:34:in `call'
/usr/share/rubygems-integration/all/gems/vagrant-1.9.1/lib/vagrant/action/builder.rb:116:in `call'
/usr/share/rubygems-integration/all/gems/vagrant-1.9.1/lib/vagrant/action/runner.rb:66:in `block in run'
/usr/share/rubygems-integration/all/gems/vagrant-1.9.1/lib/vagrant/util/busy.rb:19:in `busy'
/usr/share/rubygems-integration/all/gems/vagrant-1.9.1/lib/vagrant/action/runner.rb:66:in `run'
/usr/share/rubygems-integration/all/gems/vagrant-1.9.1/lib/vagrant/action/builtin/call.rb:53:in `call'
/usr/share/rubygems-integration/all/gems/vagrant-1.9.1/lib/vagrant/action/warden.rb:34:in `call'
/usr/share/rubygems-integration/all/gems/vagrant-1.9.1/lib/vagrant/action/builtin/box_check_outdated.rb:78:in `call'
/usr/share/rubygems-integration/all/gems/vagrant-1.9.1/lib/vagrant/action/warden.rb:34:in `call'
/usr/share/rubygems-integration/all/gems/vagrant-1.9.1/lib/vagrant/action/builtin/config_validate.rb:25:in `call'
/usr/share/rubygems-integration/all/gems/vagrant-1.9.1/lib/vagrant/action/warden.rb:34:in `call'
/usr/share/rubygems-integration/all/gems/vagrant-1.9.1/lib/vagrant/action/warden.rb:95:in `block in finalize_action'
/usr/share/rubygems-integration/all/gems/vagrant-1.9.1/lib/vagrant/action/warden.rb:34:in `call'
/usr/share/rubygems-integration/all/gems/vagrant-1.9.1/lib/vagrant/action/warden.rb:95:in `block in finalize_action'
/usr/share/rubygems-integration/all/gems/vagrant-1.9.1/lib/vagrant/action/warden.rb:34:in `call'
/usr/share/rubygems-integration/all/gems/vagrant-1.9.1/lib/vagrant/action/builder.rb:116:in `call'
/usr/share/rubygems-integration/all/gems/vagrant-1.9.1/lib/vagrant/action/runner.rb:66:in `block in run'
/usr/share/rubygems-integration/all/gems/vagrant-1.9.1/lib/vagrant/util/busy.rb:19:in `busy'
/usr/share/rubygems-integration/all/gems/vagrant-1.9.1/lib/vagrant/action/runner.rb:66:in `run'
/usr/share/rubygems-integration/all/gems/vagrant-1.9.1/lib/vagrant/action/builtin/call.rb:53:in `call'
/usr/share/rubygems-integration/all/gems/vagrant-1.9.1/lib/vagrant/action/warden.rb:34:in `call'
/usr/share/rubygems-integration/all/gems/vagrant-1.9.1/lib/vagrant/action/builtin/config_validate.rb:25:in `call'
/usr/share/rubygems-integration/all/gems/vagrant-1.9.1/lib/vagrant/action/warden.rb:34:in `call'
/usr/share/rubygems-integration/all/gems/vagrant-1.9.1/lib/vagrant/action/builder.rb:116:in `call'
/usr/share/rubygems-integration/all/gems/vagrant-1.9.1/lib/vagrant/action/runner.rb:66:in `block in run'
/usr/share/rubygems-integration/all/gems/vagrant-1.9.1/lib/vagrant/util/busy.rb:19:in `busy'
/usr/share/rubygems-integration/all/gems/vagrant-1.9.1/lib/vagrant/action/runner.rb:66:in `run'
/usr/share/rubygems-integration/all/gems/vagrant-1.9.1/lib/vagrant/machine.rb:225:in `action_raw'
/usr/share/rubygems-integration/all/gems/vagrant-1.9.1/lib/vagrant/machine.rb:200:in `block in action'
/usr/share/rubygems-integration/all/gems/vagrant-1.9.1/lib/vagrant/environment.rb:533:in `lock'
/usr/share/rubygems-integration/all/gems/vagrant-1.9.1/lib/vagrant/machine.rb:186:in `call'
/usr/share/rubygems-integration/all/gems/vagrant-1.9.1/lib/vagrant/machine.rb:186:in `action'
/usr/share/rubygems-integration/all/gems/vagrant-1.9.1/lib/vagrant/batch_action.rb:82:in `block (2 levels) in run'
 INFO interface: error: There was an error executing ["sudo", "/usr/local/bin/vagrant-lxc-wrapper", "/home/claudino/.vagrant.d/gems/2.3.3/gems/vagrant-lxc-1.2.3/scripts/pipework", "vlxcbr1", "tensorflow", "173.198.43.01/24"]

For more information on the failure, enable detailed logging by setting
the environment variable VAGRANT_LOG to DEBUG.
There was an error executing ["sudo", "/usr/local/bin/vagrant-lxc-wrapper", "/home/claudino/.vagrant.d/gems/2.3.3/gems/vagrant-lxc-1.2.3/scripts/pipework", "vlxcbr1", "tensorflow", "173.198.43.01/24"]

For more information on the failure, enable detailed logging by setting
the environment variable VAGRANT_LOG to DEBUG.
 INFO interface: Machine: error-exit ["Vagrant::LXC::Errors::ExecuteError", "There was an error executing [\"sudo\", \"/usr/local/bin/vagrant-lxc-wrapper\", \"/home/claudino/.vagrant.d/gems/2.3.3/gems/vagrant-lxc-1.2.3/scripts/pipework\", \"vlxcbr1\", \"tensorflow\", \"173.198.43.01/24\"]\n\nFor more information on the failure, enable detailed logging by setting\nthe environment variable VAGRANT_LOG to DEBUG."]
iamjvn commented 7 years ago

A stab in the dark, try:

andreclaudino commented 7 years ago

@iamjvn , I did everythong you said, change config.vm to tf.vm give me an erro, the pipework file was there, but following #417 take effect. The solution was to add

Whitelist.add_regex %r{/home/<user>/.vagrant.d/gems/(?:\d+?\.\d+?\.\d+?/)?gems/vagrant-lxc.+/scripts/pipework}, '**'

to /usr/local/bin/vagrant-lxc-wrapper (before Whitelist.run!(ARGV)) worked for me.

And now things look fine.