I am not sure about prevision64 box, but other two boxes I used, both have guest addition installed.
|
CentOS 7 x64 (Minimal, Shrinked, Guest Additions 4.3.26) (Monthly updates) |
VirtualBox |
437 |
|
|
CentOS 7.1 x64 (Minimal, Puppet 4.2.3, Guest Additions 4.3.30)[notes] |
VirtualBox |
Copy https://github.com/CommanderK5/packer-centos-template/releases/download/0.7.1/vagrant-centos-7.1.box |
576 |
Also, I have VBoxGuestAdditions.iso in my virtualbox directory.
-------------------
C:\vagrant\vbox>dir "\Program Files\Oracle\VirtualBox"\*.iso
Volume in drive C is OSDisk
Volume Serial Number is 1E1D-0BBC
Directory of C:\Program Files\Oracle\VirtualBox
11/10/2015 06:02 PM 59,002,880 VBoxGuestAdditions.iso
1 File(s) 59,002,880 bytes
0 Dir(s) 340,745,592,832 bytes free
Also, I used these boxes previously and had no issues at all.
As you saw, I now even have issue with prevision64 box.
To answer the questions you raised
--
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.
GitHub Issues: https://github.com/mitchellh/vagrant/issues
IRC: #vagrant on Freenode
---
You received this message because you are subscribed to the Google Groups "Vagrant" group.
To unsubscribe from this group and stop receiving emails from it, send an email to vagrant-up+...@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/vagrant-up/6eae14c7-e01d-42f2-91f6-ae7824496481%40googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/vagrant-up/41016650-fff8-4ea1-bd77-e6322c41bcb7%40googlegroups.com.
e1000 0000:01:03.0: eth0: Detected Tx Unit Hang Tx Queue <0> TDH <bd> TDT <bd> next_to_use <bd> next_to_clean <73>
Thanks

Alvaros-Mini:t kikitux$ mkdir kiran
Alvaros-Mini:t kikitux$ cd kiran
Alvaros-Mini:kiran kikitux$ vagrant init -m hashicorp/precise64
A `Vagrantfile` has been placed in this directory. You are now
ready to `vagrant up` your first virtual environment! Please read
the comments in the Vagrantfile as well as documentation on
`vagrantup.com` for more information on using Vagrant.
Alvaros-Mini:kiran kikitux$ vagrant up --provider=virtualbox
Bringing machine 'default' up with 'virtualbox' provider...
==> default: Importing base box 'hashicorp/precise64'...
==> default: Matching MAC address for NAT networking...
==> default: Checking if box 'hashicorp/precise64' is up to date...
==> default: Setting the name of the VM: kiran_default_1449228244214_84829
==> default: Clearing any previously set network interfaces...
==> default: Preparing network interfaces based on configuration...
default: Adapter 1: nat
==> default: Forwarding ports...
default: 22 (guest) => 2222 (host) (adapter 1)
==> default: Booting VM...
==> default: Waiting for machine to boot. This may take a few minutes...
default: SSH address: 127.0.0.1:2222
default: SSH username: vagrant
default: SSH auth method: private key
default: Warning: Remote connection disconnect. Retrying...
default:
default: Vagrant insecure key detected. Vagrant will automatically replace
default: this with a newly generated keypair for better security.
default:
default: Inserting generated public key within guest...
default: Removing insecure key from the guest if it's present...
default: Key inserted! Disconnecting and reconnecting using new SSH key...
==> default: Machine booted and ready!
==> default: Checking for guest additions in VM...
default: The guest additions on this VM do not match the installed version of
default: VirtualBox! In most cases this is fine, but in rare cases it can
default: prevent things such as shared folders from working properly. If you see
default: shared folder errors, please make sure the guest additions within the
default: virtual machine match the version of VirtualBox you have installed on
default: your host and reload your VM.
default:
default: Guest Additions Version: 4.2.0
default: VirtualBox Version: 5.0
==> default: Mounting shared folders...
default: /vagrant => /Users/kikitux/Downloads/t/kiran
Alvaros-Mini:kiran kikitux$
Then the Virtualbox GUI looks like this:

At this point you may be asking of the nice windows where you can type commands directly on the VM, that will be covered in B2
Alvaros-Mini:kiran kikitux$ vagrant ssh
Welcome to Ubuntu 12.04 LTS (GNU/Linux 3.2.0-23-generic x86_64)
* Documentation: https://help.ubuntu.com/
New release '14.04.3 LTS' available.
Run 'do-release-upgrade' to upgrade to it.
Welcome to your Vagrant-built virtual machine.
Last login: Fri Dec 4 11:28:44 2015 from 10.0.2.2
vagrant@precise64:~$ logout
Connection to 127.0.0.1 closed.
Alvaros-Mini:kiran kikitux$
Alvaros-Mini:kiran kikitux$ vagrant ssh-config
Host default
HostName 127.0.0.1
User vagrant
Port 2222
UserKnownHostsFile /dev/null
StrictHostKeyChecking no
PasswordAuthentication no
IdentityFile /Users/kikitux/Downloads/t/kiran/.vagrant/machines/default/virtualbox/private_key
IdentitiesOnly yes
LogLevel FATAL
Alvaros-Mini:kiran kikitux$
Alvaros-Mini:kiran kikitux$ ssh -p 2222 -l vagrant localhost -i /Users/kikitux/Downloads/t/kiran/.vagrant/machines/default/virtualbox/private_key
The authenticity of host '[localhost]:2222 ([127.0.0.1]:2222)' can't be established.
ECDSA key fingerprint is SHA256:+zgKqxyYlTBxVO0xtTVGBokreS9Zr71wQGvnG/k2igw.
Are you sure you want to continue connecting (yes/no)? yes
Warning: Permanently added '[localhost]:2222' (ECDSA) to the list of known hosts.
Welcome to Ubuntu 12.04 LTS (GNU/Linux 3.2.0-23-generic x86_64)
* Documentation: https://help.ubuntu.com/
New release '14.04.3 LTS' available.
Run 'do-release-upgrade' to upgrade to it.
Welcome to your Vagrant-built virtual machine.
Last login: Fri Sep 14 06:23:18 2012 from 10.0.2.2
vagrant@precise64:~$ logout
Connection to localhost closed.
B2. Using the GUI.
Here the vagrant way is modify the Vagranfile and Tell Vagrant you want to use the GUI
So you can modify the Vagrantfile from:
Alvaros-Mini:kiran kikitux$ cat Vagrantfile
Vagrant.configure(2) do |config|
config.vm.box = "hashicorp/precise64"
end
TO:
Alvaros-Mini:kiran kikitux$ cat Vagrantfile
Vagrant.configure(2) do |config|
config.vm.box = "hashicorp/precise64"
config.vm.provider "virtualbox" do |v|
v.gui = true
end
end
Alvaros-Mini:kiran kikitux$
Then, reload the VM
vagrant reload
and Vagrant will give you the GUI console you were after:

Vagrant.configure(2) do |config|
config.vm.box = "hashicorp/precise64"
config.vm.provider "virtualbox" do |v|
v.gui = true
end
config.vm.network "private_network", type: "dhcp"
config.vm.network "public_network"
end
Then vagrant reload
More information and options available here:
https://docs.vagrantup.com/v2/
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.
GitHub Issues: https://github.com/mitchellh/vagrant/issues
IRC: #vagrant on Freenode
---
You received this message because you are subscribed to the Google Groups "Vagrant" group.
To unsubscribe from this group and stop receiving emails from it, send an email to vagrant-up+...@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/vagrant-up/24c1b4a6-b383-4c73-a267-79aff4136458%40googlegroups.com.