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-09 Thread Alvaro Miranda Aguilera
hello please move one step at the time, since I am not sure what works, what doesnt. Please confirm. You did install virtualbox. - Can you create a VM? - Does it boot? You did install Vagrant. - Confirm you did reboot after install if on windows. - Did you try hashicorp/precise32, start this

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

2017-05-09 Thread Alvaro Miranda Aguilera
hello how do you reboot the box? how to reproduce this? if you can share a detailed set of instructions to reproduce this, i think will be easier to understand. thanks On Tue, May 9, 2017 at 6:08 PM, Robert Lee wrote: > Without fail, anytime I'm SSH'd into my box and my

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-08 Thread Alvaro Miranda Aguilera
On Mon, May 8, 2017 at 10:29 AM, שביט גור wrote: > vagrant box add base http://files.vagrantup.com/lucid32.box; Hello this is not right: vagrant box add base http://files.vagrantup.com/lucid32.box use vagrant box add hashicorp/precise32 vagrant init -m

Re: [vagrant-up] SSH - Permission denied (publickey).

2017-05-05 Thread Alvaro Miranda Aguilera
Hello If you want to login from ther machine, you should do what you would in a normal server. a. Set a password to the user. b. add the public key of the ssh key of the remote user. No need to share the private key with all the machines. You can also create your own pair of ssh key, add the

Re: [vagrant-up] Vagrant and VirtualBox use repo from Windows 10 machine

2017-05-05 Thread Alvaro Miranda Aguilera
Hello Ensure the Virtualbox Guest additions is installed. Pre-requirements and commands are on the virtualbox documentation. Alvaro On Fri, May 5, 2017 at 3:24 PM, Scot Schlinger wrote: > Hi All, > > Somewhat new to Vagrant and VirtualBox. > > I am running Vagrant 1.8.5,

Re: [vagrant-up] vagrant up ssh authentication fail

2017-05-04 Thread Alvaro Miranda Aguilera
If you can share: Vagrantfile for review. Output of Vagrant up log it will help to see what you see Alvaro On Thu, May 4, 2017 at 2:26 AM, Sagar Rayudu wrote: > I'm using vagrant 1.9.4 > When I'm doing vagrant init ubuntu/trusty64 >

Re: [vagrant-up] on vagrant up command receive a defect: 'block 2 level in run'

2017-05-03 Thread Alvaro Miranda Aguilera
wrote: > Dear Alvaro, > I receive the msg: > dotlock, this mean it is failed? > see attached > > On Wednesday, May 3, 2017 at 4:20:01 PM UTC+3, Alvaro Miranda Aguilera > wrote: >> >> Hello >> >> Screenshots are not good, its missing all the top of the infor

Re: [vagrant-up] Re: on vagrant up command receive a defect: 'block 2 level in run'

2017-05-03 Thread Alvaro Miranda Aguilera
hashicorp/precise64 is a box made by hashicorp, better to test that box, before using someone else box. just to be sure all works fine. On Wed, May 3, 2017 at 3:23 PM, שביט גור wrote: > What is it empty box? > > On Wednesday, May 3, 2017 at 3:31:39 PM UTC+3, שביט גור wrote:

Re: [vagrant-up] on vagrant up command receive a defect: 'block 2 level in run'

2017-05-03 Thread Alvaro Miranda Aguilera
Hello Screenshots are not good, its missing all the top of the information. Try with an empty box. mkdir precise64 cd precise64 vagrant init -m hashicorp/precise64 vagrant up if this fails do vagrant halt set VAGRANT_LOG=debug vagrant up and share a gist.github.com with all the verbose

Re: [vagrant-up] Creating Dynamic hostname

2017-05-03 Thread Alvaro Miranda Aguilera
try something like this: Vagrant.configure("2") do |config| File.open("hostname.txt", "w") {|f| f.write("dummy-ngs-#{SecureRandom.random_number()}")} unless File.file?("hostname.txt") hostname = File.read("hostname.txt") config.vm.hostname = hostname config.vm.box =

Re: [vagrant-up] vagrant installation on windows 8

2017-05-02 Thread Alvaro Miranda Aguilera
Hello After Vagrant install, did you reboot the machine? I would suggest reinstall Vagrant, reboot. And then try: mkdir precise32 cd precise32 vagrant init -m hashicorp/precise32 vagrant up if there is any error do vagrant halt set VAGRANT_LOG=debug vagrant up and share the verbose output

Re: [vagrant-up] Creating Dynamic hostname

2017-05-02 Thread Alvaro Miranda Aguilera
Hello Not sure about mac, but you can use: SecureRandom.random_number(9) Adjust the number of digits. Alvaro On Tue, May 2, 2017 at 5:34 PM, Abhishek Verma wrote: > Hi All, > > I am trying to setup a Vagrant machine with dynamic hostname. > > I can setup

Re: [vagrant-up] Unable to create a machine - An unknown error happened in Vagrant OpenStack provider

2017-04-28 Thread Alvaro Miranda Aguilera
Hello Any chance you can try to reach the ppl that did the plugin you are using? It seems openstack is not a core plugin for vagrant: https://www.vagrantup.com/docs/providers/ Alvaro On Fri, Apr 28, 2017 at 9:49 AM, wrote: > Hello, > > something is broken and it's

