RaspbmcCrystalbuntu
|
SABnzbd/Sickbeard/Couch Potato Install?
|
|
05-16-2012, 01:30 AM
(This post was last modified: 05-16-2012 01:38 AM by Denny.)
Post: #1
|
|||
|
|||
|
SABnzbd/Sickbeard/Couch Potato Install?
I have a 1st gen aTV (160G) that I have installed Crystalbuntu & XMBC on the internal HD, thanks to Sam's great tool.
My intent is to use the internal HD to download TV show episodes with Sickbeard and movies with Couch Potato. I tried following tinybilbo's instructions for SABbznd installation in the xbmc forum (here) and just managed to brick my aTV. I restored it with a new installation of crystalbuntu. So, I want to take it slow on my next try to install SABnzbd.
Crystalbuntu 2.0/XBMC "Frodo" 12.2 Sony Bravia 32" LED TV ATV1 (160G HD) with Broadcom BCM 970015 Crystal HD video card 1.5 TB Seagate Go Flex external HD Controlled by a Logitech Harmony 300 Remote and/or a Logitech wireless keyboard |
|||
|
05-16-2012, 06:28 AM
(This post was last modified: 05-16-2012 06:28 AM by jaymax.)
Post: #2
|
|||
|
|||
|
RE: SABnzbd/Sickbeard/Couch Potato Install?
Go HERE and follow the steps.
|
|||
|
05-16-2012, 11:20 AM
(This post was last modified: 05-16-2012 11:31 AM by Denny.)
Post: #3
|
|||
|
|||
|
RE: SABnzbd/Sickbeard/Couch Potato Install?
OK, did that.
At least, up to here - Quote:If you want the program to be started as a service (i.e., in the background on system boot), you will need to edit /etc/default/sabnzbdplus and set the host to 0.0.0.0 and the port and user to the appropriate settings. Once configured correctly, you will be able to start and stop SABnzbd with the commands /etc/init.d/sabnzbdplus start and /etc/init.d/sabnzbdplus stop. Although for obvious reasons no browser is auto-started when running the program like this, the web interface is still available at the usual location of http://localhost:8080/sabnzbd/ (or whatever other host and port you configured). I think this is where I messed up and bricked my aTV the first time, when I tried to edit /etc/default/sabnzbdplus. What are the proper settings for host, port, and user? Crystalbuntu 2.0/XBMC "Frodo" 12.2 Sony Bravia 32" LED TV ATV1 (160G HD) with Broadcom BCM 970015 Crystal HD video card 1.5 TB Seagate Go Flex external HD Controlled by a Logitech Harmony 300 Remote and/or a Logitech wireless keyboard |
|||
|
05-16-2012, 06:36 PM
(This post was last modified: 09-04-2012 02:27 AM by jaymax.)
Post: #4
|
|||
|
|||
|
RE: SABnzbd/Sickbeard/Couch Potato Install?
Use either vim or nano to edit the config file. Google how to use them if you're not familiar.
Code: sudo vim /etc/default/sabnzbdplusThis is what mine looks like: Code: # This file is sourced by /etc/init.d/sabnzbdplusNow start up SABnzbd+ Code: sudo /etc/init.d/sabnzbdplus startand you should have the start wizard. I'll start getting a guide going on setting up CP and SB. EDIT: Had the post backwards. Fixed for others |
|||
|
05-16-2012, 07:01 PM
Post: #5
|
|||
|
|||
|
RE: SABnzbd/Sickbeard/Couch Potato Install?
Can I use WinSCP to edit the file instead if vim or nano?
Crystalbuntu 2.0/XBMC "Frodo" 12.2 Sony Bravia 32" LED TV ATV1 (160G HD) with Broadcom BCM 970015 Crystal HD video card 1.5 TB Seagate Go Flex external HD Controlled by a Logitech Harmony 300 Remote and/or a Logitech wireless keyboard |
|||
|
05-16-2012, 07:16 PM
(This post was last modified: 05-16-2012 08:09 PM by jaymax.)
Post: #6
|
|||
|
|||
RE: SABnzbd/Sickbeard/Couch Potato Install?
(05-16-2012 07:01 PM)Denny Wrote: Can I use WinSCP to edit the file instead if vim or nano? Not sure if winscp will allow you run sudo commands. You could use winscp to edit and then save in your home directory, then ssh in and replace it. Here is how to install the latest version of CP (v2) In your home directory (/home/atv) **This assumes you have git installed.** Code: git clone git://github.com/RuudBurger/CouchPotatoServer.git .couchpotatoThere's three things you need to change. Code: # path to appThe python2.6 is critical. CP uses 2.6 and will give an error if you just use python (which is symlinked to 2.5). 2.6 is preinstalled but 2.5 is used by default. Code: sudo chmod +x /etc/init.d/couchpotatoNow point your browser to http://[ip of atv]:5050/ and go through the configuration. If you want the older version of CouchPotato let me know. It's pretty much the same though. The Sickbeard install is almost exactly the same as the CP install. In home directory (/home/atv/) Code: git clone git://github.com/midgetspy/Sick-Beard.git .sickbeardOnly 2 things you need change: Code: # path to appLeave the DAEMON as python as SB uses python2.5 just fine. Code: sudo update-rc.d sickbeard defaultsNow point your browser to http://[ip of atv]:8081 and go through the configuration. |
|||
|
05-17-2012, 02:40 AM
Post: #7
|
|||
|
|||
|
RE: SABnzbd/Sickbeard/Couch Potato Install?
Thanks for all of the help, jaymax! Got everything installed and just tweaking the configurations now.
Crystalbuntu 2.0/XBMC "Frodo" 12.2 Sony Bravia 32" LED TV ATV1 (160G HD) with Broadcom BCM 970015 Crystal HD video card 1.5 TB Seagate Go Flex external HD Controlled by a Logitech Harmony 300 Remote and/or a Logitech wireless keyboard |
|||
|
05-17-2012, 11:26 AM
Post: #8
|
|||
|
|||
|
RE: SABnzbd/Sickbeard/Couch Potato Install?
So freakin' close!
I configured everything and set up sickbeard for a little test drive. In SABnzbd, every attempted download fails. I keep getting a warning, "No PAR2 program found, repairs not possible." From what I can gather thru a quick google search, PAR2 is a tool that SABnzbd uses in post-processing. It should be included in ubuntu. Is it not included in crystalbuntu? How do I install it? Crystalbuntu 2.0/XBMC "Frodo" 12.2 Sony Bravia 32" LED TV ATV1 (160G HD) with Broadcom BCM 970015 Crystal HD video card 1.5 TB Seagate Go Flex external HD Controlled by a Logitech Harmony 300 Remote and/or a Logitech wireless keyboard |
|||
|
05-17-2012, 11:36 AM
Post: #9
|
|||
|
|||
| RE: SABnzbd/Sickbeard/Couch Potato Install? | |||
|
05-17-2012, 05:28 PM
Post: #10
|
|||
|
|||
| RE: SABnzbd/Sickbeard/Couch Potato Install? | |||
|
« Next Oldest | Next Newest »
|
User(s) browsing this thread: 1 Guest(s)
Sponsored Advertisement

Member List
Calendar
Help




