Plex Media Server is a popular tool for streaming your personal media collection, including videos, music, and photos, to any device. This guide will walk you through the steps to install Plex Media Server on Debian 12.

Step 1: Update Your System

Before you begin, it's a good practice to update your system to ensure that you have the latest packages. Open your terminal and run the following command:

sudo apt update && sudo apt upgrade -y

Step 2: Download Plex Media Server

Next, download the Plex Media Server .deb package from the official Plex website using the following command:

wget https://downloads.plex.tv/plex-media-server-new/1.32.0.6994-7eb2c58e2/debian/plexmediaserver_1.32.0.6994-7eb2c58e2_amd64.deb

Step 3: Install Plex Media Server

After downloading the package, install it using the dpkg command:

sudo dpkg -i plexmediaserver_1.32.0.6994-7eb2c58e2_amd64.deb

If there are any missing dependencies, you can resolve them with the following command:

sudo apt install -f

Step 4: Start and Enable Plex Media Server

Once Plex Media Server is installed, start the service and enable it to run at boot:


sudo systemctl start plexmediaserver
sudo systemctl enable plexmediaserver
        

Step 5: Access Plex Media Server

Now that Plex Media Server is up and running, you can access its web interface by navigating to the following URL in your web browser:

http://localhost:32400/web

You can configure Plex and begin organizing your media collection.

Step 6: Configure Firewall (Optional)

If you have a firewall enabled on your Debian 12 system, you need to allow Plex through it. Run the following command:

sudo ufw allow 32400/tcp

Looking for VPS Solutions?

If you're running Debian 12 on a VPS, consider using WindowsVPS for high-performance server solutions. With WindowsVPS, you can easily manage your media server and enjoy seamless streaming of your personal media collection.

Was dit antwoord nuttig? 0 gebruikers vonden dit artikel nuttig (0 Stemmen)