Re: [vagrant-up] unable to vagrant up with newly created box from packer

2017-04-28 Thread Alvaro Miranda Aguilera
On Fri, Apr 28, 2017 at 9:54 AM, Jungsuk Lee wrote: > vagrant up > here is an error is not a bug. by default, vagrant will use virtualbox. 2 options. one, use vagrant up --provider aws two, add this to your project. config.vm.provider "aws" Alvaro. -- Alvaro

Re: [vagrant-up] Cygwin, Vagrant and Windows 10

2017-04-28 Thread Alvaro Miranda Aguilera
Hello, Looks like the home directory from cygwin is being set to C:/Documents and Settings and the process is failing to create directories there. Can you open cmd.exe, go to your home directory, cd into .vagrant.d and get the full path. Then, on Cygwin, set the variable VAGRANT_HOME to this

Re: [vagrant-up] Best way to install ansible-galaxy requirements when using the Ansible Local provisioner?

2017-04-27 Thread Alvaro Miranda Aguilera
in Chef, when people want to use chef server, same for puppet of any service like spacewalk for authenticated os updated, a bootstraping is required. Did you try the galaxy commands available? it seems per the documentation that will run before the actual playbook: example i found

Re: [vagrant-up] Best way to install ansible-galaxy requirements when using the Ansible Local provisioner?

2017-04-26 Thread Alvaro Miranda Aguilera
Hello Perhaps you can avoid the vagrant ansible run, and use just an script that run ansible local ? Alvaro On Wed, Apr 26, 2017 at 2:55 PM, WowSuchMagic wrote: > We are using the Ansible Local provisioner to install the required > software on our development

Re: [vagrant-up] Vagrant up not working

2017-04-25 Thread Alvaro Miranda Aguilera
Hello it seems you are trying to start a vm using a base box (template) named Tom2/current and seems there is no local box with that name, is trying to download one from atlas with that name, however that box doesnt exists, thats why you get the error. Couple of options. 1. Use a box that

Re: [vagrant-up] I do not understand how to update Vagrant

2017-04-25 Thread Alvaro Miranda Aguilera
Hello bash on ubuntu on windows, as the WSL? If you install vagrant on the host windows, and you have Virtualbox there, it will work. Can you explain what do you want to do? inside bash, you can install Vagrant, but you won't be able to run Virtualbox, whats your plan there? Thanks Alvaro On

[vagrant-up] Re: vagrant plugin install chef fails under macOS 10.12.4

2017-04-23 Thread Alvaro Miranda Aguilera
Hello! Not a problem. Feel free to share a minimal github repo or vagrant file for people coming in the future, so they can see how this looks. Thanks! Alvaro. -- This mailing list is governed under the HashiCorp Community Guidelines - https://www.hashicorp.com/community-guidelines.html.

Re: [vagrant-up] Apache failed to read custom folders under /var/www

2017-04-22 Thread Alvaro Miranda Aguilera
y we have setup our own > vagrant box to be distributed amongst all our devs. If we cannot replicate > the box, then surely it defeats the purpose of keeping the dev as > standardized as possible as our production machines especially if every > kernel updates will break the vbguest addi

Re: [vagrant-up] vagrant plugin install chef fails under macOS 10.12.4

2017-04-21 Thread Alvaro Miranda Aguilera
Hello couple of clarifications. when you run vagrant plugin install, you are using the ruby embedded with vagrant. when you want to install a vagrant plugin, they usually have vagrant-, ie vagrant-share vagrant plugin install vagrant-share the above command will install a gem that is a

Re: [vagrant-up] what is the CLI command that will enable me to see what packages are installed with a vagrant box

2017-04-20 Thread Alvaro Miranda Aguilera
; > thanks for kind help > > > On Thursday, April 20, 2017 at 2:38:30 PM UTC+1, Alvaro Miranda Aguilera > wrote: >> >> Hello >> >> I think your script is incomplete >> >> it should include the destination file for the echo and should end with >&g

Re: [vagrant-up] what is the CLI command that will enable me to see what packages are installed with a vagrant box

2017-04-20 Thread Alvaro Miranda Aguilera
Hello I think your script is incomplete it should include the destination file for the echo and should end with SCRIPT So in overall the steps are: install the packages, done i would suggest check first the owner (numeric) for the /var/www folder and create a new mount point ie

Re: [vagrant-up] Apache failed to read custom folders under /var/www

2017-04-19 Thread Alvaro Miranda Aguilera
he VagrantFile here https://github.com/ > BlimpDigital/abox-lamp > > It's just a standard centos 7 minimal install with a LAMP script running > on top. > > /var/www (guest) points to /web folder (host). > > I haven't uploaded the Vagrant Boxes anywhere though but i'm assumi

Re: [vagrant-up] Apache failed to read custom folders under /var/www

2017-04-18 Thread Alvaro Miranda Aguilera
Hello Can you share a repro project to have a look ? Thanks Alvaro On Tue, Apr 18, 2017 at 6:28 PM, MnEmOnIcS wrote: > Hello, > > Apache is not reading custom folders under /var/www when the machine is > booting up. It's throwing this error: > > >>> > ● httpd.service -

