How to Install Plex Media Server on Debian 12

 

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.

  • 0 Utilisateurs l'ont trouvée utile
Cette réponse était-elle pertinente?

Articles connexes

Boost Your Ubuntu System's Performance with a Swap File: A Step-by-Step Guide

What is a Swap File? A swap file in Ubuntu serves as dedicated virtual memory on your hard...

How to Migrate ISPConfig 2, ISPConfig 3.x, Confixx, CPanel or Plesk to ISPConfig 3.2 (single server)

Introduction Migration from other control panels like ISPConfig 2, ISPConfig 3.x, Confixx,...

How to Install and Configure Zabbix Server and Client on Rocky Linux 9

Introduction Zabbix is an open-source monitoring solution that provides real-time...

How to Install CockroachDB Cluster on Debian 12

Introduction CockroachDB is a distributed SQL database built to handle large-scale,...

How to Install Joomla with Apache and Let's Encrypt SSL on AlmaLinux 9

Introduction Joomla is a popular open-source content management system (CMS) used to build...