当我们要求我下载VirtualBox和vagrant时,我正在从UDACITY开始我的关系数据库课程。然后他们给了我一个文件夹。我应该在文件夹中导航然后运行vagrant以便下载ubuntu 16.04。我试过了,但每次因为低网速而被取消。 有没有什么办法我可以自己使用IDM自己下载文件然后自己配置?请将我链接到任何可以帮助我的网站或任何内容。我将在下面的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
答案 0 :(得分:3)
您可以手动下载文件夹文件(通常情况下,应该保存在~/.vagrant.d/tmp/
以前的下载尝试框中,因此不应该从0重新启动)
下载完文件后,您需要将该框添加到您的流浪汉配置中:
$ vagrant box add --name <name of the box> --box-version <version of the box> <downloaded box file>
确保正确命名该框(与从原始Vagrant文件中定义的方式相同),您可以从下载框的网址中选中框版本
例如,ubuntu/xenial64最新版本为 20170717.0.0 ,因此,如果您要下载此框,则可以下载此版本。