Re: [vagrant-up] Re: Error with vagrant 1.9.3 and virtualbox "Renaming the Windows guest failed. Most often this is because you've specified a FQDN instead of just a host name."

2017-04-16 Thread Alvaro Miranda Aguilera
hat they properly complete.> > ERROR vagrant: Chef never successfully completed! Any errors should be > visible in the > output above. Please fix your recipes so that they properly complete. > ERROR vagrant: /opt/vagrant/embedded/gems/gems/vagrant-1.9.3/plugins/ > provisioners/chef/provisione

Re: [vagrant-up] SMB Credentials

2017-04-16 Thread Alvaro Miranda Aguilera
Hello the user and pass are required on the guest to mount the shared folder from the host. Alvaro On Sun, Apr 16, 2017 at 2:56 PM, William McKenzie wrote: > When mounting SMB shares (especially the default, local share), why not > use the credentials of the logged

Re: [vagrant-up] Re: Error with vagrant 1.9.3 and virtualbox "Renaming the Windows guest failed. Most often this is because you've specified a FQDN instead of just a host name."

2017-04-16 Thread Alvaro Miranda Aguilera
Hello If you remove the hostname from Vagrant and try to setup it manually or with chef, does that work? As in, are you able to winrm after the hostname has been changed? -- This mailing list is governed under the HashiCorp Community Guidelines -

Re: [vagrant-up] vagrant download is not availabl

2017-04-15 Thread Alvaro Miranda Aguilera
On Sat, Apr 15, 2017 at 9:24 PM, שביט גור wrote: > in my internet)... > > Then I tried in Explorer browser and receive this error: "The program is > not commonly downloaded and could harm your computer". > seems your browser or anti virus are being too agressive --

Re: [vagrant-up] Re: Error with vagrant 1.9.3 and virtualbox "Renaming the Windows guest failed. Most often this is because you've specified a FQDN instead of just a host name."

2017-04-15 Thread Alvaro Miranda Aguilera
uot;Write-Host Hello World" > > config.vm.provision "shell", inline: "(Get-UICulture).Calendar | > ConvertTo-Json" > > end > > Now I am confused :(. My setup is, there is a PowerShell script which > renames the VM. AFter renaming Chef Provisioning ta

Re: [vagrant-up] Re: Error with vagrant 1.9.3 and virtualbox "Renaming the Windows guest failed. Most often this is because you've specified a FQDN instead of just a host name."

2017-04-15 Thread Alvaro Miranda Aguilera
-15T16:33:21+01:00] INFO: > Chef-client pid: 2240 > ==> win001: [2017-04-15T16:33:21+01:00] INFO: Chef-client pid: 2240 > DEBUG winrmshell: [WinRM] Waiting for output... > > It seems to me winrm is not working at all. I am trying some more. > > Regards, > > > > On

Re: [vagrant-up] Re: Error with vagrant 1.9.3 and virtualbox "Renaming the Windows guest failed. Most often this is because you've specified a FQDN instead of just a host name."

2017-04-15 Thread Alvaro Miranda Aguilera
Hello When I wrote my previous mail i dd a typo, sorry winrm is NOW part of vagrant core, that changed so in old version and some plugins the wayt you setup stuff may be different this works for me Vagrant.configure("2") do |config| config.vm.box = "ferventcoder/win2008r2-x64-nocm"

Re: [vagrant-up] Nested VMs on public cloud provider

2017-04-14 Thread Alvaro Miranda Aguilera
when you spin a vm in virtualbox, inside the vm what do you do? i think you install virtualbox, right? on AWS you are using XEN, so virtualbox wont run nested VMS in the cloud is not something that will work since the hw capability is not available to you if you are having linux guest, perhaps

