Plex: How to Turn Your Raspberry Pi into a Media and Streaming Server

Raspberry Pi and chill?
Ash Ash (362)
30 minutes

Raspberry Pi's are wonderfully capable machines. You can use them to play games, make a furry assistant, or even build your own smart mirror. But today we're looking for something a little more relaxed.

In fact, we want to kick back on the couch for this one. In this guide, we'll be setting up our very own Plex media server. Your Plex setup will let you to stream video, audio, photos, and more from your Raspberry Pi!

Raspberry PiRaspberry Pi ×1
MicroSD card, 32GB ×1

Howchoo is reader-supported. As an Amazon Associate, we may earn a small affiliate commission at no cost to you when you buy through our links.

In order to set up our media server, we'll need the latest version of Raspberry Pi OS (formerly Raspbian) installed. Visit our guide here on how to update Raspberry Pi OS.

We'll need to install the HTTPS transport package for our media server to work. This can be done via command line terminal. For more information on how to log in using a terminal, visit our guide on how to access a Raspberry Pi using SSH.

Once you've logged into your Raspberry Pi, it's time to initiate the package install. Run the following command to start the process.

sudo apt-get install apt-transport-https

The program we're using to create our media server is called Plex. You can learn more about Plex on the official Plex website. To get our hands on it, we'll need to download the dev2day repository. First up, we'll need to get a key. Run the following command to set it up.

wget -O - https://dev2day.de/pms/dev2day-pms.gpg.key | sudo apt-key add -

Once you have the key, run the following command to add the repository to the list of package sources.

echo "deb https://dev2day.de/pms/ jessie main" | sudo tee /etc/apt/sources.list.d/pms.list

Now it's time for the meat of our media server sandwich—the Plex server files. To install this component, run the following command.

sudo apt-get install -t jessie plexmediaserver

In order to use our media server, we need to adjust the permission settings. To do this, we need to modify a line of text from a specific file. Run the following command to open the file.

sudo nano /etc/default/plexmediaserver.prev

Your screen will fill with several lines of text. Scroll through them until you find the following line.

PLEX_MEDIA_SERVER_USER=plex

Replace the word "plex" with "pi". The full string will look like this.

PLEX_MEDIA_SERVER_USER=pi

Press Ctrl + X to close the file. You will be prompted to save the changes, to do so press Y followed by Enter.

Restart the media server using the following command.

sudo service plexmediaserver restart

To help us reach our new media server, we'll be defining a static IP address. To find your current IP address, run the following command.

hostname -i

To set this IP address as static, add it to the cmdline.txt file. To open this file, run the following command.

sudo nano /boot/cmdline.txt

At the bottom of this file, add an extra line of text for the IP address. It should look like the following, where x.x.x.x represents your desired static IP address.

IP=x.x.x.x

Use Ctrl+X to close the file. You will need to press Y to save the changes and Enter to return to the terminal screen.

Restart your Raspberry Pi.

Connect media files to the Raspberry Pi

First, attach your files to the Raspberry Pi. This can be accomplished using things like thumb drives, hard drives, or SD cards.

Once your media is accessible, open a browser window. Enter the static IP address from before. Include the suffix :32400/web/. It should look like the following string:

x.x.x.x:32400/web/

Plex will guide you through setting up for the first time. You'll notice the option to add a library. This tells the Raspberry Pi where our media files are located. Follow the prompts to add your media library.

Test the media server

Let's test out our new setup. Your media server should be accessible using Plex from any device on the same network. Just open Plex and look for your Raspberry Pi server in the list.

Congratulations! Your new media server is set up and ready to go.

Hello, Alexa Voice Service.
20 minutes

The Amazon Echo and Echo Dot are one of the hottest gifts of the 2017 holiday season. This year, instead of buying one, you can make your own!