ntorrent 0.5 alpha is near
reading on the site of ntorrent, i saw that the build files are now created.
Some week ago i tried to build the svn version of ntorrent without success, now it just works, and have some really nice improvement, starting from the autoconnect feature, going to a better sorting method and plugins enhancements.
The only thing i miss is the feed option present in some other gui.
from the author site:
Quote:
You can download nTorrent from the "downloads tab" on this page. If you however is interested in the latest version, you can download from the SVN repository.
# svn co
http://ntorrent.googlecode.com/svn/trunk ntorrent
This will create a folder ntorrent containing the sourcefiles in your current working directory. to run the latest version you can issue "ant run" within the ntorrent directory. check build.xml for other build targets.
2 Attachment(s)
ver. 0.5 of nTorrent work without lighttpd and /RPC2 dance :D
ver. 0.5 of nTorrent without lighttpd php and /RPC2 dance compressed guide :D
connection throught SSH on port 5000 (Attach pic.)
UPDATED 10.10.2008
best install after you finished wengi guide (checked on oleg's 1.9.2.7-10, but i don't use 3 partition like /tmp/mnt/disc0_3/torrent/(because have only 16GB Flash drive))
Code:
ipkg update
ipkg upgrade
ipkg install rtorrent
ipkg install screen
mkdir /opt/share/torrent/session
You don't need other packages like php, lighttpd, dependence is OK
rm /opt/etc/rtorrent.conf
nano /opt/etc/rtorrent.conf
Code:
scgi_port = localhost:5000
min_peers = 20
max_peers = 40
max_uploads = 5
download_rate = 0
upload_rate = 30
check_hash = no
directory = /opt/share/torrent/work
schedule = watch_directory,5,5,load_start=/opt/share/torrent/dl/*.torrent
schedule = untied_directory,5,5,stop_untied=
schedule = low_diskspace,5,60,close_low_diskspace=10M
session = /opt/share/torrent/session
port_range = 51777-51780
use_udp_trackers = yes
schedule = ratio,30,60,stop_on_ratio=100
safe_sync = yes
dht = auto
dht_port = 6881
peer_exchange = yes
nano /usr/local/sbin/post-firewall
Code:
iptables -I INPUT 1 -p tcp -i "$1" --syn --dport 51777:51780 -j ACCEPT
iptables -I INPUT 1 -p udp -i "$1" --dport 6881 -j ACCEPT
nano /opt/etc/init.d/S99rtorrent
you must edit some code, to start rtorrent with right config file
Code:
unsharp and change #replace dirlayout=RTORRENT_DEFAULT to: replace dirlayout=RTORRENT_ANOTHER
change user="user" to: user="your_login_name"
change logfile="/opt/var/log/rtorrentInit.log" to: logfile="/opt/share/torrent/rtorrentInit.log"
reboot, wait a minute try to connect ntorrent, happy torrenting :-)
Debugging:
try and watch for errors, ad is in /opt/share/torrent/rtorrentInit.log:
Code:
rtorrent -n -o import=/opt/etc/rtorrent.conf
Credits:
mancub 1st guide
ecori start script changes