Re: [vagrant-up] Re: see in browser from domain(set hosts file) but not see the file in Mac(I search all Mac for index.php and nothing

2017-04-14 Thread Alvaro Miranda Aguilera
lsepolis...@gmail.com> wrote: > >> >> config.vm.synced_folder "src/", "/srv/website" >> >> vagrantfile Not exist this? how then to share a folder in Mac ? Can >> be missing this line and share folder be in from config.yaml...? >&g

Re: [vagrant-up] Interact with AWS S3 on Vagrant Host Machine

2017-04-14 Thread Alvaro Miranda Aguilera
Hello Not sure if you want to pull a db everytime you want to create a project, what about creating a new base box? with packer you can build a box, and run shell-local provisioner that will run in the host. For vagrant, you can check into vagrant-triggers plugin, and run on the host some

Re: [vagrant-up] can I package box but not halt status vm, that is, in suspend status

2017-04-14 Thread Alvaro Miranda Aguilera
Hello I do suspend and then package I get this $ vagrant package *==> default: Discarding saved state of VM...* so not sure what box or state you will get. The box should be provisioned only on the first time, and if you want to skip the provision on the export you have 2 options. 1. run

Re: [vagrant-up] Trying to get Laravel Homestead to work with Vagrant and considering buying VMWare to do it -- need some advice

2017-04-14 Thread Alvaro Miranda Aguilera
Hello Vagrant core is the open source program. It works fine for boxes, and the overall user experience is quite easy. Hashicorp only provides the boxes under hashicorp organization in atlas, so in this case the box you are having issues is not a hashicorp box. having said that, one option is

Re: [vagrant-up] Re: Error with vagrant 1.9.3 and virtualbox "Renaming the Windows guest failed. Most often this is because you've specified a FQDN instead of just a host name."

2017-04-14 Thread Alvaro Miranda Aguilera
get into latest vagrant version do vagrant plugin list remove all plugin other than vagrant share do vagrant plugin update try again winrm is not part of core vagrant, so maybe having the old plugin and the new version cause issues Alvaro On Fri, Apr 14, 2017 at 5:58 PM, athreya vc

Re: [vagrant-up] Automatically Install Plugins

2017-04-14 Thread Alvaro Miranda Aguilera
official reply: https://github.com/mitchellh/vagrant/issues/5035 example that works: required_plugins = { 'vagrant-alpine' => '~>0.0', } needs_restart = false required_plugins.each do |name, version| unless Vagrant.has_plugin? name, version system "vagrant plugin install #{name}

Re: [vagrant-up] Re: see in browser from domain(set hosts file) but not see the file in Mac(I search all Mac for index.php and nothing

2017-04-11 Thread Alvaro Miranda Aguilera
> > > > On Tuesday, April 11, 2017 at 3:49:40 PM UTC+3, Alvaro Miranda Aguilera > wrote: >> >> HELLO >> >> So, Say _YOU_ want to have a shared folder, then you can update the >> project to include that: >> >> /var/www/awesome/web -> web >

Re: [vagrant-up] Re: see in browser from domain(set hosts file) but not see the file in Mac(I search all Mac for index.php and nothing

2017-04-11 Thread Alvaro Miranda Aguilera
HELLO So, Say _YOU_ want to have a shared folder, then you can update the project to include that: /var/www/awesome/web -> web ie https://puphpet.com/#vagrantfile-local On Tue, Apr 11, 2017 at 10:28 AM, LSE wrote: > NEEDED MODIFY (about shared folders)

Re: [vagrant-up] Time out during vagrant out

2017-04-11 Thread Alvaro Miranda Aguilera
Hello Error shows you need to check your computer manual, confirm your CPU is able to run 64bit OS, and enable those extension from the message. Check the computer manual for Intel VT. Alvaro -- This mailing list is governed under the HashiCorp Community Guidelines -

Re: [vagrant-up] Time out during vagrant out

2017-04-10 Thread Alvaro Miranda Aguilera
Hello 1.Can you create and start VMs without vagrant? 2.please open virtualbox, stop and start manually the box that vafrant created, works? Alvaro On Mon, Apr 10, 2017 at 6:52 PM, jayashree sridhar wrote: > I am trying to start vagrant but getting following

Re: [vagrant-up] how to use php CLI (command line interface) when using a vagrant box

2017-04-07 Thread Alvaro Miranda Aguilera
On Fri, Apr 7, 2017 at 12:27 PM, 'paul kendal' via Vagrant < vagrant-up@googlegroups.com> wrote: > try vagrant ssh cd /vagrant mkdir test cd test echo ' ' > testing.php php testing.php Alvaro. -- Alvaro -- This mailing list is governed under the HashiCorp Community Guidelines -

Re: [vagrant-up] How do I package a Vagrant box with custom Vagrant file (public network, RAM settings, etc.)?

2017-04-07 Thread Alvaro Miranda Aguilera
hello All the values of the base box, except the network should remain. Vagrant will delete the network and create one nat for the first network, this is the vagrant way. If you include a Vagrantfile in the box, your network will be the 2nd and so on. You can include options on the box in a

Re: [vagrant-up] vagrant linux host (fedora 25): windows 2008 guest

2017-04-07 Thread Alvaro Miranda Aguilera
Thanks. 1. Please remove all the plugins other than vagrant-share vagrant plugin list vagrant plugin uninstall 2. Install a more upto date version of vagrant, 1.9.3 3. do vagrant plugin update 4. check versions, and confirm no other plugin are installed vagrant version vagrant plugin list

Re: [vagrant-up] vagrant-vsphere / Adding new drive

2017-04-05 Thread Alvaro Miranda Aguilera
Hello Vagrant core doesn't have this capability. Not sure if the plugin you are using have this capability. If doesn't then the best is assume it cant. In the vmware world you should be able to connect manually and add a disk to the template, not sure from memory if you need to deploy / edit /

Re: [vagrant-up] vagrant linux host (fedora 25): windows 2008 guest

2017-04-05 Thread Alvaro Miranda Aguilera
plaintext > An error occurred executing a remote WinRM command. > > Shell: powershell > Command: $ProgressPreference='SilentlyContinue'; > hostname > if ($?) { exit 0 } else { if($LASTEXITCODE) { exit $LASTEXITCODE } else { > exit 1 } } > Message: uninitialized constant Wi

Re: [vagrant-up] vagrant linux host (fedora 25): windows 2008 guest

2017-04-05 Thread Alvaro Miranda Aguilera
> exit 1 } } > Message: uninitialized constant WinRM::WinRMWebService > Did you mean? WinRM::WinRMWMIError > [mikecali@fedora-pc session-1.windows]$ > > On Wed, Apr 5, 2017 at 8:07 PM, Alvaro Miranda Aguilera <kiki...@gmail.com > > wrote: > >> this works for me using that b

Re: [vagrant-up] Can not install Vagrant on Mac 10.11.6

2017-04-05 Thread Alvaro Miranda Aguilera
I just installed it now. and worked fine Can you check the signature of the file? Can you confirm the download url? On Wed, Apr 5, 2017 at 10:27 AM, Takashi Yanagihara < yanagihara.taka...@gmail.com> wrote: > I attempt to install Vagrant on Mac and downloaded dmg file. When clicking > the

Re: [vagrant-up] vagrant linux host (fedora 25): windows 2008 guest

2017-04-05 Thread Alvaro Miranda Aguilera
this works for me using that box Vagrant.configure("2") do |config| config.vm.box = "ferventcoder/win2008r2-x64-nocm" config.winrm.username = "vagrant" config.winrm.password = "vagrant" config.vm.communicator = "winrm" config.vm.guest = :windows config.vm.network

Re: [vagrant-up] Can't install plugin Vagrant 1.9.3

2017-04-04 Thread Alvaro Miranda Aguilera
On Tue, Apr 4, 2017 at 10:55 AM, Omar Quiroz wrote: > vagrant-hostupdater Hello missing one s in the name vagrant plugin install vagrant-hostsupdater -- Alvaro -- This mailing list is governed under the HashiCorp Community Guidelines -

Re: [vagrant-up] Re: Missing IdentityFile in vagrant ssh-config?

2017-04-03 Thread Alvaro Miranda Aguilera
SSH authentication, but your > Vagrant environment is configured to use only password-based > authentication. > Please configure your Vagrantfile with a private key to use this > feature. > > Note that Vagrant can automatically insert a keypair and use that > keypair for you. Ju

Re: [vagrant-up] Vagrant up configure/enable network interfaces fails

2017-04-03 Thread Alvaro Miranda Aguilera
Hello Thanks for this update can you open an issue on github for this? https://github.com/mitchellh/vagrant/issues Will be ideal if you can test if the same happens with a centos7 box? so we can test and reproduce this easily thanks! Alvaro On Mon, Apr 3, 2017 at 9:41 PM,

Re: [vagrant-up] Re: Missing IdentityFile in vagrant ssh-config?

2017-04-03 Thread Alvaro Miranda Aguilera
On Mon, Apr 3, 2017 at 8:26 PM, wrote: > root@127.0.0.1's password: can we step couple of step back? are you using root for this? is not good practice in general what do you want to do with this custom ssh? If you use the known ssh key pair, vagrant will generate one

Re: [vagrant-up] How syncing host folders successfully?

2017-04-03 Thread Alvaro Miranda Aguilera
Alvaro. On Mon, Apr 3, 2017 at 4:10 PM, Francesco Zucca <francesco.zu...@unipv.it> wrote: > Alvaro, > > here the Vagrantfile with nfs active and rsync (commented) I used for > precise64 > and the links to github debugs > vagrant_nfs.log > https://gist.github.com/fra

Re: [vagrant-up] Missing IdentityFile in vagrant ssh-config?

2017-04-03 Thread Alvaro Miranda Aguilera
Hello The key is to be used by vagrant to ssh into the box password less when you created this box, before packaging, were you able to ssh using this key as vagrant user? How are you adding this parameter to Vagrantfile, and what you mean you manually setup the keys? the public key should be

Re: [vagrant-up] CentOS5 guest private_network being set to DHCP on first boot

2017-04-03 Thread Alvaro Miranda Aguilera
harryhoud...@gmail.com> wrote: > Well, why is the ifcfg-eth1 set to DHCP when it first boots? Shouldn't > vagrant set the file to be static? That's the issue. > > On Sun, Apr 2, 2017 at 3:53 AM, Alvaro Miranda Aguilera <kiki...@gmail.com > > wrote: > >> >

Re: [vagrant-up] How syncing host folders successfully?

2017-04-03 Thread Alvaro Miranda Aguilera
osuid,nodev) > /dev/sda1 on /boot type ext2 (rw) > rpc_pipefs on /run/rpc_pipefs type rpc_pipefs (rw) > > > Any hints? > > thank > fz > > > > 2017-03-31 18:17 GMT+02:00 Alvaro Miranda Aguilera <kiki...@gmail.com>: > >> hello >> >> try

