Re: [vagrant-up] Ubuntu 16.04 with public_network

2017-07-27 Thread Alvaro Miranda Aguilera
to > do with how the box is built. Right now, I'm using > "xcoo/xenial64" box, which gives me the public_network, but I'll give the > cbednarski ones a try too. > > > On Thursday, July 27, 2017 at 12:52:03 AM UTC-4, Alvaro Miranda Aguilera > wrote: >> &

Re: [vagrant-up] Vagrant up command issue

2017-07-27 Thread Alvaro Miranda Aguilera
Hello IF you did a new install, and you rebooted after the installation, should be fine. Do you have any Anti Virus that may be causing problems? On Thu, Jul 27, 2017 at 5:09 PM, wazid shah wrote: > Hi guys im new to vagrant i had installed virtual box and vagrant, and was

Re: [vagrant-up] vagrant --version returned -1073741701 in ChefDK

2017-07-27 Thread Alvaro Miranda Aguilera
> > PS C:\WINDOWS\system32> C:\HashiCorp\Vagrant\bin\vagrant.exe -v > PS C:\WINDOWS\system32> echo $? > False > > > On Thursday, July 27, 2017 at 12:50:54 AM UTC-4, Alvaro Miranda Aguilera > wrote: >> >> Hello >> >> What gappens if you use the fulll

Re: [vagrant-up] "private_network" set on wrong interface on centos7 vagrant 1.9.7

2017-07-26 Thread Alvaro Miranda Aguilera
Hello Does happen with other boxes? Please try bento/centos7 (please check name) alvaro/wouter7 If happens with those boxes too, please share your vagrantfile and the output from your VM on what you see and what you think should be On Tue, Jul 25, 2017 at 6:28 PM, IL Dave

Re: [vagrant-up] Ubuntu 16.04 with public_network

2017-07-26 Thread Alvaro Miranda Aguilera
Hello What issues? If you share how to reproduce we can have a look. Try these boxes: https://app.vagrantup.com/cbednarski Alvaro On Tue, Jul 25, 2017 at 10:12 PM, Jonathan A. wrote: > I need a Vagrant setup that has Ubuntu 16.04 and the public_network > setting working

Re: [vagrant-up] vagrant --version returned -1073741701 in ChefDK

2017-07-26 Thread Alvaro Miranda Aguilera
Hello What gappens if you use the fulll path to vagrant binary? On Tue, Jul 25, 2017 at 11:22 PM, Ivan Lee wrote: > Hello, > > I am getting "vagrant --version returned -1073741701" in ChefDK v.2.0.28 > and vagrant version 1.9.7 > > PS

Re: [vagrant-up] How to get a machine/node name from within a define block?

2017-07-26 Thread Alvaro Miranda Aguilera
Hello This works for me: Vagrant.configure("2") do |config| config.vm.box = "hashicorp/precise64" (1..2).each do |i| config.vm.define vm_name = "dc1-web0%01d" % i do |web| puts vm_name web.vm.hostname = "#{vm_name}" end end end Alvaro On Wed, Jul 26, 2017

Re: [vagrant-up] vagrant long provisioning fails with: Broken pipe - send(2) (Errno::EPIPE)

2017-07-26 Thread Alvaro Miranda Aguilera
Hello If you have virtualbox additions installed, you should see /vagrant mounted in the vm. the current directory in the host where the vagrantfile is is mounted on /vagrant so if the files are in files/ then you can see those in /vagrant/files If you use that, then you won't need copy the

Re: [vagrant-up] how exactly to use rsync to speed up Vagrant?

2017-07-25 Thread Alvaro Miranda Aguilera
Hello Check if this helps on the VM or not mv /etc/sysctl.conf /etc/sysctl.conf.ori grep -v net.ipv6.conf /etc/sysctl.conf.ori | tee /etc/sysctl.conf echo "net.ipv6.conf.all.disable_ipv6=1" | tee -a /etc/sysctl.conf echo "net.ipv6.conf.default.disable_ipv6=1" | tee -a /etc/sysctl.conf If does

Re: [vagrant-up] how exactly to use rsync to speed up Vagrant?

2017-07-24 Thread Alvaro Miranda Aguilera
Hello You can domething like this in a script. #!/usr/bin/env bash mv /etc/sysctl.conf /etc/sysctl.conf.ori grep -v net.ipv6.conf /etc/sysctl.conf.ori | tee /etc/sysctl.conf echo "net.ipv6.conf.all.disable_ipv6=1" | tee -a /etc/sysctl.conf echo "net.ipv6.conf.default.disable_ipv6=1" | tee -a

Re: [vagrant-up] config.vm.synced_folder ignored in default Vagrantfile

2017-07-17 Thread Alvaro Miranda Aguilera
hello can you check the file is there once untarred by Vagrant? find ~/.vagrant.d/boxes if you add puts __FILE__ it should print the name of the file when you run any command, ie vagrant status this is helpful to confirm is being loaded. if thats the case, then could you open an issue on

Re: [vagrant-up] How to have multiple boxes of the same operating system?

2017-07-17 Thread Alvaro Miranda Aguilera
hello have a look here: https://www.vagrantup.com/docs/multi-machine/ Alvaro On Thu, Jul 13, 2017 at 7:45 AM, Vaxobot wrote: > Hello everyone. > > I have a box with the *ubuntu/trusty64* system, but i have a question. > > When i put the *vagrant up* command it starts

