Project

General

Profile

Support #662

Updated by Daniel Curtis over 8 years ago

This is a guide on how to install Emby Media Server on FreeBSD 9. 

 h2. Prepare the Environment 

 * Make sure the system is up to date: 
 <pre> 
 pkg update && pkg upgrade 
 </pre> 

 * Install portmaster 
 <pre> 
 pkg install portmaster 
 </pre> 

 h2. Install Emby 

 * Install ffmpeg: 
 <pre> 
 portmaster multimedia/ffmpeg 
 </pre> 
 #* *NOTE*: Make sure to enable *[X]LAME* and *[X]ASS* during the ffmpeg port configuration 

 * Install emby from the port tree: 
 <pre> 
 portmaster multimedia/emby-server 
 </pre> 

 * Start and enable emby at boot: 
 <pre> 
 echo 'emby_server_enable="YES"' >> /etc/rc.conf 
 service emby-server emby start 
 </pre> 

 * Finish the installation by completing the setup wizard at http://localhost:8069 

 h2. Resources 

 * http://emby.media/downloads/freebsd-server/

Back