Re: [vagrant-up] Problems when using vmware_fusion and docker providers together

2017-04-02 Thread Alvaro Miranda Aguilera
hello can you create a github repo with just a simple ubuntu:latest to see if we can get this working? when we get soemthing that work, we can move to a more complex one Thanks Alvaro On Wed, Mar 29, 2017 at 3:54 PM, nick alexander wrote: > Hi Alvaro, thanks fro

Re: [vagrant-up] I'm getting "The box 'hashicorp/precise64' could not be found" when I know the box exists

2017-04-02 Thread Alvaro Miranda Aguilera
Hello where you are do you need to use a proxy ? Can you run this from a command line and share the output C:\HashiCorp\Vagrant\embedded\bin\curl.exe -IL https://atlas.hashicorp.com/hashicorp/precise64 C:\HashiCorp\Vagrant\embedded\bin\curl.exe -L

Re: [vagrant-up] How to create ssh user other than 'vagrant'.

2017-04-02 Thread Alvaro Miranda Aguilera
when you run vagrant up vagrant requires either: a user and a pass to connect and configure the vm a known ssh key to connect if you create your vm, you can create a different user and include a Vagrantfile with the information to ssh in, ie config.ssh.username = mynewuser On Fri, Mar 31,

Re: [vagrant-up] Any video tutorial run Vagrant with Fusion Pro 8 for Mac?

