21 Listopada 2024 23:22:18
Nawigacja
· Strona Główna
· Forum

· Tomato by Shibby
· FreshTomato


Wątki na forum
Najnowsze dyskusje
· [S] Asus RT-AC56U
· DIR868l OFW asus vs ...
· Szukam zaproszenia n...
· [MOD] FreshTomato-AR...
· Asus RT-AC5300 ,prob...
· archer c6 v3.20
· [S] Nighthawk R7000P...
· [S]Asus RT-AC5300 - ...
· Tanie N100 na promce...
· net z telefonu wifi+...
· Tomato - bugi/proble...
· HUAWEI z światłowodem
· Asus TUF-AX3000_V2 p...
· rt-ax88upro częste ...
· [Howto] Xpenology na...
· Jaki router pod Open...
· Ruter z tomato
· Czy to jeszcze NAS?
· RT AC66U B1
· Wireguard na FreshTo...
Najpopularniejsze obecnie wątki
· Szukam zaproszeni... [19]
· DIR868l OFW asus ... [8]
· [S] Asus RT-AC56U [0]
Ankieta
Jaki procesor posiada twój router?

Broadcom MIPSEL
Broadcom MIPSEL
36% [151 głosów]

Broadcom ARM
Broadcom ARM
52% [219 głosów]

Atheros
Atheros
5% [22 głosów]

Marvell
Marvell
1% [4 głosów]

Ralink
Ralink
1% [3 głosów]

Intel/AMD/VIA
Intel/AMD/VIA
1% [5 głosów]

Żaden z powyższych
Żaden z powyższych
4% [15 głosów]

Ogółem głosów: 419
Musisz zalogować się, aby móc zagłosować.
Rozpoczęto: 02/02/2015 09:38
Twoje IP
18.224.52.108
Zobacz wątek
OpenLinksys » :: PORTAL :: » Tutoriale
 Drukuj wątek
rtorrent+rutorrent=problem
cj_clon
Witam serdecznie wedle wskazówek robie instalacje torrenta i niestety nie mam powodzenia. Robiłem już instalkacje od podstaw 2 razy łącznie z optware i niesttey nie ma postępu może ktoś pomoże??Wyświetla mi coś takiego


[07.01.2013 08:47:34] Zła ścieżka do rTorrenta. Sprawdź, czy jest uruchomiony. Sprawdź też ustawienia $scgi_port oraz $scgi_host settings w config.php oraz scgi_port w pliku konfiguracyjnym rTorrent


Po wydaniu komendy: /opt/etc/init.d/rtorrent attach dostaje komunikat:

dtach: /tmp/rtorrent: No such file or directory


Po wydaniu polecenia rtorrent -o import=/opt/etc/rtorrent.conf otrzymuje:

rtorrent: Could not lock session directory: "/opt/share/torrent/session/", No such file or directory


A oto mnoje konfigi:rtorrent

#!/opt/bin/bash
PATH=/sbin:/bin:/usr/bin:/usr/sbin:/opt/bin:/opt/sbin

RTORRENT_SOCKET=/tmp/rtorrent
RTORRENT_CONF=/opt/etc/rtorrent.conf

test -x /opt/bin/dtach || ipkg install dtach

start() {
if [ -e ${RTORRENT_SOCKET} ] then
echo "Socket ${RTORRENT_SOCKET} exist. rtorrent not started."
exit 1
fi
echo "Starting rtorrent with dtach on ${RTORRENT_SOCKET} ..."
rm -r /tmp/rtorrent 2> /dev/null
rm -r /nas/download/session/rtorrent.lock 2> /dev/null
/opt/bin/dtach -n ${RTORRENT_SOCKET} /opt/bin/rtorrent -n -o
import=${RTORRENT_CONF}
echo "Configuration's setting are located in ${RTORRENT_CONF}"
echo "done."
}

stop() {
echo -n "Shutting down rtorrent... "
killall rtorrent
echo "done"
}

case "$1" in
start)
start
;;
stop)
stop
;;
restart)
stop
sleep 1
start
;;
attach)
dtach -a ${RTORRENT_SOCKET}
;;
*)
echo "Usage: $0 (start|stop|restart|attach)"
exit 1
;;
esac



rtorrent.conf

#min_peers = 40
#max_peers = 100
#min_peers_seed = 10
#max_peers_seed = 50
#max_uploads =15

download_rate = 150
upload_rate = 8

directory = /nas/download

session = /nas/download/session

port_range = 51514-51515
port_random = yes
check_hash = yes
use_udp_trackers = yes

scgi_port = 127.0.0.1:12345

# This is an example resource file for rTorrent. Copy to
# ~/.rtorrent.rc and enable/modify the options as needed. Remember to
# uncomment the options you wish to enable.

# Minumum amount of peers to connect per torrent, if available.
min_peers = 20

# Minumum amount of peers to connect per torrent.
max_peers = 40

# Same as above but for seeding completed torrents (-1 = same as downloading)
#min_peers_seed = 10
#max_peers_seed = 20

# Maximum number of simultanious uploads per torrent.
max_uploads = 5

