How to Install ReScene on a seedbox?
installing rescene on a ubuntu-running seedbox
to know more about rescene and its uses , take a look
ReScene - Rebuild Extracted Scene Releases Into Rars
i will assume you are root and have full permission to your seedbox, to be able to use rescene we have to use mono framework
---------
how to install mono
DistroPackages/Ubuntu - Mono
I use Ubuntu Lucid 10.04 LTS , so i will use badgereports repository ...
1-
add the following line if you are running Lucid 10.04Code:# nano /etc/apt/sources.list
save your workCode:deb http://badgerports.org lucid main
2-
adding the authentication key
Code:gpg --keyserver subkeys.pgp.net --recv-keys 0E1FAD0C3-Code:gpg --export --armor 0E1FAD0C | sudo apt-key add -
update the sources
4- install mono-development packageCode:# apt-get update
5-Code:# apt-get install mono-devel
download resecen and rescene resampler in any folder, my choice is /usr/bin
extract both of them
----------Code:# unrar e *.rar
how to generate .srr files for every release on your seedbox?
you can manually navigate thru directories but it would be tedious and insulting to the command line
I like to do it this way which is more effecient and eye-pleasing
this way you will generate .srr file for every release in the directory "downloads"Code:# cd downloads; for f in $(find ./ -name '*.sfv');do mono /usr/bin/srr.exe $f; done
---------------
you can do the same to generate sample using mkv resample (srs.exe) but i wouln't talk about it here
hope this tutorial is helpful