Linux Mint 18.1に含まれるパルスオーディオバージョン8.0サウンドシステム。 linuxmint 17.3にはバージョン4.0があり、/etc/init/pulseaudio.conf
pulsadioが次の行で始まるように設定されたファイルがあります。
start on runlevel [2345]
ファイルのコピーが/etc/init
機能しません。マルチシート構成のため、これが必要です。
答え1
問題はsystem.paにあります。マニュアルでは、システム全体のデーモン構成で自動検出を使用しないでください。
pulseaudioのマニュアルページから:
--disallow-module-loading[=BOOL]
Disallow module loading after startup. This is a security feature since it disallows additional module loading during runtime and on user request. It is highly recommended when --system is used (see above). Note however, that this breaks certain fea‐
tures like automatic module loading on hot plug.
そのため、system.paの対応する行を無効化(コメントアウト)しました。
### Automatically load driver modules depending on the hardware available
#.ifexists module-udev-detect.so
#load-module module-udev-detect
#.else
#### Use the static hardware detection module (for systems that lack udev/hal support)
#load-module module-detect
#.endif
今大丈夫です。