Vagrant box error

Asked

Viewed 68 times

0

I’m having a problem with Vagrant when starting the box. When I give a Vagrant up.

See github for errors that occur. https://github.com/thiagohumble/ruby/blob/master/ecanalinfo

Informs that it is outdated and the virtual box is updated, as well as the updated Extension Pack.

After giving Vagrant ssh I cannot view the gemfile to start the server.

1 answer

1


In the log you reported, Vagrant is looking for 32bit packages, but the repository that is configured to update Ubuntu packages provides only 64bit packages.

The next line is what appears in your log that prompts me to think about it:

Failed to fetch http://apt.hellobits.com/dists/trusty/Release  Unable to find expected entry 'main/binary-i386/Packages' in Release file (Wrong sources.list entry or malformed file)

If you download the file indicated in the log URL, you will see that the archive provides only packages main/binary-amd64, but there are no entries main/binary-i386.

Instead of using a 32bit box, use a 64bit. This should solve your problem.

  • Potato, yes that’s right. Thank you Bruno.

Browser other questions tagged

You are not signed in. Login or sign up in order to post.