Page 30 of 64 FirstFirst ... 20282930313240 ... LastLast
Results 436 to 450 of 958

Thread: [HowTo] Install and configure Oleg's firmware

  1. #436
    Join Date
    Mar 2007
    Location
    Milano - Italy
    Posts
    164
    Recently I updated my Asus WL-500gP with a new WL-500W.
    I updated from Oleg's FW 1.9.2.7-8 to 1.9.2.7-10.
    Everything works fine (same HDD as before with /opt on it), but I'm in doubt about a couple of things. I used vsftp and samba2 (s2 is running under xinetd) installed with ipkg.
    Latest Oleg's firmware has vsftp on it and a Samba version that can be handled by Microsoft Vista.

    Can I remove ipkg installed software and use the built in modules ?
    Is there a way to use actual cfg files for vsftp and samba2 with built in modules ?

    Thanks for your help.

    Max

  2. #437
    Quote Originally Posted by wengi View Post
    Hi@all,

    News for the hanging of transmission webinterface:
    Do the following:
    Install the shell "bash".
    Code:
    ipkg install bash
    Edit transmission.cgi. First line to be replaced with:
    Code:
    #!/opt/bin/bash
    done.

    technical background: The integrated busybox shell and transmission.cgi do not work 100% ok. The exact problem is not pointed out until now.

    29.06.2008

    wengi
    Hi !

    bash depend on libiconv library, you must install it

    ipkg install libiconv

  3. #438

    Remote management Access

    I have a WL520GU. How would I allow remote access to the UI ? I would think its related to SNMP - but totally at a loss about how to go about it. Does anyone know how to allow remote management to my WL520GU access so a technician can debug why my VOip is not working behind it ?
    Thanks!

  4. #439

    need some help !

    Hi to all !

    i have a little problem posted here :

    http://wl500g.info/showthread.php?p=120412#post120412

    if someone can help me , i will apreciate !


    Thx

  5. #440
    Does anyone know where i can find a tutorial on how to install the latest version of transmission? A complete tutorial of how to set up my router wold be preffered. Thank you.

  6. #441
    Quote Originally Posted by lapcat View Post
    Does anyone know where i can find a tutorial on how to install the latest version of transmission? A complete tutorial of how to set up my router wold be preffered. Thank you.
    Start from this topic (skip transmission part).
    Click for transmission 1.3+ tutorial.
    Last edited by kaizen; 06-12-2008 at 22:16.

  7. #442
    It doesn't work. I've noticed that the current transmission version is 1.42b, does it matter?

  8. #443
    Quote Originally Posted by lapcat View Post
    It doesn't work. I've noticed that the current transmission version is 1.42b, does it matter?
    It doesn't matter.
    What's the problem?

  9. #444
    I installed transmission but the webinterface doesn't open.

  10. #445
    Quote Originally Posted by lapcat View Post
    I installed transmission but the webinterface doesn't open.
    Is transmission-daemon running (e.g. top command)?
    Have you fallowed all steps in this post?
    How link you are trying to open looks like?
    Last edited by kaizen; 07-12-2008 at 22:18.

  11. #446
    Are you looking to install the version with clutch ( JavaScript, Ajax) version 1.41 or the older 1.32 version?

  12. #447
    I just want a version that works, the available one is 1.4b

    The link to open the webinterface is http://192.168.1.1:8008/transmission/web
    It doesn't work, even if i try the wan ip address.

    Anyone know where i can find a complete tutorial?

  13. #448
    this is code of this is tutorial
    highlighted in red - error? or not?

    9b. Change Syslog settings

    Code:
    #!/bin/sh
    #
    # Startup script for syslog
    #
    PATH=/opt/bin:/opt/sbin:/opt/local/bin:/sbin:/bin:/usr/bin:/usr/sbin
    
    LOGFILE=syslog.log
    KERNLOGFILE=kern.log
    LOG_OLD=/tmp
    LOG_NEW=/opt/var/log
    
    prefix=""
    sbindir=${prefix}/sbin
    
    NAME=syslogd
    DAEMON=${sbindir}/${NAME}
    DESC="syslogd"
    OPTIONS="-m 0 -O $LOG_NEW/$LOGFILE -S -l 7 -s 0"
    
    case "$1" in
    start0)
    printf "Starting ${DESC}: "
    # Copy old syslog and create symlink to new
    if [ ! -L /tmp/syslog.log ]; then
    cat $LOG_OLD/$LOGFILE >> $LOG_NEW/$LOGFILE
    mv $LOG_OLD/$LOGFILE $LOG_NEW/$KERNLOGFILE
    ln -s $LOG_NEW/$LOGFILE $LOG_OLD/$LOGFILE
    fi
    ${DAEMON} ${OPTIONS}
    printf "${NAME}.\n"
    logger -t ${NAME} "started."
    ;;
    stop)
    if [ -n "`pidof syslogd`" ]; then
    printf "Stopping ${DESC}: "
    killall "${NAME}"
    printf "${NAME}.\n"
    fi
    ;;
    start|restart|force-reload)
    $0 stop
    sleep 1
    $0 start0
    ;;
    *)
    printf "Usage: $0 {start|stop|restart|force-reload}\n" >&2
    exit
    ;;
    esac
    
    exit 0

  14. #449
    The script will create archives
    /opt/var/log/syslog.log.tar.gz and /opt/opt/share/www/access.log.tar.gz ???

    take
    9b. Change Syslog settings
    vi /opt/etc/logrotate.conf

    Code:
    compress
    
    /opt/var/log/syslog.log {
    size 1024k
    weekly
    rotate 9
    postrotate
    killall -HUP syslogd
    endscript
    }
    
    /opt/opt/share/www/access.log {
    size 1024k
    weekly
    rotate 9
    postrotate
    killall -HUP syslogd
    endscript
    }
    
    
    include /opt/etc/logrotate.d

  15. #450
    Join Date
    Aug 2008
    Location
    Poland, Bia³a Podlaska
    Posts
    276
    When i try to run transmission (1.41b3) i have error:
    can't resolve symbol '__libc_pthread_init

    transmission 1.40 works for me.

    What i must to do ?

Page 30 of 64 FirstFirst ... 20282930313240 ... LastLast

Similar Threads

  1. [Howto] Install DLNA media servers for Oleg firmware
    By ecaddict in forum WL-500gP Tutorials
    Replies: 18
    Last Post: 06-06-2017, 07:40
  2. Replies: 24
    Last Post: 05-05-2015, 07:42
  3. Replies: 28
    Last Post: 02-06-2013, 20:58
  4. Replies: 6
    Last Post: 21-09-2012, 17:06
  5. [Howto] Install kernel modules for Oleg firmware
    By ecaddict in forum WL-500gP Tutorials
    Replies: 0
    Last Post: 05-12-2011, 16:18

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
  •