Ubuntu Microphone and Webcam Test Guide

Testing your microphone and webcam in Ubuntu ensures your hardware is properly configured for video calls, streaming, or recording. This guide provides a quick walkthrough of the built-in system settings, terminal commands, and pre-installed applications you can use to verify that both your audio input and video capture devices are functioning correctly.

Testing Your Microphone via System Settings

Ubuntu features a robust built-in settings panel that allows you to quickly verify audio input levels without installing third-party software.

Testing Your Webcam with Built-in Apps

The easiest way to check your webcam’s video feed locally is by using Cheese, the default webcam application for many Ubuntu distributions.

Checking Hardware with Terminal Commands

If your devices are not showing up in the graphical interface, you can use the terminal to verify whether the Ubuntu kernel actually detects the physical hardware.

For webcams, you can list connected USB devices or video capture hardware by running:

lsusb

Alternatively, you can inspect the video devices directly using:

ls /dev/video*

For microphones, you can list all recognized audio capture devices using the Advanced Linux Sound Architecture (ALSA) utility command:

arecord -l

If your devices appear in these terminal outputs but do not work in specific applications, the issue is likely related to application-specific permissions or configurations rather than a hardware compatibility fault.