Page 6 of 8 FirstFirst ... 45678 LastLast
Results 76 to 90 of 110

Thread: Amule client for wl500gp

  1. #76
    Hi,

    I followed the steps described in the topic, and succesfully installed amule.
    But after the reboot, the enhanced-ctorrent doesn't work. It says: "Segmentation fault".
    Previously I used it with SEAKY's CTCS, which seems to be OK now, but it doesn't start the torrents.

    Is it because the installed libraries?

    Is it possible to use both (amule and enhanced-ctorrent)?

    Thanks
    Ghostie

  2. #77
    Hi Ghostie,

    I now have both amule and enhanced-ctorrent+ctcs running stable.
    Did you do a ipkg update and upgrade?
    Tomorrow I could check which versions of the packages I have installed, if you want...
    I did install amule first and enhanced-ctorrent later, but that shouldn't make a difference I guess.

    Pim.

    Quote Originally Posted by ghostie View Post
    Hi,

    I followed the steps described in the topic, and succesfully installed amule.
    But after the reboot, the enhanced-ctorrent doesn't work. It says: "Segmentation fault".
    Previously I used it with SEAKY's CTCS, which seems to be OK now, but it doesn't start the torrents.

    Is it because the installed libraries?

    Is it possible to use both (amule and enhanced-ctorrent)?

    Thanks
    Ghostie

  3. #78
    After reinstall enhanced-ctorrent, I managed to run both.

    Thanks,
    Ghostie

  4. #79
    I managed to put amule working Still have low ID, but that's because i did not configure the firewall yet

    It's a fantastic program. Congratulations to the author

    I have 3 questions:

    1. How can we connect to the kad network?
    2. Can we limit the upload speed?
    3. Couldn't it use UPnP to open the ports?


    Regards,

    J. Rosado

  5. #80

    Unhappy LowID

    I've configured my post-firewall file, saved the flash and rebooted. Here is my post-firewall:

    Code:
    #!/bin/sh
    ## FIREWALL
    ## set default policy
    iptables -P INPUT DROP
    ## deny ftp access from WAN
    iptables -I INPUT 1 -p tcp -i "$1" --syn --dport 21 -j ACCEPT
    iptables -A INPUT -p tcp --dport 81 -j ACCEPT
    iptables -A INPUT -p tcp --dport 80 -j ACCEPT
    iptables -A INPUT -p tcp --dport 8008 -j ACCEPT
    iptables -A INPUT -p tcp --dport 4662 -j ACCEPT
    iptables -A INPUT -p udp --dport 4665 -j ACCEPT
    iptables -A INPUT -p udp --dport 4672 -j ACCEPT
    iptables -A INPUT -m state --state ESTABLISHED,RELATED -j ACCEPT
    iptables -P OUTPUT ACCEPT
    iptables -t nat -A PREROUTING -i $1 -p tcp --dport 80 -j DNAT
    --to-destination $4:81
    ## Allow access to various router services from WAN
    ## Remove 22 8008 and 901 if you don't want to logon from WAN
    for P in 65534 22 8008 901; do
      iptables -I INPUT 1 -p tcp --syn -i "$1" --dport $P -j ACCEPT
    doneCreate remaining files:
    
    touch /usr/local/sbin/post-mount
    touch /usr/local/sbin/pre-shutdown
    chmod +x /usr/local/sbin/*
    I managed to connect with HIGHID once, but the load was so high, that i had to reboot.

    Since then, i can not connect with HighID..why?


  6. #81
    Join Date
    Mar 2007
    Location
    Milano - Italy
    Posts
    164
    As many of you from time to time I have to restart amuled from it's sleep.
    What's the best script to monitor if daemon is really working, and, if necessary, restart it ?

    What's the problem running amule as root instead of normal user ?

    I tried using coreutils, but now I should change /.amule and subdir attribs to 777.

    Thanks, Max

  7. #82
    Join Date
    Feb 2007
    Location
    Moscow, Russia
    Posts
    3,805
    As many of you from time to time I have to restart amuled from it's sleep.
    Actually, I don't observe that amuled is freezing. In my system it works for weeks without restarting. However, the gui-s (both web- and remote gui) are freezing from time to time. I use remote gui, so, when I see it frozen I just close it and open again.

    In general none of the network services should be run as root, because there is a potential danger that somebody will find a new (or existing) hole in the application and get control through it over your computer. In this case it is better if the hacked application was run as non privileged user, because it will decrease possible damage.

    I posted here: http://wl500g.info/showpost.php?p=51684&postcount=37 version of S57amuled which will start amuled not as root.

    I suggest that the following is enough (I use these names and locations):
    PHP Code:
    adduser p2p
    chown 
    -R p2p:p2p /opt/home/p2p 
    If amule is installed anew, then it is enough just to add user and run first time amule as this user. amule will create all necessary files itself.
    Last edited by al37919; 16-06-2007 at 23:15.

  8. #83
    Quote Originally Posted by al37919 View Post

    I posted here: http://wl500g.info/showpost.php?p=51684&postcount=37 version of S57amuled which will start amuled not as root.

    I suggest that the following is enough (I use these names and locations):
    PHP Code:
    adduser p2p
    chown 
    -R p2p:p2p /opt/home/p2p 
    Does the oleg firmware for the WL-500gP supports the "adduser" command?

    Mine does not accept that command

  9. #84
    Join Date
    Feb 2007
    Location
    Moscow, Russia
    Posts
    3,805
    ipkg install adduser

  10. #85
    Quote Originally Posted by al37919 View Post
    ipkg install adduser
    Great

    Thanks!

  11. #86
    Join Date
    Mar 2007
    Location
    Milano - Italy
    Posts
    164
    I'm testing in the last week this script in /opt/etc/cron.hourly:

    Code:
    #!/bin/sh
    
     if [[ `LC_ALL="C" amulecmd -P mypassword -c status | grep 'Kad: Connected (ok)' | wc -l` != "1" ]]; then
            /opt/etc/init.d/S57amuled stop
            rm /opt/share/amule/.aMule/muleLock
            cp /opt/share/amule/.aMule/nodes.dat.bak /opt/share/amule/.aMule/nodes.dat
            /opt/etc/init.d/S57amuled start
     fi
    nodes.dat.bak is a Kad nodelist I backed up when aMuled works fine.
    In this way if aMuled appear as not connected to Kad (Kad is the only network I'm able to use due to NATted ISP), the script stops the daemon, remove the lockfile, copy a populated list of Kad nodes and restarts the daemon.
    It seems workin' fine, but sometimes I loose the list of shared files, so aMuled restarts hashing it (a looooooot of time...).

    Don't know if there'a a better way, but this works for me.

    A couple of questions about Remote GUI:

    I'm using aMule Remote GUI on my WinMachine, to control amuled running on WL500gP.
    Is there a way to see amuled statistics ?
    I can read it using "amuled -P mypassword -c statistics" on asus, but I can't see anything using Remote GUI.

    Is there a way to preview downloading files on win gui as I can do with eMule (VLC) ?

    Thanks, Max

    PS: Amule 2.2.0 is really on the way...

  12. #87
    Hi.

    I have installed amule yesterday. Everything is working fine but i have one question. Is it possible to create some kind of script to make amule working only between f.e. 11pm and 8am? I want to use amule only at night but i dont want to do it manual - start at 11pm and stop at 8am. Thanks for helping.

  13. #88
    Join Date
    Mar 2007
    Location
    Milano - Italy
    Posts
    164
    Quote Originally Posted by m-roman View Post
    Hi.

    I have installed amule yesterday. Everything is working fine but i have one question. Is it possible to create some kind of script to make amule working only between f.e. 11pm and 8am? I want to use amule only at night but i dont want to do it manual - start at 11pm and stop at 8am. Thanks for helping.
    Take a look at MacSat's website for cron.

    Max

  14. #89
    Join Date
    Mar 2007
    Location
    Milano - Italy
    Posts
    164
    A new -10 version coming from ipkg-opt upgrade.
    What's new ?

    Max

  15. #90
    Join Date
    Dec 2007
    Location
    spain
    Posts
    9

    Wink Problems

    Hi i've trying to use amule with my wl500w but i'm always the same problem when i run amuleweb and insert my password always said to me "unable to connect to the specified host" and i can't access with web anybody help me


Page 6 of 8 FirstFirst ... 45678 LastLast

Similar Threads

  1. How-to: Use your router as a BitTorrent Client
    By GerardNL in forum WL-700g Tutorials
    Replies: 28
    Last Post: 24-10-2007, 20:38
  2. Firewall dies
    By confused in forum WL-500g Q&A
    Replies: 0
    Last Post: 04-11-2006, 19:09
  3. Cannot enable WEP encryption in client mode
    By eldavies in forum WL-HDD Q&A
    Replies: 0
    Last Post: 07-09-2006, 22:27
  4. Firmware v1.9.2.7 CR4 [Oleg]
    By Oleg in forum WL-500g Firmware Releases
    Replies: 195
    Last Post: 08-08-2006, 14:18
  5. Asus WL-500b & Client Mode
    By cooper.zl in forum WL-500g Q&A
    Replies: 1
    Last Post: 17-10-2004, 19:27

Tags for this Thread

Posting Permissions

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