我可以手动下载一个 vagrant box 文件并使用它吗?如果是这样,如何?

Can I manually download a vagrant box file and use it? If so , how?

当他们让我下载 VirtualBox 和 vagrant 时,我正在 UDACITY 学习关系数据库课程。然后他们给了我一个文件夹。我应该在文件夹内导航,然后 运行 vagrant up 以便它下载 ubuntu 16.04。我试过了,但每次都因为网速低而被取消。 有什么方法可以让我自己使用 IDM 下载文件,然后自己配置?请 link 我到任何网站或任何可以帮助我的东西。我将 post 下面的 VagrantFile 中的代码

是的,如果有帮助,我会使用 windows 10

# -*- mode: ruby -*-
# vi: set ft=ruby :

Vagrant.configure("2") do |config|
config.vm.box = "bento/ubuntu-16.04-i386"
config.vm.network "forwarded_port", guest: 8000, host: 8000, host_ip: 
"127.0.0.1"
config.vm.network "forwarded_port", guest: 8080, host: 8080, host_ip: 
"127.0.0.1"
config.vm.network "forwarded_port", guest: 5000, host: 5000, host_ip: 
"127.0.0.1"

# Work around disconnected virtual network cable.
config.vm.provider "virtualbox" do |vb|
vb.customize ["modifyvm", :id, "--cableconnected1", "on"]
end

config.vm.provision "shell", inline: <<-SHELL
apt-get -qqy update

# Work around https://github.com/chef/bento/issues/661
# apt-get -qqy upgrade
DEBIAN_FRONTEND=noninteractive apt-get -y -o Dpkg::Options::="--force-
confdef" -o Dpkg::Options::="--force-confold" upgrade

apt-get -qqy install make zip unzip postgresql

apt-get -qqy install python3 python3-pip
pip3 install --upgrade pip
pip3 install flask packaging oauth2client redis passlib flask-httpauth
pip3 install sqlalchemy flask-sqlalchemy psycopg2 bleach requests

apt-get -qqy install python python-pip
pip2 install --upgrade pip
pip2 install flask packaging oauth2client redis passlib flask-httpauth
pip2 install sqlalchemy flask-sqlalchemy psycopg2 bleach requests

su postgres -c 'createuser -dRS vagrant'
su vagrant -c 'createdb'
su vagrant -c 'createdb news'
su vagrant -c 'createdb forum'
su vagrant -c 'psql forum -f /vagrant/forum/forum.sql'

vagrantTip="[35m[1mThe shared directory is located at /vagrant\nTo 
access your shared files: cd /vagrant[m"
echo -e $vagrantTip > /etc/motd

wget http://download.redis.io/redis-stable.tar.gz
tar xvzf redis-stable.tar.gz
cd redis-stable
make
make install

echo "Done installing your virtual machine!"
SHELL
end

您可以手动下载 box 文件(通常 vagrant 应该保存在 ~/.vagrant.d/tmp/ 之前尝试下载 box 的目录下,因此它不应从 0 重新启动)

下载文件后,您需要将盒子添加到您的 vagrant 配置中:

$ vagrant box add --name <name of the box> --box-version <version of the box> <downloaded box file>

确保您正确命名了盒子(与从原始 Vagrantfile 中定义的方式相同)您可以从下载的盒子url中检查盒子版本

例如,ubuntu/xenial64最新版本是20170717.0.0所以如果你要下载这个盒子,你会下载这个版本。