0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 3 years have passed since last update.

Vagrant upしたらBluetoothイヤホンの音がおかしくなった時

Posted at

作成日:2020/05/27

発生環境

MacOS:macOS 10.15.5
Vagrant:2.2.9
VirtualBox:6.1.8
CentOS:7

現象

YouTubeを見ながらvagrant upをしたところ
Bluetooth接続のイヤホンの音声出力がおかくしくなった
イヤホンを起動し直すと音は元に戻ったが、またすぐにおかしくなった。
音は出ているがノイズが酷く左右の音声バランスもおかしくなり
イヤホンの停止・再生、音量操作などリモコンも操作できなくなった
PCを再起動しても治らなかった。
Bluetoothイヤホンをやめて有線イヤホンを使うと問題は起きなかった

原因

Vagrantの不具合ではなくVirtualBoxが原因だったVirtualBox上で使用中のCentOSの設定で
オーディオ出力を有効化にチェックがついていたので外して設定を保存すると
音が戻った!

がしかし、またvvagrant upをすると現象が再発する・・・

対処法

vagrant upを実行した段階でVMのオーディオ設定を無効化にすれば良い

Vagrantfileに以下を追加する

{.line-number}
  config.vm.provider "virtualbox" do |vb|
    vb.customize ["modifyvm", :id, "--audio", "none"]
  end

これによりvagrant upした時のおかしな音声出力は直った

0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?