# Global download rate in KiB. "0" for unlimited.
download_rate = 80

# Global upload rate in KiB. "0" for unlimited.
upload_rate = 80

# Default directory to save downloaded files. Note it doesn't support
# space yet.
directory = /opt/share/torrent/work/

# Watch a directory for new torrents, and stop those that have been deleted.
schedule = watch_directory,5,5,load_start=/opt/share/torrent/dl/*.torrent
schedule = untied_directory,5,5,stop_untied=

# Close torrents when diskspace is low.
#schedule = low_diskspace,5,60,close_low_diskspace=100M

# Default session directory. Make sure you don't run multiple instance
# of rtorrent using the same session directory. Perhaps using a
# relative path?
session = /opt/share/torrent/session

# The ip address reported to the tracker.
#ip = rakshasa

# The ip address the listening socket and outgoing connections is
# bound to.
#bind = rakshasa

# Port range to use for listening.
port_range = 51777-51780

# Start opening ports at a random position within the port range.
#port_random = no

# Check hash for finished torrents. Might be usefull until the bug is
# fixed that causes lack of diskspace not to be properly reported.
#check_hash = no

# Set whetever the client should try to connect to UDP trackers.
#use_udp_trackers = yes

# Alternative calls to bind and ip that should handle dynamic ip's.
#schedule = ip_tick,0,1800,ip=rakshasa
#schedule = bind_tick,0,1800,bind=rakshasa

#
# Do not modify the following parameters unless you know what you're doing.
#

# Hash read-ahead controls how many MB to request the kernel to read
# ahead. If the value is too low the disk may not be fully utilized,
# while if too high the kernel might not be able to keep the read
# pages in memory thus end up trashing.
#hash_read_ahead = 10

# Interval between attempts to check the hash, in milliseconds.
#hash_interval = 100

# Number of attempts to check the hash while using the mincore status,
# before forcing. Overworked systems might need lower values to get a
# decent hash checking rate.
#hash_max_tries = 10

# Max number of files to keep open simultaniously.
#max_open_files = 128

# Number of sockets to simultaneously keep open.
#max_open_sockets =


# Example of scheduling commands: Switch between two ip's every 5
# seconds.
#schedule = "ip_tick1,5,10,ip=torretta"
#schedule = "ip_tick2,10,10,ip=lampedusa"

# Remove a scheduled event.
#schedule_remove = "ip_tick1"

# Stop torrents when reaching upload ratio in percent,
# when also reaching total upload in bytes, or when
# reaching final upload ratio in percent.
# example: stop at ratio 2.0 with at least 200 MB uploaded, or else ratio 20.0
#schedule = ratio,60,60,"stop_on_ratio=200,200M,2000"
schedule = ratio,30,60,stop_on_ratio=200


# Encryption options, set to none (default) or any combination of the following:
# allow_incoming, try_outgoing, require, require_RC4, enable_retry, prefer_plaintext
#
# The example value allows incoming encrypted connections, starts unencrypted
# outgoing connections but retries with encryption if they fail, preferring
# plaintext to RC4 encryption after the encrypted handshake
#
# encryption = allow_incoming,enable_retry,prefer_plaintext

# Enable DHT support for trackerless torrents or when all trackers are down.
# May be set to "disable" (completely disable DHT), "off" (do not start DHT),
# "auto" (start and stop DHT as needed), or "on" (start DHT immediately).
# The default is "off". For DHT to work, a session directory must be defined.
#
# dht = auto

# UDP port to use for DHT.
#
# dht_port = 6881

# Enable peer exchange (for torrents not marked private)
#
# peer_exchange = yes

#
# Do not modify the following parameters unless you know what you're doing.
#


S80lighttpd

#!/bin/sh

prefix="/opt"
PATH=${prefix}/bin:${prefix}/sbin:/sbin:/bin:/usr/sbin:/usr/bin:/opt/bin:/opt/sbin
NAME=lighttpd
DAEMON=${prefix}/sbin/${NAME}
DAEMON_OPTS="-f ${prefix}/etc/lighttpd/lighttpd.conf"

test -x $DAEMON || exit 0

if [ -z "$1" ] ; then
    case `echo "$0" | sed 's:^.*/\(.*\):\1:g'` in
        S??*) rc="start" ;;
        K??*) rc="stop" ;;
        *) rc="usage" ;;
    esac
else
    rc="$1"
fi

case "$rc" in
    start)
   echo "Starting web server: $NAME"
   rm -r /tmp/php-fcgi* 2> /dev/null
   $DAEMON $DAEMON_OPTS
        ;;
    stop)
        if [ -n "`pidof $NAME`" ] then
            echo "Stopping web server: $NAME"
            killall $NAME 2> /dev/null
   kill -9 `pidof php-fcgi` 2> /dev/null
   rm -r /tmp/php-fcgi* 2> /dev/null
        fi
        ;;
    restart)
        "$0" stop
        sleep 1
        "$0" start
        ;;
    *) 
        echo "Usage: $0 (start|stop|restart|usage)"
        ;;
