How to use this box with Vagrant:
Vagrant.configure("2") do |config|
config.vm.box = "axemanyo10/centos7oraclexe"
config.vm.box_version = "1.0.2"
end
vagrant init axemanyo10/centos7oraclexe \
--box-version 1.0.2
vagrant up
This version was created about 6 years ago.
Centos 7 base box with Oracle XE installed
If 'vagrant up' throws an error like:
Failed to mount folders in Linux guest. This is usually because the "vboxsf" file system is not available. Please verify that the guest additions are properly installed in the guest and can work properly. The command attempted was:
mount -t cifs -o sec=ntlmssp,credentials=/etc/smb_creds_vgt-376be9e1e039a6f27fb33b838fe64794-6ad5fdbcbf2eaa93bd62f92333a2e6e5,uid=1000,gid=1000 //10.241.54.64/vgt-376be9e1e039a6f27fb33b838fe64794-6ad5fdbcbf2eaa93bd62f92333a2e6e5 /vagrant
The error output from the last command was:
mount error(112): Host is down Refer to the mount.cifs(8) manual page (e.g. man mount.cifs)
You can work around this by adding the following to your Vagrantfile:
config.vm.synced_folder ".", "/vagrant", disabled: true