0

我尝试按照https://bitbucket.org/suunto/movesense-device-lib/src/523308c2b380fcde46d51af9af2f9ed17907ab55/README.md上的本指南“使用 Vagrant 在所有操作系统上自动设置”来使用 vagrant 设置开发环境

但是,我无法下载远程文件。这是错误输出:

~/symbio/suunto-movesense-device-lib-c96b25358d86$ vagrant up
Bringing machine 'default' up with 'virtualbox' provider...
==> default: Box 'ubuntu/artful64' could not be found. Attempting to find and install...
    default: Box Provider: virtualbox
    default: Box Version: >= 0
==> default: Loading metadata for box 'ubuntu/artful64'
    default: URL: https://vagrantcloud.com/ubuntu/artful64
==> default: Adding box 'ubuntu/artful64' (v20180718.0.0) for provider: virtualbox
    default: Downloading: https://vagrantcloud.com/ubuntu/boxes/artful64/versions/20180718.0.0/providers/virtualbox.box
    default: Download redirected to host: cloud-images.ubuntu.com
An error occurred while downloading the remote file. The error
message, if any, is reproduced below. Please fix this error and try
again.

The requested URL returned error: 404 Not Found

我该如何解决这个问题?

使用 Vagrant 2.2.3 和 Debian 9.7

4

1 回答 1

0

这可能是由于 Debian artfull64 停止支持以及从 Ubuntu 服务器上删除了 repo/image 造成的。

尝试更新到更新的 Ubuntu 版本(Xenial 或 Bionic)以获得 LTS,并且不要过早地再次中断构建。

要升级编辑 Vagrant 文件中的 config.vm.box 行:

config.vm.box = 'ubuntu/xenial64'

可以在 vagrant 文档 https://app.vagrantup.com/boxes/search中找到该框的可能候选者

我遇到了类似的问题,并让 Movesense 人员从 zesty 更新到 artful。我还警告他们 artful 将在 2018 年 7 月停止支持,他们应该使用 LTS 版本的 Ubuntu。

主要问题是在其 repo 中获得一个带有“gcc-arm-embedded”包的版本,当时我遇到了这个问题,当时它不在仿生/xenial 中,但现在应该是。

于 2019-02-04T09:26:25.873 回答