While I was watching some CCNA tutorial videos, I noticed something strange. The instructor was clearly speaking, the audio meter was moving, and the volume icon on my Ubuntu laptop proudly claimed it was at 100%.
And yet the sound was barely audible.
This is not the kind of problem you expect in 2026. We have gigabit internet, cloud computing everywhere, and artificial intelligence writing code. But apparently my laptop speakers were behaving like they were powered by two very tired hamsters.
After a bit of investigation, I realized something that many people new to Linux do not immediately understand.
Linux audio has layers.

Sometimes those layers quietly conspire to make your laptop sound like someone giving a lecture from the next room.
The Linux Audio Stack (Why Your Volume Might Be Lying)
When you increase the volume in Ubuntu, you are usually adjusting only one layer of the audio system. Underneath that simple slider are several components.
| Layer | What It Does |
|---|---|
| Application | The program producing the sound such as a browser or video player |
| Audio Server | PulseAudio or PipeWire that manages sound streams |
| ALSA | The Linux kernel audio subsystem |
| Hardware Mixer | The laptop amplifier and speakers |
If any one of these layers is set too low, your laptop can sound quiet even though the system proudly claims everything is at maximum.
So the system might say 100%, but somewhere underneath another layer might actually be sitting at 40%.
The First Thing to Check: PulseAudio Volume
One of the most common fixes is installing PulseAudio Volume Control, which exposes settings the default Ubuntu interface hides.

Install it:
sudo apt install pavucontrol

Then run:
pavucontrol
Inside the Playback tab, you can increase the volume beyond 100%.
Linux allows software amplification up to 150% or even 200%.

It can introduce some distortion, but when you are trying to hear someone explain VLAN tagging or OSPF, distortion is still better than silence.
The Hidden Hardware Volume (ALSA)
Another thing that can quietly sabotage your sound is the hardware mixer controlled by ALSA.
Open it with:
alsamixer
You will see several sliders such as:
- Master
- Speaker
- PCM
Make sure they are all at 100.
Also check if any channel shows MM underneath it. That means muted. Press M to unmute.
Sometimes this step alone fixes the problem.
When Linux Gets Too Helpful
Ubuntu tries to be smart with audio management. Occasionally it becomes too smart for its own good.
A feature called flat volumes allows applications to adjust the overall system volume automatically. In theory this balances audio levels between applications.
In practice it can cause a quiet application to lower the entire system volume.
You can disable this by editing:
/etc/pulse/daemon.conf
Change this line:
; flat-volumes = yes
to:
flat-volumes = no

Then restart the audio service:
pulseaudio -k
The Truth About Modern Laptop Speakers
Even after fixing the software layers, there is another reality.
Many modern laptops simply have very small speakers with weak amplifiers.
They are designed mostly for:
- Zoom calls
- Notification sounds
- Occasional YouTube videos
They are not designed for hours of networking lectures.
The Nuclear Option: Audio Enhancement
If the hardware is weak, Linux gives you one more option. You can use audio enhancement software.
One useful tool is EasyEffects.
Install it:
sudo apt install easyeffects

You can enable features like:
- Loudness correction
- Equalizer
- Limiter
These can improve perceived loudness and clarity.
The Irony of Studying Networking
I find it amusing that while studying networking topics such as:
- routing protocols
- subnetting
- switching architectures
the biggest technical problem that evening was simply hearing the instructor clearly.
Sometimes the most complicated systems such as enterprise networks and cloud infrastructure work exactly as expected.
And the real troubleshooting task becomes figuring out why your laptop sounds like it is whispering.
And that is how the networking study session quietly turned into an audio troubleshooting session.