HTPC manager now supports Sonarr, SickRage and Headphones thanks to Hellowlol. HTPC Manager adds that extra feeling of excellence to your Raspberry Pi Media Server. You get a slick, modular HTPC interface so you can manage all of your software and services on your HTPC.
Services you can manage include Plex, Kodi (XBMC), Sonarr, Sabnzbd, NZBGet, uTorrent, Transmission, SickBeard, CouchPotato and more. You will see nice overviews of recently added shows or movies, suggestions for other movies and TV shows. You can even add movies or shows from the HTPC Manager interface. This guide was tested on Bananian but will work for Raspbian on the Banana Pi too.
This is a screenshot of the computer stats from within HTPC Manager from a friend's Windows server, it will be similar on the Banana Pi
Install HTPC Manager Banana Pi
Install the Banana Pi HTPC Manager dependencies
sudo apt-get install build-essential git python-imaging python-dev python-setuptools python-pip python-cherrypy vnstat smartmontools -yInstall psutil so you can get computer stats as well
sudo pip install psutilGit clone the latest HTPC Manager from Hellowlol's repository
sudo git clone https://github.com/Hellowlol/HTPC-Manager /opt/HTPCManagerTake ownership of the HTPCManager installation directory with your pi user
sudo chown -R pi:pi /opt/HTPCManagerTry and start HTPC Manager on the Banana Pi
python /opt/HTPCManager/Htpc.py --daemonYou may see a cherrpy error, everything still works though so don't worry.
You can access HTPC Manager at http://ip.address:8085
Autostart HTPC Manager at Boot
HTPC Manager includes an init.d script
sudo cp /opt/HTPCManager/initd /etc/init.d/htpcmanagerEdit the htpcmanager init.d script to match the path of HTPC Manager
sudo nano /etc/init.d/htpcmanagerChange APP_PATH to match the path we installed HTPC Manager to
############### EDIT ME ##################
# path to app
APP_PATH=/opt/HTPCManagerMake the init.d script executable
sudo chmod +x /etc/init.d/htpcmanagerUpdate the init.d script to start at boot
sudo update-rc.d htpcmanager defaultsYou are all set to configure HTPC Manager on your Banana Pi, just grab your API keys and enable WebUIs in some of the services you wish to manage.
Access HTPC Manager on your Raspberry Pi at http://ip.address:8085
 
