Cloud House Technologies Logo
CloudHouse Technologies
HomeServicesProjectsBlogAbout UsCareersContact UsLogin
    Cloud House Technologies Logo
    CloudHouse Technologies
    HomeServicesProjectsBlogAbout UsCareersContact UsLogin

    How to Fix No Sound on Linux Mint (2026 Guide — PulseAudio & ALSA)

    Priya

    Content Writer & Researcher

    Last Updated: 27 June 2026
    How to Fix No Sound on Linux Mint (2026 Guide — PulseAudio & ALSA)
    🖥️

    Linux Mint Audio Issues Persist?

    Our Linux experts can remotely diagnose and fix sound problems, ALSA/PulseAudio conflicts, and audio driver issues on Linux Mint.

    🔧 Book Free DiagnosisCall NowWhatsApp
    🖥️12,400+PCs Fixed
    ⭐4.9★Google Rating
    ⚡<15 minAvg. Response
    🛡️ISO 27001Certified

    Why There Is No Sound on Linux Mint

    Linux Mint uses a two-layer audio architecture: ALSA (Advanced Linux Sound Architecture) provides low-level kernel driver access to your sound hardware, while PulseAudio (or PipeWire on newer installations) sits on top to manage audio routing, mixing, and per-app volume. When either layer fails, you get silence — and diagnosing which layer is broken determines which fix to apply.

    Common causes of no sound on Linux Mint:

    • Channels muted in ALSA mixer (PCM, Master, or Headphone set to 0)
    • Wrong audio output device selected in PulseAudio
    • PulseAudio daemon crashed or not running
    • Corrupted PulseAudio configuration files
    • Missing or outdated ALSA/kernel sound drivers
    • HDMI output selected instead of speakers/headphones

    Fix 1: Check Volume and Output Device in Sound Settings

    Before touching any configuration, verify the obvious:

    1. Click the volume icon in the system tray — ensure volume is not muted and is above 0.
    2. Right-click the volume icon → Sound Settings.
    3. Under Output, check which device is selected. If it shows HDMI or a device you're not using, switch to your speakers or headphones.
    4. Check the output volume slider at 100%.

    Fix 2: Unmute Channels in ALSA Mixer

    ALSA can have individual channels muted independently of the PulseAudio volume. Open the ALSA mixer to check:

    alsamixer

    Use the arrow keys to navigate between channels. Any channel showing MM at the bottom is muted. Press M to unmute it. Key channels to check:

    • Master — main output level
    • PCM — digital audio output
    • Headphone — if using headphones
    • Speaker — built-in speakers

    Press F6 to select a different sound card if you have multiple (e.g., HDMI audio vs. onboard audio).

    After making changes, save the settings:

    sudo alsactl store

    Fix 3: Restart PulseAudio

    If PulseAudio has crashed or frozen, restart it without rebooting:

    pulseaudio -k
    pulseaudio --start

    Or via systemd (on newer Linux Mint installations):

    systemctl --user restart pulseaudio

    Test audio immediately after. If sound returns, the daemon had crashed silently.

    Fix 4: Reset PulseAudio Configuration

    Corrupted PulseAudio configuration files are a common cause of persistent no-sound issues, especially after updates:

    pulseaudio -k
    rm -r ~/.config/pulse/
    pulseaudio --start

    This removes your user-level PulseAudio configuration and regenerates it fresh. You'll need to re-set your preferred output device in Sound Settings afterward.

    Fix 5: Test Sound Directly Through ALSA (Bypass PulseAudio)

    To determine whether the problem is in ALSA (hardware/driver) or PulseAudio (software layer), test audio through ALSA directly:

    speaker-test -t wav -c 2

    If you hear sound from this test but not from normal applications, PulseAudio is the problem. If this test also produces no sound, the issue is in ALSA/drivers.

    You can also play a test sound via ALSA directly:

    aplay /usr/share/sounds/alsa/Front_Center.wav

    Fix 6: Install or Reinstall PulseAudio

    If PulseAudio is missing or severely corrupted, reinstall it:

    sudo apt remove --purge pulseaudio pulseaudio-utils
    sudo apt autoremove
    sudo apt install pulseaudio pulseaudio-utils
    pulseaudio --start

    Log out and back in after reinstalling.

    Fix 7: Install Missing ALSA Plugins and Firmware

    Some sound cards (especially newer Intel/AMD hardware) require additional firmware packages not installed by default:

    sudo apt update
    sudo apt install alsa-utils alsa-plugins-extra linux-firmware
    sudo alsactl init

    Then restart PulseAudio:

    pulseaudio -k && pulseaudio --start

    Fix 8: Fix Timer-Based Scheduling (Audio Glitches or No Sound)

    On some hardware, PulseAudio's timer-based scheduling causes audio dropouts or no sound. Disable it:

    sudo nano /etc/pulse/default.pa

    Find the line:

    load-module module-udev-detect

    Change it to:

    load-module module-udev-detect tsched=0

    Save and restart PulseAudio:

    pulseaudio -k && pulseaudio --start

    Fix 9: Check Sound Card Detection

    Verify your sound card is being detected by the kernel:

    aplay -l

    This lists all detected sound cards and digital audio devices. If your card doesn't appear here, it's a driver or hardware problem — not PulseAudio.

    Check kernel messages for sound card errors:

    dmesg | grep -i snd
    dmesg | grep -i audio

    If you see errors about a missing firmware file, install the corresponding firmware package.

    Fix 10: Switch to PipeWire (Modern Replacement for PulseAudio)

    Linux Mint 22 and newer support PipeWire as a modern replacement for PulseAudio with better hardware compatibility:

    sudo apt install pipewire pipewire-pulse wireplumber
    systemctl --user enable pipewire pipewire-pulse wireplumber
    systemctl --user start pipewire pipewire-pulse wireplumber

    Disable PulseAudio from conflicting:

    systemctl --user disable pulseaudio
    systemctl --user stop pulseaudio

    Log out and back in. PipeWire provides a PulseAudio-compatible API so all existing apps work without changes.

    Frequently Asked Questions

    Why did sound stop working after a Linux Mint update?

    Updates to the linux-sound-base, pulseaudio, or alsa-utils packages can sometimes reset configuration or introduce incompatibilities. Run pulseaudio -k and rm -r ~/.config/pulse/ to reset PulseAudio config, then restart it. Also check alsamixer for newly muted channels.

    How do I know if PulseAudio is running on Linux Mint?

    Run: pulseaudio --check and check the exit code (0 means running), or run: ps aux | grep pulseaudio to see the process. If nothing appears, start it with: pulseaudio --start

    My HDMI audio works but speakers don't on Linux Mint — how do I fix it?

    Open Sound Settings and change the Output device from HDMI to your built-in speakers or analog output. Also open alsamixer, press F6 to select your onboard audio card, and ensure the Speaker and PCM channels are unmuted and at full volume.

    Can I use PipeWire instead of PulseAudio on Linux Mint?

    Yes. Linux Mint 22 and newer support PipeWire, which offers better hardware compatibility and lower latency. Install pipewire, pipewire-pulse, and wireplumber, enable them via systemctl --user, and disable PulseAudio. All existing apps continue working through PipeWire's PulseAudio compatibility layer.

    Why does sound work in one application but not another on Linux Mint?

    This is usually a PulseAudio stream routing issue. Open pavucontrol (PulseAudio Volume Control) with: pavucontrol — go to the Playback tab and check which output device each application is sending audio to. Switch the problematic app to your correct output device.

    Get the Free Linux Server Admin Cheatsheet (PDF)

    Essential commands for server management, networking, and troubleshooting — all on one printable page.

    Running Linux servers? Let us manage them for you.

    Our Managed Linux Server plans cover updates, security hardening, monitoring, and 24/7 incident response — so your servers stay up and your team stays focused.

    • Proactive OS patching and security updates
    • 24×7 monitoring with instant alerting
    • Backup configuration and disaster recovery
    • Dedicated Linux engineers on call
    See Pricing Plans →

    What our customers say

    “Our production server went down at 2 AM. CloudHouse had it back online in under 20 minutes. Incredible response time.”

    Arun S.

    CTO, SaaS Startup

    “They migrated our entire infrastructure from Ubuntu 18 to 22 with zero downtime. Couldn't have asked for better.”

    Deepak N.

    DevOps Lead

    Frequently Asked Questions

    Updates to linux-sound-base, pulseaudio, or alsa-utils can sometimes reset configuration or introduce incompatibilities. Run pulseaudio -k and rm -r ~/.config/pulse/ to reset PulseAudio config, then restart it. Also check alsamixer for newly muted channels.

    Book your free 15-minute diagnosis

    A certified technician will call you back within 15 minutes during business hours.

    Share this article

    Leave a Comment

    Comments (0)

    Loading comments...

    Linux Mint Audio Support

    Still no sound on Linux Mint? CloudHouse Technologies provides pay-per-ticket Linux desktop support — expert help without a subscription.

    Call Now — FreeWhatsApp Us

    Why CloudHouse?

    • ISO 27001:2022 certified
    • 12,400+ devices supported
    • 4.9★ on Google
    • Sub-15-minute response

    CloudHouse Technologies

    Innovative cloud solutions for modern businesses. We deliver cutting-edge technology with exceptional service.

    Contact Us

    CloudHouse Technologies Pvt.Ltd
    Special Economic Zone(SEZ),
    Infopark Thirissur,4B-15,
    Indeevaram,Nalukettu Road,
    Koratty, Kerala, India-680308
    0480-27327360
    info@cloudhousetechnologies.com

    Quick Links

    • Our Services
    • Gold Loan Software
    • About Us
    • Contact
    • Terms and Conditions
    • Privacy Policy
    ISO27001:2022
    Certified

    © 2026 CloudHouse Technologies Pvt.Ltd. All rights reserved.

    Back to top