Re: [vagrant-up] Vagrant on VMWare setup: Noob needs help

2017-07-17 Thread Alvaro Miranda Aguilera
Hello If you want to use vagrant with VMWare Desktop products, please note that vagrant requires a paid plugin. and that VMWare Workstation is installed and fully licenses. Please send an email to supp...@hashicorp.com Alvaro On Thu, Jul 13, 2017 at 4:00 PM, wrote: > I

Re: [vagrant-up] Vagrant Up freezes in Windows 7 Professional

2017-07-17 Thread Alvaro Miranda Aguilera
hello Whats your Vagrantfile? It seems to start the VM and then execute powershell. try vagrant up --no-provision does it hang? Alvaro On Sat, Jul 15, 2017 at 12:48 AM, wrote: > Hi, everyone. > > I have googled and also gone through posts in this Vagrant forum but was >

Re: [vagrant-up] vagrant ubuntu 16.04 crontab - execute commands at wrong time

2017-07-17 Thread Alvaro Miranda Aguilera
Hello This mailing list is vagrant about the program vagrant and how to use it. I think your question is more suitable for ubuntu forums if its ubuntu specific, or any other general linux page like StackOverflow. Alvaro On Sun, Jul 16, 2017 at 11:03 AM, Bartosz Miklaszewski

Re: [vagrant-up] Problemm with SSL when runnig "vagrant init precise64 http://files.vagrantup.com/precise64.box"

2017-07-17 Thread Alvaro Miranda Aguilera
Hello What version you got installed? Did you install from the official page? Alvaro On Sun, Jul 16, 2017 at 11:35 AM, lehiri gosse wrote: > >

Re: [vagrant-up] no output with vagrant on windows 7

2017-07-11 Thread Alvaro Miranda Aguilera
hello try running vagrant as your normal user after the installation finished, did ask to reboot? did the reboot happen? If you have AntiVirus, can you disable to test? On Mon, Jul 10, 2017 at 11:06 PM, gdoc wrote: > Hello, > > I installed Vagrant on a 64-bit windows

Re: [vagrant-up] Best practices for supporting different environments

2017-07-10 Thread Alvaro Miranda Aguilera
e. > > The second issue I have is that I am trying to access a file in a > subdir, and I get "No such file or directory" even though the path to > the file does exist and is accessible. > > > On Mon, Jul 10, 2017 at 2:13 PM, Alvaro Miranda Aguilera > <kiki...@gmai

Re: [vagrant-up] Best practices for supporting different environments

2017-07-10 Thread Alvaro Miranda Aguilera
hello as long in the same level where your Vagrantfile is, vagrant will copy setup.sh, set the execute flag and run it. inside the VM you can do cd /vagrant sudo ./setup.sh and should have the same effect. On Fri, Jul 7, 2017 at 2:49 PM, Larry Martell wrote: > I

Re: [vagrant-up] Need help in passing data directory of Scylla DB to Vagrant Container of DCOS

2017-07-07 Thread Alvaro Miranda Aguilera
t yet fixed > > > Thanks & Regards, > Praveen > > On Wednesday, July 5, 2017 at 11:56:37 PM UTC-7, Alvaro Miranda Aguilera > wrote: >> >> Hello >> >> If you want XFS on the guest, the best is create a disk and format it as >>

Re: [vagrant-up] Unable to launch Centos V6 in GUI via Vagrant

2017-06-29 Thread Alvaro Miranda Aguilera
Hello Are several things that need to happen. A. When you use vb.gui that tells vagrant to open a Console when the VM start. Thats opossed to silent by default. B. You need to ensure the graphical environment is installed and the default mode is graphical instead of text. For this, you need to

Re: [vagrant-up] Vagrant ssh, default folder + default commands

