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-
Code:
 # nano /etc/apt/sources.list
add the following line if you are running Lucid 10.04
Code:
  deb http://badgerports.org lucid main
save your work
2-
adding the authentication key
Code:
 gpg --keyserver subkeys.pgp.net --recv-keys 0E1FAD0C
Code:
 gpg --export --armor 0E1FAD0C | sudo apt-key add -
3-
update the sources
Code:
 # apt-get update
4- install mono-development package
Code:
 # apt-get install mono-devel
5-
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

Code:
 # cd downloads; for f in $(find ./ -name '*.sfv');do mono /usr/bin/srr.exe $f; done
this way you will generate .srr file for every release in the directory "downloads"

---------------
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