IMI4tth3w

Members
  • Posts

    5
  • Joined

  • Last visited

Posts posted by IMI4tth3w

  1. tried just about everything i can think of to get palworld server to work. can connect just fine locally but no chance over the internet (just says connection timed out). all ports are forwarded same as other game servers i've set up. only thing i've changed to the docker config is the rcon port (25575 is used by minecraft) and the folders for steamcmd and server files (to an ssd i have mounted using unassigned devices at /mnt/disks/.) 

     

    port 8211 is port forwarded UDP in my pfsense router. google fiber doesn't block ports. i do have a domain setup but testing using public ip just to rule that out with no change. domain also pings to my public ip anyways.

     

    anyone have any ideas here?image.thumb.png.efc1c98c571ce32dd8aa4cd9f804354a.png

     

    image.thumb.png.8a3f7bb483d50741d89ad6b4a1dee1d1.png

    image.thumb.png.84af88887b1c805397f6ac11842ffb46.png

  2. 51 minutes ago, hugenbdd said:

    Yup that’s the right find command.

     

    if you look further back in the thread someone posted a good explanation of how to use it.

     

    I’ll still review tomorrow.

     

    Figured it out.

     

    My mover-ignore.txt had the wrong directories in it..

     

    old

    /mnt/user/data/downloads/

     

    fixed

    /mnt/cache/data/downloads/

     

    replaced user with cache...

     

    dumb mistake. But i did find out that adding the * to the end of the directory is not needed. grep is effectively looking at the strings of the file name looking for matches. obviously "/mnt/user" wasn't going to match to anything that is "/mnt/cache"

     

    thank you again for the help!

    • Like 2
  3. 8 minutes ago, hugenbdd said:

    I think you can do this.

    It has been a while since I programmed it and can't review the code right now.  Will look at it tomorrow.

     

    However, you can play with this pretty easily. (without actually moving anything.)

    Create the text file, add the path you don't want moved.  Then change two other settings.

     

    Move Now button follows plug-in filters:   Yes

    Test Mode: Yes

     

    Hit the move now button and then review the sys log (upper right, 2nd most right button.)

     

    If it does what you want, change the test mode back to "no".

     

    Thanks for the quick reply.

    This is exactly what I am doing currently but I don't believe it is working how I intend, but it also might not be working at all.

     

    Here's a snippet of my syslog

    Jul  8 20:51:00 UNRAID root: mvlogger: Adding Skip File List
    Jul  8 20:51:00 UNRAID root: mvlogger: Skip File List Path: /mnt/user/data/mover-ignore.txt
    Jul  8 20:51:00 UNRAID root: mvlogger: Skipfiletypes string: find "/mnt/cache/data" -depth | grep -vFf '/mnt/user/data/mover-ignore.txt'
    Jul  8 20:51:00 UNRAID root: mvlogger: Expected Size of all files for this cache to be moved:
    Jul  8 20:51:00 UNRAID root: mvlogger: find "/mnt/cache/data" -depth -type f -print0 | grep -vFf '/mnt/user/data/mover-ignore.txt' | du -shc --files0-from - | tail -n1
    Jul  8 20:51:00 UNRAID root: grep: (standard input): binary file matches
    Jul  8 20:51:00 UNRAID root: 0#011total
    Jul  8 20:51:00 UNRAID root: mvlogger: Running in Test Mode: find "/mnt/cache/data" -depth | grep -vFf '/mnt/user/data/mover-ignore.txt'

     

    after the last line it outputs the lists of files that it is assumingly going to move. Included in this list is all the files in the directory i specified in the mover-ignore.txt as well as a file i specified just as a test.

     

    I'll keep digging and let you know what I find.
     

    Thank you

  4. First, I wanted to say thank you for this awesome plugin.

     

    Next, I wanted to ask if there was a way to use the "Ignore files listed inside of a text file:" feature to ignore an entire directory instead of just a couple specific files? If not, is this possible in some other way?

     

    Thank you!