Home 4 Ways to Install Plex (one is unexpected)
Post
Cancel

4 Ways to Install Plex (one is unexpected)

I’m a huge fan of virtualization and containerization (if you couldn’t tell already)! Today, we’ll walk though the various ways to install Plex step-by-step. We also see how easy it is to get Plex running on Docker and Kubernetes using Rancher.

📺 Watch Video

Id for Container

Get Id and Group Id

1
id yourusername

Should see something like this:

1
uid=1001(technotim) gid=1001(technotim) groups=1001(technotim),27(sudo),999(docker)

Mount Shares During Boot

Install cifs-utils

1
sudo apt-get install cifs-utils

Create credentials files for share

1
sudo nano /home/technotim/.smbcredentials

Set permissions

1
chmod 600 ~/.smbcredentials
1
2
username=yourUsyourusernameername  
password=yourPassword

Edit /etc/fstab

1
2
//192.168.0.22/plex_media/movies /mnt/movies cifs credentials=/home/technotim/.smbcredentials 0 0
//192.168.0.22/plex_media/music /mnt/music cifs credentials=/home/technotim/.smbcredentials 0 0

Then reboot or

1
sudo mount -a

to mount

⚙️ See all the hardware I recommend at https://l.technotim.live/gear

🚀 Don’t forget to check out the 🚀Launchpad repo with all of the quick start source files

This post is licensed under CC BY 4.0 by the author.

How to Virtualize Your Home Router / Firewall Using pfSense

PiHole on Docker and Kubernetes (I almost gave up)