2017-04-02 Thread Alvaro Miranda Aguilera
yes email support and ask questions or ask for a refund thanks Alvaro On Fri, Mar 31, 2017 at 7:59 PM, LSE <lsepolis...@gmail.com> wrote: > how to get refund in case I have problems ??? contact support[@] > hashicorp.com ? > > > > On Friday, March 31, 2017 at 7:19:51

Re: [vagrant-up] Using `vagrant ssh -c` requires key-based SSH authentication error - Help

2017-04-02 Thread Alvaro Miranda Aguilera
hello Whats the permissions and owner of /root/.ssh/authorized_keys before and after your provision? I will change a bit I think this look more simple echo #{ssh_pub_key} | sudo tee -a /root/.ssh/authorized_keys On Fri, Mar 31, 2017 at 8:38 PM, wrote: > I attempted

Re: [vagrant-up] Re: "vagrant rdp" launches parallels instead of opening my virtualbox vm

2017-04-02 Thread Alvaro Miranda Aguilera
what is the output of vagrant ssh-config ? On Fri, Mar 31, 2017 at 11:15 PM, Pat Farrell wrote: > Below are some commands, and attached are some screenshots. I am on a > mac, trying to "vagrant rdp" to a Windows 10 vm in Virtualbox. Parallels > is launching instead.

Re: [vagrant-up] Error trying to install the hyper-v provider

2017-04-02 Thread Alvaro Miranda Aguilera
gt; On Fri, Mar 31, 2017 at 12:22 PM, Alvaro Miranda Aguilera < > kiki...@gmail.com> wrote: > >> hello >> >> try this >> >> >> mkdir precise64 >> cd precise64 >> vagrant init -m hashicorp/precise64 >> >> vagrant up

Re: [vagrant-up] CentOS5 guest private_network being set to DHCP on first boot

2017-04-02 Thread Alvaro Miranda Aguilera
On Sat, Apr 1, 2017 at 2:27 AM, Scott Berry wrote: > Determining IP Information for eth1... Hello this message: Determining IP Information for eth1... should be read as: Guest os (centos 5,1) is trying to get a dhcp from the network where eth1 is connected. Several

Re: [vagrant-up] Could not locate gemfile

2017-04-02 Thread Alvaro Miranda Aguilera
hello can you describe more what you are doing and how you did install vagrant is this for a vagrant plugin or for a project inside a vm that uses ruby? what problem you have? internet? dns? What you expect to happen? thanks Alvaro. On Sat, Apr 1, 2017 at 4:29 PM, Pawan Sunuwar

Re: [vagrant-up] Error trying to install the hyper-v provider

2017-03-31 Thread Alvaro Miranda Aguilera
tml > > Let me know if I should try it another way. > > -chris > > On Thu, Mar 30, 2017 at 6:30 PM, Alvaro Miranda Aguilera < > kiki...@gmail.com> wrote: > >> hello >> >> from where are you getting those instructions? >> >> ie vagrant.exe

Re: [vagrant-up] Any video tutorial run Vagrant with Fusion Pro 8 for Mac?

2017-03-31 Thread Alvaro Miranda Aguilera
hello there is a 30 days refund period that you can use to test the plugin more info here: www.vagrantup.com/vmware#buy-now Thanks Alvaro. On Fri, Mar 31, 2017 at 10:57 AM, LSE wrote: > How add plugin in Fusion 8.5...? If buy I will get instructions for this > and also

Re: [vagrant-up] How syncing host folders successfully?

2017-03-31 Thread Alvaro Miranda Aguilera
hello try with hashicorp/precise64 if that works, then is something on the VM. not all the boxes have virtualbox additions installed, and try to use other means to sync ie nfs or rsync, that can explain. from the guest can you provide the following outoput sudo mount thanks Alvaro. On Fri,

Re: [vagrant-up] "vagrant rdp" launches parallels instead of opening my virtualbox vm

2017-03-31 Thread Alvaro Miranda Aguilera
hello can you explain more? if you have parallels and want to use virtualbox you can use vagrant up --provider virtualbox on the first start, that way the box will be created with virtualbox you can check whats the default to be used with vagrant status Thanks Alvaro. On Fri, Mar 31, 2017

Re: [vagrant-up] Vagrant up --provision takes 10 hours !

2017-03-30 Thread Alvaro Miranda Aguilera
hello vagrant will do: download a template create a vm based on template run provisioning if you run . vagrant up --no-provision and thats fast, then perhaps the best will be create a new box that include most of provision steps already done time to run will depend on several factors, speed of

Re: [vagrant-up] Any video tutorial run Vagrant with Fusion Pro 8 for Mac?