2017-06-28 Thread Alvaro Miranda Aguilera
hi vagrant ssh -c 'sudo su - ; cd /blah/blah' ? On Wed, Jun 28, 2017 at 7:34 PM, Alan wrote: > Hi all, > > I was wondering if there was a way when (everytime) I do 'vagrant ssh', to > execute the following two commands automatically: > > sudo su(to change the user

Re: [vagrant-up] Need help in passing data directory of Scylla DB to Vagrant Container of DCOS

2017-06-28 Thread Alvaro Miranda Aguilera
seems a scylla error message. are you sure that scylla will run on the kind of filesystem ? If your host and guest are linux, I would go with NFS. Alvaro. On Wed, Jun 28, 2017 at 1:08 AM, wrote: > Hi all, > > I am trying to change data directory of Scylla DB

Re: [vagrant-up] Re: Error during vagrant up

2017-06-26 Thread Alvaro Miranda Aguilera
Hello Vagrantfile can be also included in the machine (VM), so in this case check this file: ~/.vagrant.d/boxes/cloudfoundry-VAGRANTSLASH-bosh-lite/9000.137.0/virtualbox/Vagrantfile where ~ is your home directory. Seems they are defaulting to 6GB if the variable VM_MEMORY is not set. So, if

Re: [vagrant-up] Error during vagrant up

2017-06-26 Thread Alvaro Miranda Aguilera
Hello Share the Vagrantfile you are using. In that file will be this: ["modifyvm", :id, "--memory", 6144] Literally, or similar using some variables. So need to reduce that 6144 Alvaro On Mon, Jun 26, 2017 at 2:52 PM, João Vitor Brasil < joao.santos@acad.pucrs.br> wrote: > Hello,

Re: [vagrant-up] Error during vagrant up

2017-06-26 Thread Alvaro Miranda Aguilera
On Fri, Jun 23, 2017 at 6:46 PM, João Vitor Brasil < joao.santos@acad.pucrs.br> wrote: > 6144 MB (must be in range [4, 3584] MB) The error is clear. You are trying to give 6111 MB to the VM but the host os MAX have 3584 available. So adjust the size and try with 1024 and then go upto

Re: [vagrant-up] Customfile does not work in vagrant 1.9.8

2017-06-26 Thread Alvaro Miranda Aguilera
seems there is a parameter: allow_customfile Seems you need to set that to true. If that does the trick, please open an issue on VVV so they can update the documentation. Alvaro. On Fri, Jun 23, 2017 at 7:59 PM, Lian Jiang wrote: > > I try to add more memory to my vm

Re: [vagrant-up] Call boxes list from a config.rb

2017-06-26 Thread Alvaro Miranda Aguilera
If you can share a git repo of what you got, will be easier to have a look. On Fri, Jun 23, 2017 at 8:59 PM, Joris van der Kwast wrote: > Hi, > > I'm, pretty new to ruby, but not vagrant. I'm setting up a config file in > config.rb, as for instance the folks at coreos do ( >

Re: [vagrant-up] using inline commands in vagrantfile won't work

2017-06-26 Thread Alvaro Miranda Aguilera
Hello In the documentation there is an example on how to do multi line inline scripts. https://www.vagrantup.com/docs/provisioning/shell.html#inline-scripts For the shared folder in virtualbox to work, the guest need to have virtualbox additions and kernel modules installed. I would suggest

Re: [vagrant-up] Vagrant Setup Issues

2017-06-23 Thread Alvaro Miranda Aguilera
Hello. Vagrant does several small things, that when you mix them you can create something bigger. Basic concepts. Taking a template, create a VM. Can run scripts, set hostname, add network configuration. All this, need to be seen as "vagrant will automate what you want to do", but there is a

Re: [vagrant-up] Looking for example vagrant file for hyperv

2017-06-23 Thread Alvaro Miranda Aguilera
What are the errors you get and the Vagrantfile change you are using? On Thu, Jun 22, 2017 at 11:48 PM, wrote: > Hello are there any example vagrant files that can be shared for > configuring Windows Server 2016 on hyper-v? I do not have a problem > creating the box as

Re: [vagrant-up] Unable to connect to vagrant container from a remote machine

2017-06-22 Thread Alvaro Miranda Aguilera
Hello. from this: Kindly help in being able to ping to the vagrant container from remote machine By default containers in docker have a private IP that exists only between the VM (in this case) and the docker container. The docker way to expose services is exposing ports, either on a random

Re: [vagrant-up] Way to set user/password for bridge network

2017-06-22 Thread Alvaro Miranda Aguilera
Hello Not that I am aware included on vagrant. So my suggestion would be. 1. configure the network to not configure the guest: config.vm.network "public_network", auto_config: false 2. Use a shell script to all this configuration. To avoid having passwords on the script, you can use

Re: [vagrant-up] .bat file not running on guest machine while vagrant provision

2017-06-22 Thread Alvaro Miranda Aguilera
Hello If the guest is windows, please open a new session and run that command. It should give the same error. Vagrant is just sharing the error here, you need to have a valid script so vagrant can run it. Alvaro. On Thu, Jun 22, 2017 at 8:08 AM, Mayank Suthar wrote:

Re: [vagrant-up] .sh file not working while vagrant provision

2017-06-22 Thread Alvaro Miranda Aguilera
share Vagrantfile and the script. The scripts are meant to be run, if the script doesn't show output, then is ok to not show output. Vagrant will copy the file, set execution and run it. Alvaro. On Thu, Jun 22, 2017 at 8:11 AM, Mayank Suthar wrote: > Hi all, > > While

Re: [vagrant-up] Allow ssh(scp) to another VM

2017-06-21 Thread Alvaro Miranda Aguilera
Hello sure, let me share some information. If you want to use the vagrant private key, you need to tell vagrant to not replace it. add config.ssh.insert_key = false vagrant destroy vagrant up and you should be able to ssh as vagrant user using the private key. Alvaro. On Tue, Jun 20, 2017

Re: [vagrant-up] Allowing ssh connection between VM

2017-06-21 Thread Alvaro Miranda Aguilera
did reply to the other thread On Tue, Jun 20, 2017 at 6:33 PM, wrote: > Vagrant version > > Vagrant 1.9.5 > Host operating system > > Windows 7 Ultimate > Guest operating system > > Debian 8 > > I have several machine that seeks to connect by ssh to one specific >

Re: [vagrant-up] How To Access Local Email on Linux Guest From Windows Host

2017-06-21 Thread Alvaro Miranda Aguilera
hello not a vagrant question, but I would try to help. in email / SMTP speak you can try: - email relay. That the linux box send all the email to the windows email server - put an email server on linux, are 2 different servers. SMTP is to send email to the next server, you need a pop/IMAP

Re: [vagrant-up] Is it possible to install angular2 cli inside a vagrant box?

2017-06-19 Thread Alvaro Miranda Aguilera
Hello. Can you run the commands manually as the vagrant user and see how it goes? By default Vagrant will run the provisioning scripts under root using sudo you can add ,privileged: false to stop that. Alvaro. On Sat, Jun 17, 2017 at 4:17 PM, Cedric Gaines < cedricgai...@gainestechnology.com>

Re: [vagrant-up] See existing directories in a Vagrant Machine

2017-06-19 Thread Alvaro Miranda Aguilera
ogramns running > on the guest machine > > Cheers > JD > > On Friday, 16 June 2017 14:06:53 UTC+1, Alvaro Miranda Aguilera wrote: >> >> Hello >> >> The way I do it is, copy the content to a temporary folder. Mount, and >> then copy. >> >> Once the

Re: [vagrant-up] See existing directories in a Vagrant Machine

2017-06-16 Thread Alvaro Miranda Aguilera
Is there a way to do it the over way? > > Cheers > Jd > > On Thursday, 15 June 2017 07:45:53 UTC+1, Alvaro Miranda Aguilera wrote: >> >> Hello. >> >> synced_folder will mount in the guest a folder from the host. >> >> Alvaro >> >>

Re: [vagrant-up] System requirements for Vagrand

2017-06-15 Thread Alvaro Miranda Aguilera
what are the specs for cpu y memory for your host computer? In the documentation is an example on how to limit the resources given to the vm. By default, the vm will be created as its defined on the base image, so if you are limited in resources, the best will be limit cpu (cores) and ram

Re: [vagrant-up] See existing directories in a Vagrant Machine

2017-06-15 Thread Alvaro Miranda Aguilera
Hello. synced_folder will mount in the guest a folder from the host. Alvaro Virusvrij. www.avast.com

Re: [vagrant-up] Re: Issue in ‘Winrm’ while ‘Vagrant Provision’

2017-06-13 Thread Alvaro Miranda Aguilera
hi no attachment. Alvaro. On Tue, Jun 13, 2017 at 11:47 AM, Mayank Suthar wrote: > Kindly find the attached Vagrantfile for your reference. > > Thank you. > > On Tuesday, 13 June 2017 12:23:35 UTC+5:30, Mayank Suthar wrote: >> >> I am beginner at Vagrant and created

Re: [vagrant-up] Issue in ‘Winrm’ while ‘Vagrant Provision’

2017-06-13 Thread Alvaro Miranda Aguilera
Whats your Vagrantfile ? On Tue, Jun 13, 2017 at 7:53 AM, Mayank Suthar wrote: > I am beginner at Vagrant and created windows base box which is completely > installed. > > For creating windows box i referred link 'http://huestones.co.uk/node/305 > '. > > 'vagrant up' cmd

Re: [vagrant-up] Re: vagrant resume runs Ansible provider most unexpectedly

2017-06-12 Thread Alvaro Miranda Aguilera
Hello The issue you reference was fixed on 1.8.3 (June 10, 2016) So you can install the version available on the vagrant website to be up to date Alvaro On Mon, Jun 12, 2017 at 10:16 AM, wrote: > > Meanwhile, more thorough googling revealed https://github.com/mitchellh/

Re: [vagrant-up] Vagrant up fails - Permission denied

2017-06-11 Thread Alvaro Miranda Aguilera
Hello On windows, try disabling the Anti Virus if present. There is something that is not allowing your user to write to that path. is Noor the user you are currently using? as in, logged in? Thanks Alvaro On Sun, Jun 11, 2017 at 3:47 PM, NOOR Coder wrote: > I am facing

Re: [vagrant-up] Having issue with Vagrant I cant install any Vagrantbox

2017-06-07 Thread Alvaro Miranda Aguilera
hello are you on a network that requires proxy or something ? please share the following output vagrant version vagrant plugin list mkdir precise64 vagrant init -m hashicorp/precise64 vagrant up if there are still erros, then: set VAGRANT_LOG=debug vagrant up and share the verbose output,

Re: [vagrant-up] Re: How to Change a Downloaded Box to Be a Fixed Size VM ?

2017-06-07 Thread Alvaro Miranda Aguilera
Vagrant use case is for this. Take a base box and create a VM used for development or prototyping. Dynamic allow have a big disk that uses little space, so will fit more use cases The important is the code (your app) and not the vm. Vm are disponsable. If what you need is have a running VM,

Re: [vagrant-up] Provisioning scripts always run twice?

2017-06-07 Thread Alvaro Miranda Aguilera
On Wed, Jun 7, 2017 at 12:02 AM, Paul Hoffman wrote: > Vagrant.configure("2") do |config| > config.vm.box = "main" > config.vm.provision "shell", path: "run_at_start.sh" > end > Hello It shouldn't. So I will suggest. 1. check with a different box, ie

Re: [vagrant-up] Re: How to Change a Downloaded Box to Be a Fixed Size VM ?

2017-06-07 Thread Alvaro Miranda Aguilera
Peter Whats the box you are using today and whats the current size and what the size you need? I think will be quicker if I create a packer project, upload the vagrant box for you. Expanding can be done online after the new disk has been created, but shrinking will be harder and will require

Re: [vagrant-up] Re: How to Change a Downloaded Box to Be a Fixed Size VM ?

2017-06-06 Thread Alvaro Miranda Aguilera
Hello Peter So this is how vagrant + virtual box works today. I wasn't able to find any feature request open, so as time permit, could you open an issue on github, and share some information on why this is a good feature? https://github.com/mitchellh/vagrant/issues Thanks Alvaro -- This

Re: [vagrant-up] Can't ping from win10 computer to ubuntu 14.04

2017-06-06 Thread Alvaro Miranda Aguilera
frame:0 > TX packets:8 errors:0 dropped:0 overruns:0 carrier:0 > collisions:0 txqueuelen:0 > RX bytes:672 (672.0 B) TX bytes:672 (672.0 B) > > > On Tuesday, June 6, 2017 at 1:53:52 PM UTC+3, Alvaro Miranda Aguilera > wrote: >> >&g

Re: [vagrant-up] Issue with connecting to internet with ubuntu

2017-06-06 Thread Alvaro Miranda Aguilera
Is this a Vm created with Vagrant ? can you share the Vagrantfile? Thanks Alvaro On Tue, Jun 6, 2017 at 2:32 PM, cris croslobski wrote: > Hi, > > I have a strange thing > > I create guest VM virtualbox ubuntu 14.04 lts computer, and can connect > via ssh and ping it

Re: [vagrant-up] Can't ping from win10 computer to ubuntu 14.04

2017-06-06 Thread Alvaro Miranda Aguilera
works for me: *==> default: Setting hostname...* *==> default: Configuring and enabling network interfaces...* *==> default: Mounting shared folders...* default: /vagrant => /Users/kikitux/Dropbox (Personal)/local/kikitux/ping *0* kikitux ~/Dropbox/local/kikitux/ping* (master)* $ ping -c2

Re: [vagrant-up] Re: How to Change a Downloaded Box to Be a Fixed Size VM ?

2017-06-06 Thread Alvaro Miranda Aguilera
I am afraid not on Virtualbox. On vmware the VM gets created on the project folder by default. Alvaro. On Tue, Jun 6, 2017 at 11:36 AM, wrote: > it's really rather simple: > > in my Vagrantfile, I create at least one VM. I want to specify the local > path on the host

Re: [vagrant-up] Re: How to Change a Downloaded Box to Be a Fixed Size VM ?

2017-06-06 Thread Alvaro Miranda Aguilera
Vagrant for me is not to touch the VB GUI... > > So, are you saying a custom path for each VM created by Vagrant can not be > set inside the Vagrantfile ? > > Thanks ! > > On Monday, June 5, 2017 at 11:37:31 PM UTC-7, Alvaro Miranda Aguilera > wrote: >> >> For Virtual

Re: [vagrant-up] Re: How to Change a Downloaded Box to Be a Fixed Size VM ?

2017-06-06 Thread Alvaro Miranda Aguilera
For Virtualbox, Vagrant will create the VM on the default path defined for Virtualbox. Usually is Home_dir/VirtualBox VMs You can change that in Virtualbox gui, preferences. Alvaro. On Tue, Jun 6, 2017 at 4:23 AM, wrote: > Also, how can I change the location path of

Re: [vagrant-up] How to Change a Downloaded Box to Be a Fixed Size VM ?

2017-06-06 Thread Alvaro Miranda Aguilera
Hello. Assuming you are using Vagrant with Virtualbox, yes is doable. However you need to do some work on the following order Filesystem Partition Disk If you can came up with the commands you want vagrant to run, then you can include it on the Vagrantfile. On Tue, Jun 6, 2017 at 4:12 AM,

Re: [vagrant-up] bug - vagrant 1.9.4 and 1.9.5 cannot handle spaces in a vm.name

2017-06-05 Thread Alvaro Miranda Aguilera
ruby on windows have the limitation. so vagrant have the limitation, Alvaro. On Mon, Jun 5, 2017 at 7:56 PM, Vince Skahan wrote: > > Vagrant 1.9.4 and 1.9.5 cannot handle spaces in the name of a virtual > machine. > > This is on windows 7 pro, with the latest Virtual

Re: [vagrant-up] Vagrant 1.9.5 & VMware Workstation 12.5.6 - Networks not coming up

2017-06-05 Thread Alvaro Miranda Aguilera
Hello Can you send an email to support @ hashicorp.com ? Thanks alvaro -- This mailing list is governed under the HashiCorp Community Guidelines - https://www.hashicorp.com/community-guidelines.html. Behavior in violation of those guidelines may result in your removal from this mailing list.

Re: [vagrant-up] "up" fails but then the VM is up and running

2017-06-04 Thread Alvaro Miranda Aguilera
hello vagrant version vagrant plugin list host os ? it seems is somethinng between virtualbox and the router not giving dhcp since wlan doesn't seem to support promisc if i manually do ifconfig eth1 up i get dhcov6 and ipv6 just fine if i do dhclient -4 -d eth1 no joy more info here:

Re: [vagrant-up] Lost connections to Virtualbox VM's when I connect to VPN

2017-06-03 Thread Alvaro Miranda Aguilera
right? How is vagrant itself doing it? > > > > On Saturday, June 3, 2017 at 7:15:11 AM UTC-4, Alvaro Miranda Aguilera > wrote: >> >> Hello >> >> VPN unfortunately is something need to be discussed with the network >> people. >> >> Since they

Re: [vagrant-up] Lost connections to Virtualbox VM's when I connect to VPN

2017-06-03 Thread Alvaro Miranda Aguilera
Hello VPN unfortunately is something need to be discussed with the network people. Since they can configure to route all the traffic ovet the VPN, and therefore your host can't see the guest. If you check the routing table before/after VPN, you should be able to see whats been modified. >From

Re: [vagrant-up] Re: Synced folder - maybe I'm not understanding how it works.

2017-06-02 Thread Alvaro Miranda Aguilera
Hi You can ask all the question you have, feel free to send more :D www will be local where your Vagrantifle is, like included in the project. If you want to share that other path then try config.vm.synced_folder "C:/mysyncedfolder", "/usr/rails_projects/ DevcampPortfolio" If you can do

Re: [vagrant-up] Not able to reload or provision the vagrant box - getting below error

2017-06-02 Thread Alvaro Miranda Aguilera
Hello There is not much information to understand. if you can destroy and try again, will help to see if there is something going on, or it was a one time thing. If you could share the Vagrantfile, will help to see what kind of VM + setup do you have there, If you could run: vagrant halt

Re: [vagrant-up] Port Forwarded not working, exahausted possible solutions

2017-06-01 Thread Alvaro Miranda Aguilera
If there is nothing running on the port then nonthing will show up in the browser. in the netstat you did share was nothing there. So, lets say you start an up on port 8080 on the guest and you make the port fwd from 8181 in the host. if you do on the guest netstat -anp | grep 8080 you should

Re: [vagrant-up] Can't get shared folder on Guest VM

2017-05-31 Thread Alvaro Miranda Aguilera
probably was vagrant-vbguest plugin. I think the best will be you add a new share folder to see if that work. Since I am not sure if the current setup will be using virtualbox shared folder, or rsync or other way. Alvaro. On Thu, Jun 1, 2017 at 12:05 AM, Bobby Walters

Re: [vagrant-up] Port Forwarded not working, exahausted possible solutions

2017-05-31 Thread Alvaro Miranda Aguilera
0 ::1:5432:::*LISTEN > 1261/postgres > udp0 0 0.0.0.0:68 0.0.0.0:* > 1022/dhclient > udp6 0 0 ::1:33490 ::1:33490 > ESTABLISHED > 1261/postgres > > > > On Wednesday,

Re: [vagrant-up] Port Forwarded not working, exahausted possible solutions

2017-05-31 Thread Alvaro Miranda Aguilera
can you share: output of: vagrant ssh-config and from the guest sudo netstat -anp | grep 1125 On the windows, open one powershell session, not sure available on windows 8 but try: tnc localhost -p 4567 share output Thanks Alvaro On Wed, May 31, 2017 at 10:33 PM, French Fry

Re: [vagrant-up] Is there a complete list of variables for Vagrantfiles?

2017-05-31 Thread Alvaro Miranda Aguilera
Hello So will be some part in core vagrant and then the implementation on the provider/guest so will be all over different places. ie: https://github.com/mitchellh/vagrant/blob/9c299a2a357fcf87f356bb9d56e18a037a53d138/plugins/kernel_v1/config/vm.rb#L55-L66 What are you after? In terms of what

Re: [vagrant-up] Vagrant not creating / configuring host networks

2017-05-30 Thread Alvaro Miranda Aguilera
hello seems thats from the host. Can you share the same from the guest? Also a full repo to run vagrant up on our side will help to troubleshoot. Alvaro. On Tue, May 30, 2017 at 7:25 PM, John Harris wrote: > Not a big user of Vagrant so maybe doing / expecting something

Re: [vagrant-up] Hooks

2017-05-29 Thread Alvaro Miranda Aguilera
Hello Check the chef plugin as example it allows delete before destroy. https://github.com/mitchellh/vagrant/blob/9c299a2a357fcf87f356bb9d56e18a037a53d138/plugins/provisioners/chef/provisioner/chef_client.rb#L36-L44 in the documentation check cleanup:

Re: [vagrant-up] what is cloudimg-console.log?

2017-05-26 Thread Alvaro Miranda Aguilera
tualbox/Vagrantfile > ). > > I don't want this log file created in my local directory. I have no clue, > who I can ask to comment those lines ( I guess those are just for debugging > purposes?). > > Thanks, > Kiru > > > > > > > > > Am Donnerstag,

Re: [vagrant-up] Vagrant Google Plugin issues

2017-05-25 Thread Alvaro Miranda Aguilera
Hello That error happen when none of these is set: config.google_key_location config.google_json_key_location which from the readme is this file: google.google_json_key_location = "/path/to/your/private-key.json" can you check you have that file and the path is good? Alvaro On Wed, May 24,

Re: [vagrant-up] Placing extra disk image next to rest of VirtualBox files?

2017-05-25 Thread Alvaro Miranda Aguilera
this "way better"? > > I'd really like to just use the official bento image and as it uses LVM it > is very easy to work with. Only problem is this. > > > > On Wednesday, May 24, 2017 at 12:30:10 PM UTC+2, Alvaro Miranda Aguilera > wrote: >> >> Hello

Re: [vagrant-up] what is cloudimg-console.log?

2017-05-25 Thread Alvaro Miranda Aguilera
virtualbox" do |vb| > vb.customize [ "modifyvm", :id, "--uart1", "0x3F8", "4" ] > vb.customize [ "modifyvm", :id, "--uartmode1", "file", > File.join(Dir.pwd, "ubuntu-xenial-16.04-cloudimg-console.log&q

Re: [vagrant-up] Placing extra disk image next to rest of VirtualBox files?

2017-05-24 Thread Alvaro Miranda Aguilera
Hello Way better you create your own box with the size and soft you require. check packer.io tool create VM, and this repo for example: https://github.com/cbednarski/packer-ubuntu Thanks Alvaro. On Tue, May 23, 2017 at 3:45 PM, Thorbjørn Ravn Andersen < thorbjo...@gmail.com> wrote: > I have

Re: [vagrant-up] PHP Storm: Vagrant command works, but start ssh doesn't

2017-05-22 Thread Alvaro Miranda Aguilera
What does happen with the instructions of jetbrains? https://confluence.jetbrains.com/display/PhpStorm/Working+with+Advanced+Vagrant+features+in+PhpStorm#WorkingwithAdvancedVagrantfeaturesinPhpStorm-1.Usingthebuilt-inSSHterminaltoconnecttotheVagrantmachine On Mon, May 22, 2017 at 11:37 AM,

Re: [vagrant-up] Where is apache.conf?

2017-05-18 Thread Alvaro Miranda Aguilera
Hello You need to install the package first ie apt-get update apt-get install -y httpd (not sure the right name) Alvaro On Thu, May 18, 2017 at 11:14 AM, realtebo wrote: > I'm looking at this web page: https://www.vagrantup. > com/docs/synced-folders/virtualbox.html >

Re: [vagrant-up] How does one use vagrant and work in a team —

2017-05-17 Thread Alvaro Miranda Aguilera
On Wed, May 17, 2017 at 9:58 PM, Simon Lafrenière < simon.lafrenier...@gmail.com> wrote: > I will soon start working with a team. I would like to prepare to work > with a team in a new set up but I'm not sure what would be best. Any > suggestion ? > We all have our own computers but a centralized

Re: [vagrant-up] Vagrant + Homestead + HyperV

2017-05-17 Thread Alvaro Miranda Aguilera
Hello If you try our box, hashicorp/precise64 do you get any issues? If Vagrant is working fine and you are on current version, I would suggest to open a issue in that repo go see if they can help better. Thanks Alvaro. On Wed, May 17, 2017 at 10:10 PM, Dacian Bujor

Re: [vagrant-up] I am New to Vagrant: default: Warning: Host appears down. Retrying...

2017-05-17 Thread Alvaro Miranda Aguilera
Hello. Please send an email to supp...@hashicorp.com and include your Vagrantfile. Thanks Alvaro. On Wed, May 17, 2017 at 8:34 PM, Mrchongnoi Noi wrote: > Sorry if this issue as been addressed before. I was not able to find > suitable solutions. > > Below is the output

Re: [vagrant-up] How does one use vagrant and work in a team —

2017-05-17 Thread Alvaro Miranda Aguilera
Hello. does your team have a current workflow? how its? Does your team have hardware to run a VM on each developer laptop, or you want a VM centralized? Do want VM at all? Alvaro On Wed, May 17, 2017 at 7:21 PM, Simon Lafrenière < simon.lafrenier...@gmail.com> wrote: > Hi, > > How does one

Re: [vagrant-up] how to simulate network with firewall?

2017-05-17 Thread Alvaro Miranda Aguilera
On Wed, May 17, 2017 at 5:32 PM, wrote: > NOT run a provisioner, but boot from an ISO hello NOT run a provisioner, but boot from an ISO this part is doable but not easy. so i would suggest try to get that working first. as an example check this

Re: [vagrant-up] Vagrant VM Provider Config + SSH Forwarding = Error?

2017-05-17 Thread Alvaro Miranda Aguilera
hello please share the full vagrant file On Wed, May 17, 2017 at 7:22 AM, Tyson Trautmann wrote: > Relative Vagrant and Ruby newb here. I'm trying to enable SSH forwarding > from my Windows machine to my Vagrant created Ubuntu VM. My Vagrantfile has > some provider specific

Re: [vagrant-up] Vagrant + Homestead + HyperV

2017-05-17 Thread Alvaro Miranda Aguilera
hello can you share your vagrantfile ? and the output of vagrant status? it seems is using hyperv but trying virtualbox shared folder, that should be modified to use smb i think for windows -> hyperv. Alvaro On Tue, May 16, 2017 at 7:33 PM, Dacian Bujor wrote: > Hi, i

Re: [vagrant-up] [ANN] Vagrant 1.9.5

2017-05-16 Thread Alvaro Miranda Aguilera
 On Tue, May 16, 2017 at 3:59 AM, Chris Roberts wrote: > Hi everyone, > > I'm pleased to announce the release of Vagrant 1.9.5. This release > contains a number of bug fixes, improvements, and some new features. Two > notable changes in this release are the introduction

Re: [vagrant-up] I need help to fix a problem

2017-05-15 Thread Alvaro Miranda Aguilera
l suggestion welcomed. > > Thank you again ! > > — Simon > > Le 15 mai 2017 à 16:35, Alvaro Miranda Aguilera <kiki...@gmail.com> a > écrit : > > mkdir precise64 > cd precise64 > vagrant init -m hashicorp/precise64 > vagrant up > > > -- > This maili

Re: [vagrant-up] I need help to fix a problem

2017-05-15 Thread Alvaro Miranda Aguilera
> An error occurred while downloading the remote file. The error > message, if any, is reproduced below. Please fix this error and try > again. > > Couldn't open file /Users/.../base > > > > > Le 15 mai 2017 à 15:55, Alvaro Miranda Aguilera <kiki...@gmail.com>

Re: [vagrant-up] I need help to fix a problem

2017-05-15 Thread Alvaro Miranda Aguilera
what error you see? On Mon, May 15, 2017 at 9:48 PM, Simon Lafrenière < simon.lafrenier...@gmail.com> wrote: > Hi, > > I'm new here. > > I have updated and reinstalled the softwares but now I get problems with > boxes in terminal because of some remaining config I could not delete. It > used to

Re: [vagrant-up] vagrant installation error

2017-05-15 Thread Alvaro Miranda Aguilera
Hello The error doesn't say much. any chance you can reinstall? Do uninstall for Vagrant, after that remove c:\Hashicorp\Vagrant and .vagrant.d on your home directory. Then, reinstall, and please, after install you are asked to reboot, please do this step. Thanks alvaro. On Mon, May 15, 2017

Re: [vagrant-up] problem with my vagrant installation.

2017-05-14 Thread Alvaro Miranda Aguilera
agrant/c > >li.rb:75:in `block (2 levels) in help' > > > do you have any idea what this message means and why it does not work on > my laptop? > > i am using windows 8 > > thanks you > > > > On Saturday, May 13, 2017 at

Re: [vagrant-up] Re: On vagrant up, ERR 404 for Err http://security.ubuntu.com lucid-security/main Packages 404 Not Found [IP: 91.189.91.23 80]

2017-05-14 Thread Alvaro Miranda Aguilera
hi windows doesnt have a ssh.exe program you need to install one, and make it available to PATH. the easies way is if you install msysgit, and using the bash shell you run vagrant from there. I am sorry if all this is difficult, so let me help you a bit. install this:

Re: [vagrant-up] problem with my vagrant installation.

2017-05-13 Thread Alvaro Miranda Aguilera
On Sat, May 13, 2017 at 3:56 PM, 'paul kendal' via Vagrant < vagrant-up@googlegroups.com> wrote: > ant-share-1.1.7 Hello Can you reinstall? Uninstall then delete C:/HashiCorp/Vagrant/ and .vagrant.d on your home, Thanks Alvaro. -- Alvaro -- This mailing list is governed under the

Re: [vagrant-up] Re: On vagrant up, ERR 404 for Err http://security.ubuntu.com lucid-security/main Packages 404 Not Found [IP: 91.189.91.23 80]

2017-05-11 Thread Alvaro Miranda Aguilera
Hello. Open virtualbox, create a vm manually, put the iso, install the OS, reboot, etc, and test is a VM inside virtualbox, without vagrant works. This will tell you your host + virtualbox works, since this is a pre-requirement for vagrant. For 2. the idea is. create a VM using

Re: [vagrant-up] Vagrant (1.9.4) and VirtualBox (5.1.22): E_FAIL (0x80004005) and VBoxHardening ExitCode=0xc0000005

2017-05-11 Thread Alvaro Miranda Aguilera
Hello The easiest way to troubleshoot will be comment all out and leave the bare minimum and test if the box works at all. >From there, start uncommenting settings one by one and do a vagrant reload to test all is fine. I di a test and seems the issue is on VM goes from template to mybox, and

Re: [vagrant-up] vagrant plugin install virtualbox error

2017-05-10 Thread Alvaro Miranda Aguilera
Hello welcome to the mailing list for your error, there is no plugin called virtualbox. vagrant requires a virtualizator (hypervisor) if you want to use vagrant with virtualbox, please go to the virtualbox download page and check the instructions. once virtualbox and vagrant is installed,

Re: [vagrant-up] Idempotent / conditional vbx.customize ["storagectl"] ??

2017-05-10 Thread Alvaro Miranda Aguilera
Hello You can create a control file for each node, and use that for your work. pseudo code. if file doesn't exists do the sata thing create the file end in ruby would be. unless File.file?("node1.txt") vbx.customize ["storagectl", :id, "--name", "SATAController", "--add", "sata"]

Re: [vagrant-up] Restarting host machine always corrupts save file?

2017-05-09 Thread Alvaro Miranda Aguilera
Does this happen if you use Virtualbox without Vagrant? not sure where you are using snapshots or state file. Alvaro -- This mailing list is governed under the HashiCorp Community Guidelines - https://www.hashicorp.com/community-guidelines.html. Behavior in violation of those guidelines may

<    2   3   4   5   6   7   8   9   10   11   >