Questions and bug reports for Beta releases should be posted here.
Forum rules
Help us help you:
Tell us what system you run SABnzbd on.
Adhere to the forum rules .
Do you experience problems during downloading?
Check your connection in Status and Interface settings window.
Use Test Server in Config > Servers .
We will probably ask you to do a test using only basic settings .
Do you experience problems during repair or unpacking?
Enable +Debug logging in the Status and Interface settings window and share the relevant parts of the log here using [ code ] sections.
sander
Release Testers
Posts: 9113 Joined: January 22nd, 2008, 2:22 pm
Post
by sander » April 27th, 2013, 3:06 pm
Here are some notes on using the 0.8.x git version on Ubuntu.
EDIT: first install a regular sabnzbd via the Ubuntu Software Center. It will take care of activating Multiverse and installing the needed other programs (unrar etc)
First: installation of the git version:
Code: Select all
mkdir git-sab
cd git-sab
git clone https://github.com/sabnzbd/sabnzbd.git sabnzbd
cd sabnzbd
git checkout --track origin/develop
Updates later on, in the sabnzbd directory:
Show which branch you're using:
Code: Select all
sander@appelboor:~/git-sab/sabnzbd$ git branch
* develop
master
sander@appelboor:~/git-sab/sabnzbd$
sander
Release Testers
Posts: 9113 Joined: January 22nd, 2008, 2:22 pm
Post
by sander » April 27th, 2013, 3:08 pm
SAB 0.8.x can handle 7zip files. However, if SAB says:
Code: Select all
2013-04-27 17:31:49,335::WARNING::[SABnzbd:516] 7za binary... NOT found!
then install "p7zip-full". After that, SAB should say:
Code: Select all
2013-04-27 17:40:07,134::INFO::[SABnzbd:514] 7za binary... found (/usr/bin/7za)
FWIW:
Code: Select all
sander@hapee:~/git-sab/sabnzbd$ dpkg -S /usr/bin/7za
p7zip-full: /usr/bin/7za
sander@hapee:~/git-sab/sabnzbd$
sander
Release Testers
Posts: 9113 Joined: January 22nd, 2008, 2:22 pm
Post
by sander » April 27th, 2013, 3:10 pm
SAB 0.8.x will announce itself via bonjour.
If SAB says
Code: Select all
2013-04-27 17:33:37,664::INFO::[zconfig:65] No Bonjour/ZeroConfig support installed
then you have to install:
Code: Select all
sudo apt-get install libavahi-compat-libdnssd1
After that, SAB will say
Code: Select all
2013-04-27 17:44:27,850::DEBUG::[zconfig:98] Try to publish in Bonjour as "hapee" (0.0.0.0:8080)
and will announce itself via bonjour/zeroconf/avahi
ichigo79
Newbie
Posts: 1 Joined: April 24th, 2013, 1:49 am
Post
by ichigo79 » May 2nd, 2013, 1:16 am
Thanks for the notes you've provided. These will be very helpful to me. Thumbs up!