当他们要求我下载VirtualBox和流浪汉时,我正在UDACITY上我的关系数据库课程。然后他们给了我一个文件夹。我应该在文件夹中导航,然后运行流浪者,以便下载ubuntu16.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发布于 2017-07-18 13:47:24
您可以手动下载该框文件(通常情况下,流浪者应该保存在~/.vagrant.d/tmp/之前尝试下载的框中,这样它就不应该从0重新启动)
下载完该文件后,需要将该框添加到您的迷航配置中:
$ vagrant box add --name <name of the box> --box-version <version of the box> <downloaded box file>确保您正确命名该框(与从原始Vagrantfile定义该框的方式相同),您可以从下载框的url中选中该框版本
例如,ubuntu/xenial64 64的最新版本是20170717.0.0,因此如果要下载此框,则需要下载此版本。
https://stackoverflow.com/questions/45167945
复制相似问题