Giter VIP home page Giter VIP logo

n0l1mit's Introduction

N0L1mIT

No Limit - 無疆

down down down down down

What

This Docker image contains aMule and aria2, which supports downloading various kinds of files, such as: ed2k, magnet, and etc.

HOWTO

  • Build

    # Assume you're in this project's root directory, where the Dockerfile is located
    docker build -t downloader .
    
    # Build with arguments, set your own passwords instead of the default ones
    docker build --build-arg EC_PASSWORD=<YourECPassword> --build-arg ADMIN_PASSWORD=<YourAdminPassword> -t downloader .

    Default passwords are here

  • Play

    # Run a container with interactive shell
    docker run -it -p 4711:4711 --name downloader downloader /bin/bash
    
    # Run a container in the background
    docker run -d -p 4711:4711 --name downloader downloader
    # Attach to the background running container
    docker exec -it downloader /bin/bash
  • Trick

    A dotfile has been added to the Docker image, which contains a very nice obfuscate function. After sourcing it, you can use it easily to pack the downloaded file(s) together with a dummy file, which would change the file's MD5 signature ;)

  • Manage

    • To access the admin panel (aMuleWeb) to control aMule by web interface: http://<YourIPAddress>:4711/

    • Admin panel password: <ADMIN_PASSWORD>, which was set when building the Docker image

    • aMule download directory: ~/.aMule/Incoming

    • To download ed2k file: ed2k "<link>"

    • To control aMule by command-line, using aMuleCMD. E.g.: to show download queue - show DL

    • To use aria2 to download: aria2c '<magnet_link>'

  • Done

    To stop and remove unwanted container(s)

    temp=$(docker ps -a | grep 'downloader' | awk '{ print $1 }'); docker stop $temp &> /dev/null && docker rm $temp &> /dev/null

n0l1mit's People

Contributors

thyrlian avatar

Watchers

James Cloos avatar  avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.