We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
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
When I execute the vagrant up command, the process hangs on:
==> default: Generation complete. ==> default: Setting up libpam-systemd:amd64 (229-4ubuntu17) ... ==> default: Setting up udev (229-4ubuntu17) ... ==> default: addgroup: ==> default: The group `input' already exists as a system group. Exiting. ==> default: update-initramfs: deferring update (trigger activated) ==> default: Setting up libfreetype6:amd64 (2.6.1-0.1ubuntu2.3) ... ==> default: Setting up grub-common (2.02~beta2-36ubuntu3.11) ... ==> default: update-rc.d: warning: start and stop actions are no longer supported; falling back to defaults ==> default: Setting up grub2-common (2.02~beta2-36ubuntu3.11) ... ==> default: Setting up grub-pc-bin (2.02~beta2-36ubuntu3.11) ... ==> default: Setting up grub-pc (2.02~beta2-36ubuntu3.11) ... ==> default:
My Vagrantfile looks like:
# -*- mode: ruby -*- # vi: set ft=ruby : Vagrant.configure("2") do |config| config.vm.box = "bento/ubuntu-16.04" config.vm.hostname = "TestBox" config.vm.network "forwarded_port", guest: 80, host: 8080 config.vm.network "private_network", ip: "192.168.33.10" config.vm.provider "virtualbox" do |v| v.memory = 2048 v.cpus = 2 end config.vm.synced_folder "public", "/var/www", :nfs => { :mount_options => ["dmode=777","fmode=666"] } config.ssh.insert_key = false config.vm.provision "shell", path: "install.sh", privileged: false end
The text was updated successfully, but these errors were encountered:
same here
Sorry, something went wrong.
Solved the problem by running the failing command with by logging in into the machine.
@SerkanYildiz I didn't understand that, would you mind explaining? (I'm noob :P )
Get rid of:
sudo apt-get -y upgrade
Get rid of: sudo apt-get -y upgrade
just add the following before running the upgrade command and it will work: export DEBIAN_FRONTEND=noninteractive
export DEBIAN_FRONTEND=noninteractive
No branches or pull requests
Uh oh!
There was an error while loading. Please reload this page.
When I execute the vagrant up command, the process hangs on:
My Vagrantfile looks like:
The text was updated successfully, but these errors were encountered: