在你的debian/ubuntu安装Plex Media Server

Plex is an awesome media server software that is ‘family-proof’, even my technically challenged stepmom can use plex which makes it perfect if you are trying to create an htpc home media server solution for friends or family. Plex will stream to practically any device in your house: iPad, iPhone, Android tablets, Roku, Raspberry Pi and other PCs. Let’s install it on Debian Wheezy for x86 and x64 systems. If you are on an ARM device then use the Raspberry Pi guide.

1、先安装源和密钥

wget -O - http://shell.ninthgate.se/packages/shell.ninthgate.se.gpg.key | sudo apt-key add -
echo "deb http://www.deb-multimedia.org wheezy main non-free" | sudo tee -a /etc/apt/sources.list.d/deb-multimedia.list
echo "deb http://shell.ninthgate.se/packages/debian wheezy main" | sudo tee -a /etc/apt/sources.list.d/plex.list

2、更新你的源和安装密钥

sudo apt-get update && sudo apt-get install deb-multimedia-keyring -y

3、安装plex media server

sudo apt-get update && sudo apt-get install plexmediaserver -y

4、配置你的plex media server

See if you can connect at http://ip.address:32400/manage/index.html or http://ip.address:32400/manage/index.html#!/setup

Plex media server will autoboot ?

Fix Plex Permission Issues

If you are getting permission issues it is because Plex runs as its own user, there are two options: change permissions of the downloads folders or change the user Plex runs as.

To change permissions of your media folders, first add the plex user to your main user’s group

sudo usermod -aG htpcguides plex

 

Then set the permissions of your media folders to 775 so your group (and the plex user member of that group) can execute files

sudo chmod -R 775 /path/to/media

You can change the user Plex Media Server runs as to fix the permission issues you get from CouchPotato, SickRage, Sonarr, Headphones and others.

sudo nano /etc/default/plexmediaserver

Find this line

PLEX_MEDIA_SERVER_USER=plex

Change plex to your regular user

PLEX_MEDIA_SERVER_USER=username

 

Ctrl+X, Y and Enter to save the configuration

Restart the Plex Media Server service

sudo service plexmediaserver restart

 

Now you can Configure Plex Media Server

I also recommend using Dynamic DNS to access Plex instead of plex.tv.

Treat yo’ self to a new gadget!

打赏
Bookmark the permalink.
0 0 投票数
文章评分
订阅评论
提醒
guest

0 评论
内联反馈
查看所有评论