Page 1 of 15 1234511 ... LastLast
Results 1 to 10 of 148

Thread: [Support Thread] SAB / SB / CP / HP / Maraschino / LL / Gamez

  1. #1
    Senior Member
    Join Date
    Dec 2011
    Location
    San Luis Obispo, California, United States
    Posts
    717

    [Support Thread] SAB / SB / CP / HP / Maraschino / LL / Gamez

    Sabnzbd / SickBeard / CouchPotato / Headphones / Maraschino / LazyLibrarian / Gamez - Support Thread

    INFO
    This thread is for..
    -supporting the plugins that can be found here - http://forums.freenas.org/showthread...chino-LL-Gamez
    -configuration and general questions about running these plugins
    -collecting and indexing Frequently Asked Questions

    Please check the FAQ and search this and the release thread before asking for help, thanks.
    Last edited by Joshua Parker Ruehlig; 01-06-2013 at 12:32 PM.
    Donations
    PayPal - joshruehlig@gmail.com
    Bitcoin - 18xmRyyDUj1GfNQkAVQU8ekpc8anuxm9QU

  2. #2
    Senior Member
    Join Date
    Dec 2011
    Location
    San Luis Obispo, California, United States
    Posts
    717
    Frequently Asked Questions

    Q: How should I setup my media folders?
    A: http://forums.freenas.org/showthread...ll=1#post39693

    Q: How can I make it so all of my plugins show up on port 80?
    A: http://forums.freenas.org/showthread...ll=1#post33445

    Q: How can I update to a new version of the plugin from an older version?
    A: STOP! Dont update through the FreeNAS gui - http://forums.freenas.org/showthread...ll=1#post39155 or http://forums.freenas.org/showthread...ll=1#post46803

    Q: How do I setup post processing for sickbeard / couchpotato / headphones / ect. ?
    A: http://forums.freenas.org/showthread...5914#post35914 or http://forums.freenas.org/showthread...ll=1#post35912

    Q: How do I update SABnzbd?
    A: http://forums.freenas.org/showthread...ll=1#post41479

    Feel free to add more complete/updated answers to the above questions, or state additional questions you think would be helpful. I'll periodically check this thread and update the FAQ.
    Last edited by Joshua Parker Ruehlig; 01-13-2013 at 06:32 AM.
    Donations
    PayPal - joshruehlig@gmail.com
    Bitcoin - 18xmRyyDUj1GfNQkAVQU8ekpc8anuxm9QU

  3. #3
    Senior Member
    Join Date
    Jun 2012
    Posts
    128
    Is there a changelog for 1.0 to 1.1 for the plugins?

  4. #4
    Senior Member
    Join Date
    Jun 2012
    Posts
    128
    Also the link about backing up the data folders you say
    Code:
    cp /usr/pbi/sabnzbd-`uname -m`/data /usr/pbi/sabnzbd-data-backup
    But it should be
    Code:
    cp -R /usr/pbi/sabnzbd-`uname -m`/data /usr/pbi/sabnzbd-data-backup

  5. #5
    Senior Member
    Join Date
    Dec 2011
    Location
    San Luis Obispo, California, United States
    Posts
    717
    Quote Originally Posted by Wolfeman0101 View Post
    Is there a changelog for 1.0 to 1.1 for the plugins?
    See this post in the release thread - http://forums.freenas.org/showthread...ll=1#post48289
    Donations
    PayPal - joshruehlig@gmail.com
    Bitcoin - 18xmRyyDUj1GfNQkAVQU8ekpc8anuxm9QU

  6. #6
    Senior Member
    Join Date
    Aug 2012
    Posts
    161
    Quote Originally Posted by Wolfeman0101 View Post
    Also the link about backing up the data folders you say
    Code:
    cp /usr/pbi/sabnzbd-`uname -m`/data /usr/pbi/sabnzbd-data-backup
    But it should be
    Code:
    cp -R /usr/pbi/sabnzbd-`uname -m`/data /usr/pbi/sabnzbd-data-backup
    -a is better. From the man page:

    -a Archive mode. Same as -RpP.
    and specifically, the -p option

    -p Cause cp to preserve the following attributes of each source file
    in the copy: modification time, access time, file flags, file mode,
    user ID, and group ID, as allowed by permissions.

    If the user ID and group ID cannot be preserved, no error message
    is displayed and the exit value is not altered.

    If the source file has its set-user-ID bit on and the user ID can-
    not be preserved, the set-user-ID bit is not preserved in the
    copy's permissions. If the source file has its set-group-ID bit on
    and the group ID cannot be preserved, the set-group-ID bit is not
    preserved in the copy's permissions. If the source file has both
    its set-user-ID and set-group-ID bits on, and either the user ID or
    group ID cannot be preserved, neither the set-user-ID nor set-
    group-ID bits are preserved in the copy's permissions.
    This way permissions should be preserved when copying to backup and back. Though of course it never hurts to run a "chown -R media:media /usr/pbi/sickbeard-`uname -m`/data", either.

  7. #7
    Senior Member
    Join Date
    Jun 2012
    Posts
    128
    Quote Originally Posted by toddos View Post
    -a is better. From the man page:



    and specifically, the -p option



    This way permissions should be preserved when copying to backup and back. Though of course it never hurts to run a "chown -R media:media /usr/pbi/sickbeard-`uname -m`/data", either.
    I was going to just make a post because I was working through it all and lost all my permissions. -a is best.

    Also I wouldn't mv them back because you can accidentally overwrite all your settings.

    Code:
    service sabnzbd onestop
    
    cp -a /usr/pbi/sabnzbd-`uname -m`/data /usr/pbi/sabnzbd-data-backup
    Then I just delete the plugin through the GUI because I was having issues using the update through the GUI. Then I add it back.

    Code:
    rm -r /usr/pbi/sabnzbd-`uname -m`/data/
    
    cp -a /usr/pbi/sabnzbd-data-backup/* /usr/pbi/sabnzbd-`uname -m`/data
    
    service sabnzbd onestart

  8. #8
    Senior Member
    Join Date
    Dec 2011
    Location
    San Luis Obispo, California, United States
    Posts
    717
    Wolfman or toddos, Mind making one generic post with all the update information pertainable to any of the plugins? Then I'll just switch out the link
    Donations
    PayPal - joshruehlig@gmail.com
    Bitcoin - 18xmRyyDUj1GfNQkAVQU8ekpc8anuxm9QU

  9. #9
    Senior Member
    Join Date
    Aug 2012
    Posts
    161
    Josh, I posted this not too long ago. Would that be sufficient?

  10. #10
    Junior Member
    Join Date
    Oct 2012
    Posts
    12
    I decided to update headphones from 0.9 to 1.1 for ffmpeg support. I backed up my data file, delete the 0.9 plugin and installed the 1.1 plugin through the FreeNAS web GUI. However, when I try to start Headphones from the GUI or CLI it won't start. I get the the following error from the CLI. Any ideas?

    Code:
    jail# service headphones onestart
    Traceback (most recent call last):
      File "/usr/pbi/headphones-amd64/Headphones/Headphones.py", line 22, in <module>
        import headphones
      File "/usr/pbi/headphones-amd64/Headphones/headphones/__init__.py", line 22, in <module>
        import sqlite3
      File "/usr/pbi/headphones-amd64/lib/python2.7/sqlite3/__init__.py", line 24, in <module>
        from dbapi2 import *
      File "/usr/pbi/headphones-amd64/lib/python2.7/sqlite3/dbapi2.py", line 27, in <module>
        from _sqlite3 import *
    ImportError: /usr/pbi/headphones-amd64/lib/libsqlite3.so.8: Undefined symbol "posix_fallocate"

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •