Jump to content

Meles Meles

Members
  • Posts

    54
  • Joined

  • Last visited

Posts posted by Meles Meles

  1. OK..

     

    We all know that the WebGUI listens on ports 80 and 443 (as per "normal"). My question is - can i also make it listen on another port (> 1000 for SSH Port forwarding ease)? I don't particularly want to lost "normal" port 80, but I can do if need be.

     

    Any ideas on how to achieve this?

     

    Cheers

  2. Hey Marc, 

     

    Have you got this script on GitHub, that way 

     

    (delete as applicable for your own Use Case) 

     

    - The (extra) lazy amongst us could just pull changed versions rather than copy/paste

    - The more anal amongst us can more easily validate that we're content with the changes before implementing

    - The more helpful amongst us can do PRs and "help" with your script development

     

    Cheers

     

    Badger

  3. TL;DR - this needless enhancement may already have been posted - but....

     

    give a bit of feedback on the .DS_Store file deletion

     

    #!/bin/bash
    echo "Searching for (and deleting) .DS_Store Files (this may take a a while)"
    
    cnt=`find /mnt/user -maxdepth 9999 -noleaf -type f -name ".DS_Store" -exec rm "{}" \; -print | wc -l`
    
    echo "$cnt files deleted"

     

×
×
  • Create New...