Skip to content
Follow
Ubuntu Linux

How to Install Emby Media Server on Ubuntu 24.04

Richard
Written by
Richard
Mar 26, 2025 Updated Jun 19, 2026 2 min read
How to Install Emby Media Server on Ubuntu 24.04
How to Install Emby Media Server on Ubuntu 24.04

You can install Emby Media Server on Ubuntu 24.04 by following a straightforward package installation process.

Emby Media Server is a powerful application that organizes your personal media library—movies, TV shows, music, and photos—and makes it streamable to virtually any device. It automatically fetches metadata, artwork, and cast information, presenting your collection beautifully.

This setup gives you a robust, private streaming solution right on your Ubuntu 24.04 system. You’ll gain complete control over your media, accessible from your smart TV, smartphone, tablet, or web browser.

⚡ Quick Answer

Install Emby Media Server on Ubuntu 24.04 by updating your system, installing prerequisites with `apt install`, downloading the latest .deb package from Emby’s site, and installing it using `dpkg -i`. Start the service with `systemctl start emby-server` and enable it with `systemctl enable emby-server`.

Install Prerequisites

To get Emby Media Server running smoothly on Ubuntu 24.04, start by updating your system and installing necessary tools like ffmpeg and va-driver-all. These help ensure your videos play without issues.

🐧Bash / Shell
sudo apt update && sudo apt upgrade -y
sudo apt install cec-utils libasound2t64 libatomic1 libc6 libegl1 libgcc-s1 libpulse0 libstdc++6 ffmpeg va-driver-all -y

We install ffmpeg and va-driver-all to help your server handle video playback smoothly using your computer’s hardware.

Download and install Emby

Installing Emby Media Server on Ubuntu 24.04 is straightforward; you’ll use a script to grab the latest version and then install it with a simple command. This process ensures you have the most up-to-date software.

🐧Bash / Shell
URL=$(curl -s https://emby.media/community/index.php?/blog/rss/1-emby-announcements/ | grep -o 'https://github.com/MediaBrowser/Emby.Releases/releases/download/[^"]*amd64.deb' | head -n 1)
wget $URL
sudo dpkg -i emby-server-deb_*.deb

Once finished, start the server:

🐧Bash / Shell
sudo systemctl start emby-server
sudo systemctl enable emby-server

Open your browser and go to http://localhost:8096 to finish the setup.

Emby installation language
Emby installation language

Create and admin account

Once Emby Media Server is installed on Ubuntu, creating an admin account is the next step. Follow the on-screen prompts to set up your main account, and consider turning on two-factor authentication and hardware acceleration for better security and speed.

  • Two-Factor Authentication: Go to Users > Select User > Profile. Enable 2FA to keep your account safe from unauthorized logins.
  • Hardware Acceleration: Go to Dashboard > Playback. Choose VAAPI or NVENC (depending on your hardware) to ensure your server uses the graphics card for faster streaming.
Emby installation admin
Emby installation admin

Emby installation complete
Emby installation complete

Set up a reverse proxy

Setting up a reverse proxy with Caddy allows you to access your Emby Media Server from anywhere using your own domain name. Caddy makes this easy by automatically managing security and SSL certificates for your connection.

Install Caddy, create a file named Caddyfile, and add this simple configuration:

💻Code
yourdomain.com {
    reverse_proxy localhost:8096
}

Caddy will manage all the security and SSL certificates for you automatically.

Emby installation portal
Emby installation portal

Conclusion

You now have a professional media server. Remember these steps:

  • Keep your system updated with apt upgrade.
  • Use hardware acceleration for better performance.
  • Turn on 2FA to protect your account.
  • Use Caddy for easy, secure remote access.

Your media is now ready to stream anywhere!

Was this guide helpful?

Was this helpful?
Richard

About the Author

Richard

Tech Writer, IT Professional

Richard, a writer for Geek Rewind, is a tech enthusiast who loves breaking down complex IT topics into simple, easy-to-understand ideas. With years of hands-on experience in system administration and enterprise IT operations, he’s developed a knack for offering practical tips and solutions. Richard aims to make technology more accessible and actionable. He's deeply committed to the Geek Rewind community, always ready to answer questions and engage in discussions.

📚 Related Tutorials

How to Create a Self-Signed SSL Certificate on Ubuntu 24.04
Ubuntu Linux How to Create a Self-Signed SSL Certificate on Ubuntu 24.04
Secure MySQL with Self-Signed SSL Certificate on Ubuntu 24.04
Ubuntu Linux Secure MySQL with Self-Signed SSL Certificate on Ubuntu 24.04
How to Install GNOME Desktop on Ubuntu 24.04
Ubuntu Linux How to Install GNOME Desktop on Ubuntu 24.04
How to Install KDE Desktop on Ubuntu 24.04
Ubuntu Linux How to Install KDE Desktop on Ubuntu 24.04

No comments yet — be the first to share your thoughts!

Leave a Comment

Your email address will not be published. Required fields are marked *