Fix VLC Not Working on Ubuntu 24.04 (Quick & Easy Guide)
If your VLC Media Player suddenly stopped working after upgrading to Ubuntu 24.04, you’re not alone. Many users are facing issues where VLC won’t open, crashes, or behaves unexpectedly.
The good news? There’s a simple fix — and it works in most cases.
Problem: VLC Not Opening or Crashing
After the latest Ubuntu update, VLC installed via the Snap Store can sometimes break due to compatibility or sandboxing issues.
Solution: Remove Snap Version & Install via APT
Step 1: Remove Existing VLC Installations
sudo apt remove vlc
sudo snap remove vlc
Step 2: Clear VLC Configuration
Sometimes corrupted settings prevent VLC from launching. Reset them:
rm -rf ~/.config/vlc
Step 3: Update Package List
sudo apt update
Step 4: Reinstall VLC (APT Version)
sudo apt install vlc
Why This Works
- The Snap version may have compatibility issues in Ubuntu 24.04
- The APT version is more stable and system-integrated
- Resetting config removes corrupted settings
Pro Tip
For better stability, prefer APT packages over Snap for critical applications like VLC.
Final Thoughts
This quick fix should get your VLC player running smoothly again on Ubuntu 24.04. Try it out and see if it resolves your issue.
vlc,ubuntu
Comments for this post