2017-03-30 Thread Alvaro Miranda Aguilera
last plugin will work with fusion 8.5, 8 and i think older versions too, say fusion 7 On Thu, Mar 30, 2017 at 2:05 PM, LSE wrote: > > plugin is for Fusion... ? adapts in Fusion Pro 8??? > > > On Wednesday, March 29, 2017 at 1:04:51 PM UTC+3, LSE wrote: >> >> Do you offer

Re: [vagrant-up] Error trying to install the hyper-v provider

2017-03-30 Thread Alvaro Miranda Aguilera
hello from where are you getting those instructions? ie vagrant.exe plugin install hyper-v On Thu, Mar 30, 2017 at 3:31 PM, Chris Carmichael < carmichael.ch...@gmail.com> wrote: > Anybody seen this? I did some googling and didn't find anything that > popped out. > > > C:\Users\carmi>

Re: [vagrant-up] virtual box error

2017-03-30 Thread Alvaro Miranda Aguilera
hello did you check virtualbox documentation? https://www.virtualbox.org/wiki/Linux_Downloads check: Debian-based Linux distributions On Thu, Mar 30, 2017 at 8:25 PM, wrote: > Hello I am trying to install virtualbox 5.0.16 but I am having some errors. > Please help me

Re: [vagrant-up] How to set the default owner and group permissions.

2017-03-30 Thread Alvaro Miranda Aguilera
hello by default the provisioner runs inside sudo so 2 options one, use privileged: "false" https://www.vagrantup.com/docs/provisioning/shell.html#privileged or use chmod -R vagrant: in the script On Thu, Mar 30, 2017 at 8:39 PM, Anil J wrote: > Hi, > > While

Re: [vagrant-up] I'm getting "The box 'hashicorp/precise64' could not be found" when I know the box exists

2017-03-30 Thread Alvaro Miranda Aguilera
hello can you enable debug mode ? if on cmd.exe use set VAGRANT_LOG=debug else use export VAGRANT_LOG=debug then try again the command, ie vagrant up share the verbose output generated On Thu, Mar 30, 2017 at 11:42 PM, desbest wrote: > I'm getting "The box

Re: [vagrant-up] Re: Set Size Disk - Vagrant file

2017-03-29 Thread Alvaro Miranda Aguilera
hello if you have a hostpc and you can run vagrant why you need vagrant inside vagrant? can you explain more? i am not sure i understand ver clear what you want to do thanks! alvaro On Wed, Mar 29, 2017 at 5:11 PM, Richard Stone wrote: > Hi Alvaro, > > thanks for

Re: [vagrant-up] Vagrant 1.9.3 .deb claims: "An older version is available in a software channel"

2017-03-29 Thread Alvaro Miranda Aguilera
hello you can install the package with dpkg -i too from the command line the status of the packages is managed by the distro, in this case debian: https://tracker.debian.org/pkg/vagrant not sure why they are on 1.6.5 still, i think is more a question for the package maintainers Alvaro On

Re: [vagrant-up] Set Size Disk - Vagrant file

2017-03-29 Thread Alvaro Miranda Aguilera
hello Vagrant will use a base box, and start from there. There are ways to resize the disk etc but is not very portable. you could do it once and re-package but in the long term is better you create your own box with the size of the disk you require. for this hashicorp have a tool that create

Re: [vagrant-up] Any video tutorial run Vagrant with Fusion Pro 8 for Mac?

2017-03-28 Thread Alvaro Miranda Aguilera
hello Vagrant + virtualbox is included on core vagrant however vagrant for VMWare desktop is available over a paid plugin you can read more here: www.vagrantup.com/vmware#buy-now If you have questions, you can email sa...@hashicorp.com Thanks Alvaro On Tue, Mar 28, 2017 at 8:11 PM, LSE

Re: [vagrant-up] Anything wrong with my port forwarding?

2017-03-28 Thread Alvaro Miranda Aguilera
http reach port 80 https reach port 443 directly on the ip, not using port forward at all the port forward is when you do http://localhost or https://localhost so to be clear you are reaching directly the guest on port 80/443 you can confirm on the guest with netstat -anp | grep -i listen to

Re: [vagrant-up] Vagrant hangs when bringing up hosts in parallel.

2017-03-27 Thread Alvaro Miranda Aguilera
<krist.vanbes...@gmail.com > wrote: > > That helped, > > But did not explain why running in parallel cause the whole vagrant up to > eventually hang somewhere... > > > On Thursday, 23 March 2017 10:03:54 UTC+1, Alvaro Miranda Aguilera wrote: >> >>

Re: [vagrant-up] Vagrant box created locally cannot init on another machine

