Skip to content

Instantly share code, notes, and snippets.

@jarek-przygodzki
Created January 15, 2020 09:57
Show Gist options
  • Save jarek-przygodzki/1cba1338897b9f4e77899e216ba65a10 to your computer and use it in GitHub Desktop.
Save jarek-przygodzki/1cba1338897b9f4e77899e216ba65a10 to your computer and use it in GitHub Desktop.
Vagrant Ubuntu Cloud image slow boot due to missing ttyS0 (uartmode1 not set to a log file in virtualbox)
See https://bugs.launchpad.net/cloud-images/+bug/1829625
A workaroud
config.vm.provider 'virtualbox' do |v|
v.customize ["modifyvm", :id, "--uart1", "0x3F8", "4"]
v.customize ["modifyvm", :id, "--uartmode1", "file", "./ttyS0.log"]
end
@stdevel
Copy link

stdevel commented Jan 31, 2020

Works like a charm, thanks for sharing!

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment