Jump to content

b0mb

Members
  • Posts

    116
  • Joined

  • Last visited

Posts posted by b0mb

  1. On 5/12/2020 at 3:16 PM, IronBeardKnight said:

    A Small Guide

     

    For those that want to use the new features but are a little lost or perhaps this will save you some time.
     

     

     

    Open Unraid CMD.

        cd /boot/config/plugins/ca.mover.tuning

        sudo nano skiplist.txt

     

    In the nano editor you can list your locations to skip like the following:

    image.png.7244f4c9f55bfa2d7d4bab2f055b0fc0.png 

     

       Ctl + o 

       Ctl +x

     

    Note: The list of locations may include or not include /mnt/cache/ as this is already catered for withing the mover script

     

    Find Specific files of a name or kind you may find for example all .png in a location  and then put them in your exclusion list incase they are mixed in with other files and such example below.


      find "/mnt/cache" -type f \( -name "*.png"\) -print


    Open CA Mover Tuning GUI

    In CA Mover Tuning Plugin Set the location of your skiplist.txt as below

        File list path: /boot/config/plugins/ca.mover.tuning/skiplist.txt


    image.thumb.png.b25b7d3f362ec74b73d1286ca274125d.png

     

    So can i put whole folders in to that textfile for the skipping list?

  2. Ich habe jetzt mal den Binhex Container von Krusader installiert. Der unterstützt SMB und hat mein Problem somit vorerst gelöst. ;)

     

    Edit:

     

    Habe mich am Wochenende nun noch mal mit der Ordnerstruktur auseinandergesetzt und weiss nun auch, wo ich die Date via MC verschieben kann, damit alles da landet, wo es hingehört. ;)

  3. Sorry, dass mit dem falschen Forum hatte ich nicht auf dem Schirm.

     

    Ich arbeite halt am liebsten mit dem MC und da habe ich ja die beiden User Ordner und den Cache Ordner, mit denen ich arbeiten würde.

     

    Da stellt sich jetzt halt die Frage, wie ich mittels MC die Daten korrekt kopiere oder verschiebe, so dass diese genauso behandelt werden, 

    als wenn ich sie über SMB verschoben hätte.

     

    Was natürlich auch noch eine Idee wert wäre... Double Commander Container und dort die SMB Freigaben einrichten. Krusader ist nicht mein Ding. ;)

  4. Hi,

    nach einiger Abstinenz habe ich mal wieder mein Brocken auf unRAID aufgesetzt. Es gibt halt doch nichts besseres. ;)

     

    Nun habe ich Shares eingerichtet, die den Cache bevorzugen und dann später mal vom Mover auf das Array verfrachten.

     

    Früher habe ich über Windows mit dem Total Commander auf die SMB-Freigaben zugegriffen und dann wurde natürlich immer alles korrekt behandelt. 

     

    Von wo nach wo muss ich jetzt kopieren, damit auch korrekt läuft, wenn ich z. B. mit dem MC direkt aus der Shell auf dem Server kopiere oder verschiebe?

     

    Greetz!

     

    b0mb

  5. after todays latest update i get "internal server error" while opening papermerge

     

    this is what the container log says

     

    During handling of the above exception, another exception occurred:
    
    Traceback (most recent call last):
    File "./manage.py", line 18, in <module>
    raise ImportError(
    ImportError: Couldn't import Django. Are you sure it's installed and available on your PYTHONPATH environment variable? Did you forget to activate a virtual environment?
    [uwsgi-daemons] respawning "/usr/bin/python3 ./manage.py worker" (uid: 1000 gid: 100)
    Traceback (most recent call last):
    File "./manage.py", line 10, in <module>
    from django.core.management import execute_from_command_line
    ModuleNotFoundError: No module named 'django'

    edit: meanwhile the container has been fixed ;)

  6. 10 hours ago, Maddeen said:

    Due to my absolutly knowledge-less please let me please ask another question - if the solution is just easy as you describe it, why there's a need for a "mod" instead of wrapping the needed tesserac ocr files (1540kb of data as said in the shell log below) directly in the docker container providing all users a simple language switch?

    i guess the mod is the cleanest solution as its provided by the builder of the container ;)

    10 hours ago, Maddeen said:

    And ...  I get some (maybe?) errors when running the shell command - as you can see here.

    Anything to worry about? 

    dunno.... it seems to work ;)

    • Like 1
  7. to get german the interface in german language add the following to papermerge.conf.py in appdata folder

    LANGUAGE_CODE = "de-DE"

    to get german language for OCR go to docker shell and type

    apt-get install tesseract-ocr-deu

    and change the following in papermerge.conf.py like this

    OCR_DEFAULT_LANGUAGE = "deu"
    
    OCR_LANGUAGES = {
        "deu": "Deutsch",
    } 

    And voila! German interface and OCR. ;) 

    • Like 5
  8. On 10/4/2020 at 12:02 AM, saarg said:

    Sorry. it's not available yet. You can see here when it will be available.

     

    The readme is at both github and docker hub, which you already found.

    Shouldn´t it be available right now?

     

    I´ve added the key to the unraid template but it did not load ^^

     

    edit: i guess the mod isn´t final yet ....

  9. On 9/8/2020 at 3:40 PM, b0mb said:

    guys my notify script still doesn´t work with the container since it changed to python3

     

    when i try to send a test msg it say that the SIX module is missing

     

    pls any1 know how to fix this?

    so adding the following solves the problem 

     

    run apk add py3-chardet && \
        apk add py3-pip && \
        pip uninstall -y apprise && \
        pip install apprise

    how can i add that persistent to the container?

×
×
  • Create New...