2017-03-27 Thread Alvaro Miranda Aguilera
On Mon, Mar 27, 2017 at 1:53 PM, Nagaraj Poti wrote: > /Users/sandip/Apps/mb-packer/ubuntu-xenial-16.04-cloudimg-console.log ( > is trying to create that file and probably te directories don't exist: /Users/sandip/Apps/mb-packer/ubuntu-xenial-16.04-cloudimg-console.log Check

Re: [vagrant-up] "vagrant up" has a long delay before proceeding when running behind a VPN w/proxy

2017-03-24 Thread Alvaro Miranda Aguilera
hello Ass this and check if helps: config.vm.box_check_update = false if not, try to setup verbose logging set VAGRANT_LOG=debug or export VAGRANT_LOG=debug and do a Vagrant up on vpn Thanks Alvaro On Fri, Mar 24, 2017 at 9:12 PM, William Saxton wrote: > When I

Re: [vagrant-up] Synced Folders not created

2017-03-23 Thread Alvaro Miranda Aguilera
e", "mysite", "--memory", "2048"] > vb.customize ["modifyvm", :id, "--cpuexecutioncap", "100"] > end > > Thanks for your help! > Chantal > > On Wednesday, 22 March 2017 15:36:37 UTC-4, Alvaro Miranda Aguilera wrote:

Re: [vagrant-up] Vagrant hangs when bringing up hosts in parallel.

2017-03-23 Thread Alvaro Miranda Aguilera
hello did you try this? http://stackoverflow.com/questions/28864603/specify-no-parallel-flag-inside-vagrantfile Virusvrij. www.avast.com

Re: [vagrant-up] Vagrant update to 1.92 timeout after windows update

2017-03-22 Thread Alvaro Miranda Aguilera
t; On Thursday, March 16, 2017 at 3:47:18 PM UTC-4, Alvaro Miranda Aguilera > wrote: >> >> hello >> >> try this >> >> vagrant halt >> >> then go to virtualbox gui, and try to start the vm from there >> >> it may help as will give you more

Re: [vagrant-up] Re: Wrong folder path for default synced vagrant dir for windows 7

2017-03-22 Thread Alvaro Miranda Aguilera
hi, check you are on latest virtualbox 5.1.18 or 5.1.14, it seems there is an issue on .16 Virusvrij. www.avast.com

Re: [vagrant-up] Synced Folders not created

2017-03-22 Thread Alvaro Miranda Aguilera
hello does myfolder exists on the host ? whats the box you are using? Can you share the content of a Vagrantfile present on ~/.vagrant.d/boxesVagrantfile Thanks Virusvrij. www.avast.com

Re: [vagrant-up] Unable to spin up CentOS 7 image

2017-03-21 Thread Alvaro Miranda Aguilera
in this time period I would download Centos 7 image and build VM on > Virtualbox so people would go for vagrant ? > > Kindly note that there is no proxies but direct connection to internet. > > Kind Regards, > Jim > > > On Mon, Mar 20, 2017 at 8:27 PM, Alvaro Miranda Aguile

Re: [vagrant-up] Changing folder permissions on a certain folder in vagrant synced folder path

2017-03-21 Thread Alvaro Miranda Aguilera
check what IP you get on your wifi, and use the IP to test first on the same computer then from other computer in the network if IP fails, check if the Firewall on the computer is on, and try to disable it for a test Alvaro

Re: [vagrant-up] Unable to spin up CentOS 7 image

2017-03-20 Thread Alvaro Miranda Aguilera
On Mon, Mar 20, 2017 at 4:35 AM, Jim Jim wrote: > vagrant init Hello This command is wrong vagrant init should be vagrant init centos/7 However this command is correct: vagrant box add centos/7 but is not able to download the box do you need to setup a

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

2017-03-19 Thread Alvaro Miranda Aguilera
hello it came from the ubuntu/xenial box have a look at the Vagrantfile included in the box HOME/.vagrant.d/boxes/ubuntu-VAGRANTSLASH-xenial64/ i think inside includes is the Vagrantfile Alvaro On Sun, Mar 19, 2017 at 9:30 PM, Joaquin Menchaca wrote: > I was going

Re: [vagrant-up] Changing folder permissions on a certain folder in vagrant synced folder path

2017-03-19 Thread Alvaro Miranda Aguilera
Hello. As long all the devices trying to reach the forwarded port are on the same network, and the network allow guest to guest communication, should be fine. if you could test on a separate network, will help you to confirm this. There is nothing vagrant new version that should stop this from

Re: [vagrant-up] Vagrant update to 1.92 timeout after windows update

2017-03-16 Thread Alvaro Miranda Aguilera
hello try this vagrant halt then go to virtualbox gui, and try to start the vm from there it may help as will give you more information >From vagrant side try this vagrant version vagrant plugin list mkdir precise64 cd precise64 vagrant init -m hashicorp/precise64 set VAGRANT_LOG=debug

Re: [vagrant-up] Changing folder permissions on a certain folder in vagrant synced folder path

2017-03-15 Thread Alvaro Miranda Aguilera
Hello Checking other thread on this same mailing list, it seems there are some issues with 5.1.16 and Windows host can you try VirtualBox 5.1.14 ?? -- This mailing list is governed under the HashiCorp Community Guidelines - https://www.hashicorp.com/community-guidelines.html. Behavior in

Re: [vagrant-up] Changing folder permissions on a certain folder in vagrant synced folder path

2017-03-15 Thread Alvaro Miranda Aguilera
On Tue, Mar 14, 2017 at 2:54 PM, Ap Seh wrote: > *default: SSH auth method: private key* > *==> default: Machine booted and ready!* > If this machine was created before, can you destroy it and do a new vagrant up? vagrant destroy vagrant up --no-provision and please

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