This guide will include instructions for installing Plex Media Server, the Plex client add-on, and editing the OSMC homescreen to include a direct link to the Plex add-on.
Tested With
-
Device: Raspberry Pi 3 B+
OSMC Version: 2018.12-1
Repository: dev2day.de
Plex Media Server Installation (Raspberry Pi 2 and 3)
Note: This part of the guide is based on a guide made by the repo owner on the Plex forums
-
Connect to Raspberry Pi via SSH as
osmc
user.ssh osmc@<IP ADDRESS>
-
Add the repository:
wget -O - https://dev2day.de/pms/dev2day-pms.gpg.key | sudo apt-key add - echo "deb https://dev2day.de/pms/ stretch main" | sudo tee /etc/apt/sources.list.d/pms.list >/dev/null
-
Install the dependency:
sudo apt-get install apt-transport-https
-
Update the package list and install Plex Media Server:
sudo apt-get update sudo apt-get install plexmediaserver-installer
-
Add OSMC and Plex to eachothers groups so they play nice together:
sudo addgroup plex osmc sudo addgroup osmc plex
-
Reboot OSMC:
reboot
-
To configure Plex Media Server, use a browser on the same network by going to
http://<IP ADDRESS>:32400/web
.
Plex Add-on Installation
-
From the OSMC home screen, go to
Settings
>Add-on browser
>Plex
. -
Install the
Plex
add-on. -
To access Plex, from the OSMC home screen go to
Videos
>Video Add-ons
>Plex
-
Launch
Plex
and follow the on-screen instructions to sign in.
Adding Plex Add-On Shortcut to OSMC Home Screen (Optional)
-
From the OSMC home screen, go to
Settings
>Interface
. -
Then under the
Skin
settings, select- Configure skin...
-
Select
Enable menu customisation
-
Install
Skin Helper Service
when prompted. -
Install
Skin Helper Service Widgets
when prompted. -
Once installatiion of the previous 2 add-ons are complete, go to the
Addons
while still in theSkin Settings
. -
Select
Skin Shortcuts
and install that add-on. -
Go to
Home
underSkin settings
and selectCustomise Home Menu
. -
In the
Customise Home Menu
, selectAdd
at the bottom. -
Select
- Set label
and enter “Plex”. -
Select
- Change action
and selectVideo Library
>Video Add-On
>Plex
-
Press
ESC
and go back to home screen.
Thank You
- @eekfonky: For posting the original Plex installation [HowTo].
- uglymagoo: For creating the general armhf / ARMv7 guide and hosting the repo used in this guide.