Jump to content

Any reason why I couldn't use par2cmdline-0.4-tbb-20100203-lin64 with SAB?


savestheday

Recommended Posts

Thanks ProStuff.  I'll use this.  Just for clarity sake, can you tell me if this will successfully replace the par2 from the current unMENU pkg?

 

wget http://unraid-greenleaf-repository.googlecode.com/files/par2cmdline_tbb-0.4-i486-1kh.tgz 

(only download once to /boot/package dir)

 

For the go script:

 

installpkg /boot/packages/par2cmdline_tbb-0.4-i486-1kh.tgz

 

This of course goes after:

 

cd /boot/packages && find . -name '*.auto_install' -type f -print | sort | xargs -n1 sh -c 

 

Thanks!

Link to comment

Thanks ProStuff.  I'll use this.  Just for clarity sake, can you tell me if this will successfully replace the par2 from the current unMENU pkg?

 

wget http://unraid-greenleaf-repository.googlecode.com/files/par2cmdline_tbb-0.4-i486-1kh.tgz 

(only download once to /boot/package dir)

 

For the go script:

 

installpkg /boot/packages/par2cmdline_tbb-0.4-i486-1kh.tgz

 

This of course go after:

 

cd /boot/packages && find . -name '*.auto_install' -type f -print | sort | xargs -n1 sh -c 

 

Thanks!

 

replace

# par2cmdline (singlecore)
PACKAGE_EXTRA_URL http://connie.slackware.com/~alien/slackbuilds/par2cmdline/pkg/13.0/par2cmdline-0.4-i486-1alien.tgz
PACKAGE_EXTRA_FILE par2cmdline-0.4-i486-1alien.tgz
PACKAGE_EXTRA_MD5 58adc6a21ae2f7b82e6660ccd8b67ece

in the sabnzbd-unmenu-package.conf

with

# par2cmdline (multicore)
PACKAGE_EXTRA_URL http://unraid-greenleaf-repository.googlecode.com/files/par2cmdline_tbb-0.4-i486-1kh.tgz
PACKAGE_EXTRA_FILE par2cmdline_tbb-0.4-i486-1kh.tgz
PACKAGE_EXTRA_MD5 c5a5550888ae009531f133a33ed85be7

 

That will download and install the new par2.

 

You will have to make sure to not update unMenu or the sabnzbd-unmenu-package.conf will be "reset" to default.

Link to comment

Ahh ok.  That conf only gets run once tho, right?  I've already got the conf installed so what if I updated the SAB auto_install script as such:

 

# if [ ! -f /usr/bin/par2 ]; then
# if [ ! -f /boot/packages/par2cmdline-0.4-i486-1alien.tgz ]; then
# echo "Required dependency, par2cmdline-0.4-i486-1alien.tgz, has not been installed. Please install it before installing SABnzbd."
# exit
# else
# installpkg /boot/packages/par2cmdline-0.4-i486-1alien.tgz
# fi
# fi

if [ ! -f /usr/bin/par2 ]; then
if [ ! -f /boot/packages/par2cmdline_tbb-0.4-i486-1kh.tgz ]; then
echo "Required dependency, par2cmdline_tbb-0.4-i486-1kh.tgz, has not been installed. Please install it before installing SABnzbd."
exit
else
installpkg /boot/packages/par2cmdline_tbb-0.4-i486-1kh.tgz
fi
fi

Link to comment

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...