[RPi] Setting up a NAS with openmediavault and Plex Media Server

 


What you need:

  • Raspberry Pi 4
  • External Hard Drive


STEP 1 

Raspberry Pi Imager: https://www.raspberrypi.org/software/

  1. Update your Pi
    sudo apt update && sudo apt upgrade


STEP 2 - Install OpenMediaVault

  1. Run this command:
wget -O - https://raw.githubusercontent.com/OpenMediaVault-Plugin-Developers/installScript/master/install | sudo bash


INSTALL PLEX MEDIA SERVER

  1. Install the https-transport package
    sudo apt-get install apt-transport-https
  2. Add the Plex repositories
    curl https://downloads.plex.tv/plex-keys/PlexSign.key | sudo apt-key add -
    
    echo deb https://downloads.plex.tv/repo/deb public main | sudo tee /etc/apt/sources.list.d/plexmediaserver.list
    
    sudo apt-get update
  3. Install Plex
    sudo apt install plexmediaserver
    
If this doesn't work, download the compilied binary pagckage .deb manually as explained in the artcle given here : https://www.linuxbabe.com/debian/install-plex-media-server-debian-10-buster.







Comments

Popular posts from this blog

[Python] PyQt5 Message Boxes

[Linux] tcpdump - view TCP traffic on Linux

[Linux] Using grep command with pattern input from a file