惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

Google DeepMind News
Google DeepMind News
Apple Machine Learning Research
Apple Machine Learning Research
博客园_首页
爱范儿
爱范儿
让小产品的独立变现更简单 - ezindie.com
让小产品的独立变现更简单 - ezindie.com
罗磊的独立博客
M
MIT News - Artificial intelligence
D
Docker
量子位
T
Tailwind CSS Blog
人人都是产品经理
人人都是产品经理
月光博客
月光博客
有赞技术团队
有赞技术团队
J
Java Code Geeks
A
About on SuperTechFans
P
Proofpoint News Feed
Jina AI
Jina AI
Y
Y Combinator Blog
T
The Blog of Author Tim Ferriss
The GitHub Blog
The GitHub Blog
Microsoft Security Blog
Microsoft Security Blog
V
V2EX
GbyAI
GbyAI
F
Fortinet All Blogs

CachyOS Forum - Latest posts

Ran into a frozen black screen issue with latest update Niri Settings GUI Not Appearing Update to Gnome 50 and I'm getting black/blank screen on NVIDIA with hybrid graphics My JBL Quantum 350 headphones dont play sound 90% of the time on linux while on windows it plays audio 99% of the time Niri/Noctalia Shell notifications Getting a black screen after alt-tabbing too many times Rog-control-center Duplicate keyboard and mouse in system settings? Games running very poorly after first session (semi-solved, still need help though!) Amdgpu random hangs (does cachy perhaps plan to carry patches for this)? A little something. The adj script that replaces GNU fmt for non-ASCII text Mouse scroll wheel issues - ratchet Can't start steam after updates of today (17 April) Balena etcher or ventoy QEMU Bridge setup - Maybe already known but I found it pretty difficult to do and needed much reading Multi-boot install: what do I do about my /boot and /boot/efi partition? Do you collect all the solutions and post them on Wiki or Forum? System update - lts headers invalid or corrupted Sick to death of updates killing my games! I messed up my stuff again and cant download any thing now. error below Got Logitech MX4 with Haptic working in CachyOS Need help with the performance button on my Acer Nitro V16 AI Bailing out, you are at your own Troubles in the Starfield What is so special about the new Linux Kernel 7? "Issue: Display brightness is locked at a low level after waking from sleep on CachyOS (latest update) Balena etcher or ventoy Help with kernel update, emergency mode Issue happening only on wayland Display not recognised - low resolution
USB UM10 Mic connects as USB but not available to use
cachywithnostachy · 2026-05-22 · via CachyOS Forum - Latest posts

I have an JMTek, LLC. UM10 Mic, it is shown in lsusb,

inxi -SA shows this as an audio device as follows:
Device-4: JMTek LLC. UM10 driver: hid-generic,usbhid type: USB

It is not shown in pavucontrol either in input devices or configuration. Has this got the wrong driver i.e. my system is only seeing the mic button and not the audio input?

Any ideas how to get around this?

@ This post is ai generated - your system is currently only recognizing the Human Interface Device (HID) portion of the microphone.

Many USB microphones have two interfaces: one for the actual audio stream, and one for the physical buttons (like a hardware mute switch). Right now, the hid-generic and usbhid drivers are handling the buttons, but the driver responsible for the audio input—snd-usb-audio—is entirely missing from your inxi output.

Normally, a healthy USB mic output in inxi looks like this: driver: hid-generic,snd-usb-audio,usbhid.

Here is how you can force the system to see the audio interface.

1. Manually Load the Audio Module

It’s highly likely the snd-usb-audio kernel module simply didn’t load, or it was masked. You can force it to load manually.

Open your terminal and run:

Bash

sudo modprobe snd-usb-audio

2. Re-plug and Verify

Once the module is loaded, unplug the UM10 microphone and plug it back in so the system initializes it with the new driver available.

Run your inxi command again:

Bash

inxi -SA

Check if snd-usb-audio now appears in the driver list for the UM10. If it does, open pavucontrol and it should now be sitting in your Input Devices tab.

3. Check for Errors (If it still fails)

If snd-usb-audio still refuses to attach after manually loading it, the kernel might be rejecting the audio interface. Unplug the mic, plug it back in, and immediately run this command to read the kernel logs:

Bash

sudo dmesg | tail -n 20

Look for any red or error text regarding USB or audio. Sometimes, plugging the mic into a different USB port (especially a direct motherboard port rather than a hub) resolves weird interface handshake issues!