在按照说明操作时,我加载了一个模块,该模块使用以下命令创建输入设备“空输出监视器”和输出设备“空输出”:
pactl load-module module-null-sink sink_name=rmd
这不是我想要的。如何删除这两个设备?
pactl list
显示:
Sink #2
State: IDLE
Name: rmd
Description: Null Output
Driver: module-null-sink.c
Sample Specification: s16le 2ch 48000Hz
Channel Map: front-left,front-right
Owner Module: 24
Mute: no
Volume: front-left: 65536 / 100% / 0.00 dB, front-right: 65536 / 100% / 0.00 dB
balance 0.00
Base Volume: 65536 / 100% / 0.00 dB
Monitor Source: rmd.monitor
Latency: 1569 usec, configured 40000 usec
Flags: DECIBEL_VOLUME LATENCY
Properties:
device.description = "Null Output"
device.class = "abstract"
device.icon_name = "audio-card"
Formats:
pcm
我试过
pactl unload-module rmd
pactl unload-module sink_name=rmd
pactl unload-module "Null Output"
所有这些都响应:
Failed to unload module: Module Null Output not loaded
ETC。
我可以运行pactl unload-module module-null-sink
,但这会删除加载该模块的所有设备。如何删除设备或卸载创建上述指定设备的模块?
答案1
pactl unload-module
给出一个提示:
You have to specify a module index or name
手册页也是如此:
unload-module ID|NAME
Unload the module instance identified by the specified numeric
index or unload all modules by the specified name.
ID 显示在这一行 ( pactl list
) 中:
Owner Module: 24
赶紧跑
pactl unload-module 24
删除相应的设备。