Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Change vagrant box #2191

Merged
merged 3 commits into from
Dec 29, 2019
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions etc/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
.vagrant/
2 changes: 1 addition & 1 deletion etc/Vagrantfile
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ VAGRANTFILE_API_VERSION = "2"

Vagrant.configure(VAGRANTFILE_API_VERSION) do |config|
config.vm.define "IncludeOS" do |config|
config.vm.box = "ubuntu/bionic64"
config.vm.box = "bento/ubuntu-18.04"
config.vm.provider :virtualbox do |vb|
vb.name = "IncludeOS"
end
Expand Down
4 changes: 4 additions & 0 deletions etc/install_on_vagrant.sh
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,10 @@ export LC_ALL="en_US.UTF-8"
sudo tee -a /etc/environment > /dev/null << EOT
LC_ALL="en_US.UTF-8"
EOT

# disable the libssl reboot prompting
echo '* libraries/restart-without-asking boolean true' | sudo debconf-set-selections

#Install clang, nasm, cmake, qemu and bridge-utils
sudo apt install -y clang nasm cmake qemu bridge-utils

Expand Down
4 changes: 2 additions & 2 deletions etc/vagrant.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,10 @@
================================================

## Getting started with IncludeOS development on Vagrant
To get started with IncludeOS development on a Vagrant, you should install Vagrant and virtualbox as instructed.
To get started with IncludeOS development on a Vagrant, you should install Vagrant and virtualbox (or VMware) as instructed.

* [Install Vagrant](https://www.vagrantup.com/docs/installation/)
* [Install VirtualBox](https://www.virtualbox.org/manual/UserManual.html#installation)
* [Install VirtualBox](https://www.virtualbox.org/manual/UserManual.html#installation) or [Install VMware](https://www.vmware.com/)

After that clone the IncludeOS repo. This will be the basis for bringing up the Vagrant box.

Expand Down