Где я могу поместить флаг $ enable_serial_logging в vagrant? - PullRequest
0 голосов
/ 19 декабря 2018

VM продолжает разгонять мой процессор.Я прочитал, что могу добавить флаг $enable_serial_logging = false, чтобы предотвратить эту проблему, но в какой файл я помещаю его и где?

standard Vagrant file structure

1 Ответ

0 голосов
/ 14 февраля 2019

В config.rb вы можете установить $enable_serial_logging=false

# Log the serial consoles of CoreOS VMs to log/
# Enable by setting value to true, disable with false
# WARNING: Serial logging is known to result in extremely high CPU usage with
# VirtualBox, so should only be used in debugging situations
$enable_serial_logging=false

См. Здесь: https://gist.github.com/dalekurt/5c0dbaf26b96f4504011#file-config-rb-L49

...