#insmod — Public Fediverse posts
Live and recent posts from across the Fediverse tagged #insmod, aggregated by home.social.
-
OSS alsa fun
I typed in
alsamixer -c2because one of my audio interfaces suddenly had only output on one of the two channels.As a rule, in Linux and any other Open Source OS, you don't reboot like a moronic end user, to fix a problem:
- troubleshoot the problem
- Isolate the problem
- when hardware relation is established
- check which kernel module needs to be flused
rmmod mod_nameinsmod mod_name- read the man-page for the kernel_mod
I executed the above steps (stepping over the kernel mod slush) and came in the alsamixer to see that there finally is a massive update to the alsamixer for this interface
What I needed to do is pull one fader up in the mixer and get the audio balance again. As a bonus I can now balance the output of the device in alsamixer, instead of on the rack-mount instrument mixer in my effects rack.
sources:
man alsamixer
man rmmod
man insmod