Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Vagrant stuck on SSH while creating debian12(x86) box on Mac M3 #13581

Open
KartikSareen18 opened this issue Jan 20, 2025 · 0 comments
Open

Vagrant stuck on SSH while creating debian12(x86) box on Mac M3 #13581

KartikSareen18 opened this issue Jan 20, 2025 · 0 comments

Comments

@KartikSareen18
Copy link

KartikSareen18 commented Jan 20, 2025

vagrant up is stuck at SSH connection when launching generic/debian12(x86) box on Mac M3 and after 30 mins it times out while I'm able to launch box with this image generic/ubuntu2204
Can someone pls help in launching debian12 box on mac?

Vagrantfile

Vagrant.configure('2') do |config|
   
  config.vm.define "test" do |test|
    test.vm.hostname = "test"
     
    test.vm.provider "qemu" do |provider,override|
      provider.arch = "x86_64"
      provider.machine = "q35"
      provider.cpu = "max"
      provider.net_device = "virtio-net-pci"
      override.vm.box = "generic/debian12"
      provider.memory = 2048
    end 
  end
end 

Output of vagrant up

Bringing machine 'test' up with 'qemu' provider...
==> test: Checking if box 'generic/debian12' version '4.3.12' is up to date...
==> test: Warning! The QEMU provider doesn't support any of the Vagrant
==> test: high-level network configurations (`config.vm.network`). They
==> test: will be silently ignored.
==> test: Starting the instance...
==> test: Waiting for machine to boot. This may take a few minutes...
    test: SSH address: 127.0.0.1:50022
    test: SSH username: vagrant
    test: SSH auth method: private key
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant