Advertisement
Guest User

Untitled

a guest
Nov 17th, 2019
489
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.27 KB | None | 0 0
  1. HOW TO ADD Latest filebot and license
  2.  
  3. Access user's box via SSH
  4.  
  5. mkdir filebot
  6. cd filebot
  7. wget "https://get.filebot.net/filebot/FileBot_4.8.5/FileBot_4.8.5-portable.tar.xz"
  8. tar -xvf FileBot_4.8.5-portable.tar.xz
  9. mv filebot.sh filebot
  10. if user provides filebot license in a reply then do this
  11. nano license.psm copy paste the license and then
  12. ctrl +O and ctrl+X to exit
  13.  
  14. nano .bashrc
  15. go to bottom of the file and add PATH for filebot to overwrite the server version
  16.  
  17. PATH=users-homefolder/filebot/:$PATH
  18.  
  19. for example
  20. PATH=/home/hd1/alchemist/filebot/:$PATH
  21. save the file and exit with ctrl +O and ctrl+X to exit
  22. source .bashrc
  23.  
  24. if user has rtorrent or deluge (or both) access their filebot config and switch from
  25.  
  26. filebot -script /opt/filebot/amc.groovy to filebot -script fn:amc
  27.  
  28. last step
  29. filebot --license license.psm
  30. ^
  31. If you have created the license file then thefile should be in filebot/license.psm so it should be
  32.  
  33. filebot --license filebot/license.psm
  34.  
  35. if user uploaded the license somewhere on his box , you will have to set the path there for example if hte file is in "apps` then it should be
  36.  
  37. filebot --license apps/license.psm
  38.  
  39. that should be it
  40.  
  41. you can check filebot version to confirm success by typing
  42.  
  43. filebot -version it should be 4..8.5
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement