๐บ Plexยถ
๐ Introductionยถ
This guide assumes you are starting with a headless Debian server. It provides step-by-step instructions for installing Plex Media Server, including optional enhancements and handling repository keys.
๐ ๏ธ Installation Stepsยถ
1. Install Required Packagesยถ
First, install the necessary packages for adding repositories and handling keys:
2. Add Plex Repositoryยถ
Add the Plex Media Server repository to your system:
echo "deb https://downloads.plex.tv/repo/deb public main" | sudo tee /etc/apt/sources.list.d/plexmediaserver.list
3. Add Plex GPG Keyยถ
Download and add the Plex GPG key for package verification:
4. Update Package Listยถ
Update your package list to include Plex:
Note: You might encounter an apt-key deprecation warning during the update. To resolve this, copy the trusted keys:
After copying the keys, run the update again:
5. Install Plex Media Serverยถ
Now, install Plex Media Server:
6. Access Plex Media Serverยถ
Find your serverโs IP address with:
ip -f inet address | grep inet | grep -v 'lo$' | cut -d ' ' -f 6,13 && curl ifconfig.me && echo ' external ip'"
Then, access the Plex web interface by navigating to:
Replace myinternal_ip
with the actual IP address of your server.