9
9

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 5 years have passed since last update.

Dockerコンテナ上でサウンドデバイスを使って音を鳴らしたい

Posted at

前提

  • Linux
  • OSS(Open Sound System)を使う

#手順

ホスト上でOSSを有効化する

この辺を参考にしました。
http://hidefumi-h.blog.so-net.ne.jp/2014-05-09

docker run コマンド実行

  • /dev/dspをマウントする
  • デフォルトではデバイスへの書き込みは制限されているようなので、特権モードで起動する

こんなコマンドになる

docker run -it --privileged --volume /dev/dsp:/dev/dsp:rw centos/centos6 /bin/bash

注意事項

  • /dev/ごとマウントするとその他諸々のパーミッションやらが上書きされてホストで色々問題が出るのでやらない方が良い(一回やってしまったw)

まとめ

  • Dockerコンテナ上でホストのデバイスを使うことは可能
  • 権限周り要注意
  • 他のデバイスを使いたいときにも応用できそう
9
9
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
9
9

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?