Ich habe die Anweisungen befolgt und ein Modul geladen, das mit diesem Befehl ein Eingabegerät „Monitor of Null Output“ und ein Ausgabegerät „Null Output“ erstellt:
pactl load-module module-null-sink sink_name=rmd
Das ist nicht das, was ich wollte. Wie entferne ich diese beiden Geräte?
pactl list
zeigt an:
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
Ich habe es versucht
pactl unload-module rmd
pactl unload-module sink_name=rmd
pactl unload-module "Null Output"
alle antworten mit:
Failed to unload module: Module Null Output not loaded
usw.
Ich kann es ausführen pactl unload-module module-null-sink
, aber dadurch werden alle mit diesem Modul geladenen Geräte entfernt. Wie entferne ich das Gerät oder entlade das Modul, das das oben angegebene Gerät erstellt hat?
Antwort1
pactl unload-module
gibt einen Hinweis:
You have to specify a module index or name
ebenso wie die Manpage:
unload-module ID|NAME
Unload the module instance identified by the specified numeric
index or unload all modules by the specified name.
Die ID wird in dieser Zeile angezeigt ( pactl list
):
Owner Module: 24
Lauf einfach
pactl unload-module 24
um die jeweiligen Geräte zu entfernen.