esac

exit 0


config.php


   // configuration parameters

   @define('HTTP_USER_AGENT', 'Mozilla/5.0 (Windows; U; Windows NT 5.1; pl; rv:1.9) Gecko/2008052906 Firefox/3.0', true);
   @define('HTTP_TIME_OUT', 30, true);   // in seconds
   @define('HTTP_USE_GZIP', true, true);
   @define('RPC_TIME_OUT', 15, true);   // in seconds
   @define('LOG_RPC_CALLS', false, true);
   @define('LOG_RPC_FAULTS', true, true);

   $do_diagnostic = true;
   $log_file = '/tmp/errors.log'      // path to log file (comment or make empty to disable logging)
   $saveUploadedTorrents = true;

   $topDirectory = '/'         // Upper available directory. Absolute path with trail slash.

   $scgi_port = 12345;
   $scgi_host = "127.0.0.1";
   $XMLRPCMountPoint = "/RPC2";

   $pathToPHP = ''         // Something like /bin/php. If empty, will be founded in PATH.
   $pathToCurl = ''         // Something like /bin/curl. If empty, will be founded in PATH.

   // For web->rtorrent link through unix domain socket
   // (scgi_local in rtorrent conf file), change variables
   // above to something like this:
   //
   // $scgi_port = 12345;
   // $scgi_host = "unix:///tmp/rpc.socket";

?>


Licze że ktoś jest mi w stanie pomóc.
Z góry dziękuję i pozdrawiam
 
jarekm95
Przepraszam, że zwracam uwagę. Mam jedno zasadnicze pytanie: DLACZEGO W TYM DZIALE? Niedługo na tym forum nowi użytkownicy nie znajdą nic konkretnego :/.
 
labik
@jarekm95 masz rację tutaj już jest ten temat Sad
Asus TUF AX5400
Asus RT-AC68U
 
cj_clon
Hmm no niestety zgadza się nie wtym dziale, nie zauważyłem tego.. Tam jest temat ale jest temat podobny mający inny problem, a jak pisałem tam to nie powiem że mi labik nie podpowiedział, ale niestety to i tak nic nie dało..

A odpowiedz musi działać nie jest taka dokońca prawidłowa patrząc na moj sprzęt więc sory..
 
labik
Najgorsze jest to ,że naburmuszyłeś się bo ktoś nie chce "grzebnać" w Twoim routerze.Najlepszą drogą poznania własnego sprzętu jest właśnie grzebanie w nim samemu.Podałem Ci jak na tacy które configi masz przeglądnąć w poszukiwaniu błędów.W tym temacie wymieniłeś raptem jeden z nich mianowicie rtorrent.conf.Czy ktoś kto chce Ci pomóc musi prosić o pozostałe dwa ? Czy domyślić się co Ty tam masz ?
Asus TUF AX5400
Asus RT-AC68U
 
Przejdź do forum
Zaloguj
Wprowadź adres e-mail lub nazwę użytkownika

Hasło



Nie masz jeszcze konta? Zarejestruj się.

Zapomniałeś/aś hasła?
Aktualnie online
· Gości online: 85

· Użytkowników online: 0

· Łącznie użytkowników: 24,115
· Najnowszy użytkownik: Ja
Czat
Musisz się zalogować, aby opublikować wiadomość.

Maniek91PL
06-11-2024 22:37
dzięki !Grin

maxikaaz
29-10-2024 14:27
@Maniek91PL - Administration=> Admin Access, i tam masz "Allow Wireless Access" do zaznaczenia

Maniek91PL
26-10-2024 22:07
siemka! ktoś przypomni co się ustawiało jeśli nie mogę wejść od strony wifi do tomato? od lan działa

overflow2
04-10-2024 17:34
Kupowałem Asusy n10u albo n12d1 ale nie widzę ich, chyba już nie produkują, Chodzi o coś nowego i taniego. Transfery niewielkie.

maxikaaz
04-10-2024 09:38
@overflow2 patrząc po dostępności funkcji w nowych kompilacjach, to chyba nawet WRT54G/GL jeszcze ma OpenVPN, albo jakiś odpowiednik... zależy, na jakie transfery liczysz.

overflow2
30-09-2024 20:53
Jaki aktualnie najtańszy router do tomato do openvpn?

maxikaaz
27-07-2024 15:07
@servee - na początek router do rozebrania i obejrzenia, ciężko wróżyć tak tylko po objawach

maxikaaz
27-07-2024 14:55
@servee - cały kontroler nie pada tak sobie z powodu "zbiegu okoliczności",
więc prawdopodobnie gdzieś przepięcie.

servee
25-07-2024 13:33
@maxikaaz: działało, aż pewnego pięknego dnia przestało działać. W tym dniu była też burza, ale to raczej zbieg okoliczności.

maxikaaz
25-07-2024 11:38
@servee - o ile problem jest w obrębie samych wyjść (dławiki, warystory), to naprawialne, ale jeśli w samym SoC - to nienaprawialne ze względu na koszta. A co było przyczyną?

95,169,677 unikalnych wizyt