Posts

Showing posts with the label vagrant

Vagrant Setup For Three Node Accumulo Cluster

Vagrant Setup For Three Node Accumulo Cluster Ive put together three github projects (one for each Accumulo version) to start a three-node cluster of Virtual Machines using Virtual Box. They should be easy to adapt to any cloud provider. https://github.com/medined/Accumulo_1_6_0_By_Vagrant https://github.com/medined/Accumulo_1_5_0_By_Vagrant https://github.com/medined/Accumulo_1_4_4_By_Vagrant Let me know if you run into any problems. Or see a way to improve them. download  file  now

Vagrant Ansible trick autoreload

Vagrant Ansible trick autoreload When testing Ansible scripts, its nice to have your Vagrant VM automatically re-provision itself when you change the configuration.  In this way just saving a file lets you see the VM reinstall packages and so forth, with errors appearing immediately. The following runs a tiny reprovisioning script each time your Ansible YAML files change: pip install watchmedo watchmedo shell-command --drop --pattern=*.yml --command=clear; vagrant provision download  file  now

vagrant How to automatically update Guest Additions

vagrant How to automatically update Guest Additions To autmatically update Guest Additions on your vagrant machine you need to install vagrant-vbguest plugin. From the folder with Vagrantfile run the command: vagrant plugin install vagrant-vbguest Next time you start it with vagrant up, Guest Additions will be updated download  file  now

Vagrant on Kali Linux!

Image
Vagrant on Kali Linux!                                               Hey guys in this post ill show you how you can start with vagrant on kali linux! So first of all you need is virtual box, virtual box dkms and linux headers of kali linux so for that purpose run the following command in terminal. Linux headers for kali linux is a dependency of virutal dkms so it will automatically install! After running this go to this Link and download vagrant for debian systems! After this go to the downloads folder and run the following command to install vagrant! this will go and install vagrant in your kali linux! :D Awesome isnt it ? So now just type "vagrant -h" in the terminal to see vagrant! Now as you can see vagrant is working properly in kali linux! So now you can just ...

Vagrant where are ubuntu boxes

Vagrant where are ubuntu boxes http://cloud-images.ubuntu.com/vagrant/ download  file  now

Vagrant Installing Vagrant

Vagrant Installing Vagrant Download VirtualBox and Vagrant Create a directory for your virtual environment mkdir vagrant_env1 cd vagrant_env1 Install your preferred box (Ubuntu 12.04 LTS 64-bit for this example): vagrant init hashicorp/precise64 or vagrant init vagrant box add hashicorp/precise64 You may check this HashiCorps Atlas box catalog for more type of boxes. By the way, a "box" is a base image of an operating system. This enables you to quickly clone a virtual machine rather than starting from scratch, which would be a slow and tedious process. Installing may take some time, but after that, you can re-use this box when you want to create another virtual environment. Now run vagrant up: vagrant up To enter the virtual machine, simply SSH: vagrant ssh download  file  now