hashicorp / vagrant

Vagrant is a tool for building and distributing development environments.
https://www.vagrantup.com
Other
26.01k stars 4.42k forks source link

[vagrant ssh] CRASH #13381

Open upszot opened 2 months ago

upszot commented 2 months ago

Debug output

Debug_outpu

Expected behavior

connect to the virtual machine

Actual behavior

CRASH

Reproduction information

I raise the VM without problems with "vagrant up" From the VirtualBox terminal I can log in without problems. But with the "vagrant ssh" command it fails with the error described in the output.

Here is a line of the error..
subprocess.rb:163:in `rescue in execute':  (216) (Vagrant::Util::Subprocess::LaunchError

Vagrant version

Vagrant 2.4.1

Host operating system

Windows 11 Pro Versión 10.0.22631 compilación 22631 VirtualBox Versión 7.0.12 r159484 (Qt5.15.2)

Guest operating system

fedora-cloud

Steps to reproduce

vagrant up vagrant ssh

Vagrantfile

Vagrant.configure(2) do |config|
    config.vm.box = "fedora-39-cloud"

    config.vm.provider :virtualbox do |virtualbox|
      #config.vm.box_url = "https://download.fedoraproject.org/pub/fedora/linux/releases/22/Cloud/x86_64/Images/Fedora-Cloud-Base-Vagrant-22-20150521.x86_64.vagrant-virtualbox.box"
      config.vm.box_url = "https://edgeuno-bog2.mm.fcix.net/fedora/linux/releases/39/Cloud/x86_64/images/Fedora-Cloud-Base-Vagrant-39-1.5.x86_64.vagrant-virtualbox.box"
    end

    config.vm.provider :libvirt do |libvirt|
      config.vm.box_url = "https://download.fedoraproject.org/pub/fedora/linux/releases/22/Cloud/x86_64/Images/Fedora-Cloud-Base-Vagrant-22-20150521.x86_64.vagrant-libvirt.box"
      config.vm.box_url = "https://edgeuno-bog2.mm.fcix.net/fedora/linux/releases/39/Cloud/x86_64/images/Fedora-Cloud-Base-Vagrant-39-1.5.x86_64.vagrant-libvirt.box"
    end if Vagrant.has_plugin?('vagrant-libvirt')

  end