Project

General

Profile

Support #644

Updated by Daniel Curtis almost 8 years ago

{{>toc}} 

 This is a guide for installing Plex Media Server on Arch Linux. 

 h2. Prepare the Environment 

 * Make sure the system is up to date: 
 <pre> 
 pacman -Syu 
 </pre> 

 h3. Install yaourt 

 * Download the packages for yaourt: 
 <pre> 
 cd /tmp 
 wget https://aur.archlinux.org/cgit/aur.git/snapshot/package-query.tar.gz && wget https://aur.archlinux.org/cgit/aur.git/snapshot/yaourt.tar.gz 
 tar xzf package-query.tar.gz 
 tar xzf yaourt.tar.gz 
 </pre> 
 #* Install "yaourt":https://project.altservice.com/issues/509 package-query: 
 <pre> 
 cd package-query 
 makepkg -csi 
 </pre> 
 #* Install yaourt 
 <pre> 
 cd ../yaourt 
 makepkg -csi 
 </pre> 

 h2. Install Plex Media Server 

 * Install Plex Media Server from the AUR: 
 <pre> 
 yaourt plex-media-server 
 </pre> 

 * Start and enable Plex Media Server at boot: 
 <pre> 
 systemctl enable plexmediaserver.service 
 systemctl start plexmediaserver.service 
 </pre> 

 * Navigate to http://plex.example.com:32400/web/ to finish the setup. 

 h2. Resources 

 * https://wiki.archlinux.org/index.php/Plex 
 * https://aur.archlinux.org/packages/plex-media-server/?comments=all

Back