бродячая ошибка контрольной суммы при установке рабочего стола linux-mint xfce

Бродячий файл:

# vi: set ft=ruby :

# All Vagrant configuration is done below. The "2" in Vagrant.configure
# configures the configuration version (we support older styles for
# backwards compatibility). Please don't change it unless you know what
# you're doing.
Vagrant.configure("2") do |config|
  config.vm.box = "zenshade/mint64-xfce-20"
  config.vm.box_version = "1.0.0"
  config.vm.hostname="master1"
  config.vm.provider "virtualbox" do |vb|
  #   # Display the VirtualBox GUI when booting the machine
      vb.gui = true
  #
  #   # Customize the amount of memory on the VM:
        vb.memory = 1500
        vb.cpus = 2
        vb.name = "kube-master1"
        if !File.exist?("disk/master1.vdi")
          vb.customize [
            'createhd', 
            '--filename', 'disk/master1', 
            '--format', 'VDI', 
            '--size', 20000
            ] 
        end
  end
end

После запуска я получаю следующую ошибку:

The checksum of the downloaded box did not match the expected
value. Please verify that you have the proper URL setup and that
you're downloading the proper file.

Expected: 5cdefeacdd0259ea666f1112211af306  package.box
Received: 5cdefeacdd0259ea666f1112211af306

Я не понимаю причину ошибки контрольной суммы. Я пытаюсь настроить рабочий стол linux mint xfce. Как я могу сопоставить значение контрольной суммы?


person MD. Ashfaqur Rahman Tahashin    schedule 16.08.2020    source источник


Ответы (1)


для этой проблемы, я думаю, у нас есть только одно решение, которое обновляет контрольную сумму вашего пакета в бродячем облаке до ожидаемой контрольной суммы.

Ожидаемый: 5cdefeacdd0259ea666f1112211af306 package.box Полученный: 5cdefeacdd0259ea666f1112211af306

person Rithik Singh    schedule 04.04.2021