找回密码
 立即注册

QQ登录

只需一步,快速开始

搜索
广告投放联系QQ68610888
查看: 19767|回复: 15

【原创】rtorrent脱机下载,rutorrent和rtwi实现web控制的傻瓜式完美教程之三

[复制链接]
本帖最后由 hjshjs 于 2009-9-6 15:03 编辑

剩下一点点,恩山一定要我再开一贴


(二)rtwi控制界面
http://projects.cyla.homeip.net/rtwi/下载最新的rtwi程序rtwi-0.3.4-090726.tar.gz(在页面下部)
在电脑上用winrar解压后,把rtwi文件夹放到/jffs/opt/share/www目录。
1、用winscp打开/jffs/opt/share/www/rtwi/includes目录的rtwi.conf.sample文件
修改如下地方:
base =       http://路由器ip地址:8081/rtwi #比如:http://192.168.2.1:8081/rtwi
user_conf =  /opt/etc/users.conf #这个建议放在这里。
修改完毕保存,然后把rtwi.conf.sample文件更名为rtwi.conf即可
2、用winscp打开/jffs/opt/share/www/rtwi/includes目录的users.conf.sample文件
把不用的段落用#注释掉
[你自己的用户名]
address =          :5000
pass =       19245a7ea3175527553b79ace1b19fbe21141f3d
密码pass是sha1加密,可以在: http://www.johnmaguire.us/tools/hashcalc/index.php网页生成。
如:


修改完毕保存,然后把users.conf.sample复制到/jffs/opt/etc文件夹,并重命名为users.conf
在浏览器输入http://路由器ip地址:8081/rtwi,输入用户名和密码,即可登录。界面如下图:
[/url]

至此,大功告成。

参考资料:
7231-4P下DD-WRT设置》[url=http://blog.chinaunix.net/u/525/showart_1759737.html]http://blog.chinaunix.net/u/525/showart_1759737.html

scutlxb 的https://www.right.com.cn/forum/viewthread.php?tid=16746&extra=&page=2
rtorrent web的一个超强悍管理程序 rutorrent 教程https://www.right.com.cn/forum/viewthread.php?tid=22182
dd-wrt安裝SAMBA 3.0 http://hi.baidu.com/westhack/blog/item/288fb21797c5b30ec83d6d69.html
感谢上述网友。

本帖子中包含更多资源

您需要 登录 才可以下载或查看,没有账号?立即注册

×
我的恩山、我的无线 The best wifi forum is right here.
沙发!感谢楼主!
我的恩山、我的无线 The best wifi forum is right here.
回复

使用道具 举报

rtwi到是没有用过。。试试。
我的恩山、我的无线 The best wifi forum is right here.
回复

使用道具 举报

教程很详细
我的恩山、我的无线 The best wifi forum is right here.
回复

使用道具 举报

楼主 在不在呵 每一部都按照你写的来 到了最后php也好了 web控制也装了
运行rtwi和rutorrent才发现 rtorrent根本没启动
就是这步
/opt/bin/screen -d -m /opt/bin/rtorrent -n -o import=/opt/root/.rtorrent.rc
运行后无任何提示
之前之后的安装都无问题 何解
我的恩山、我的无线 The best wifi forum is right here.
回复

使用道具 举报

我把重要部分转过来,免得丢失

dd-wrt安裝SAMBA 3.02009年02月08日 星期日 21:23来源:http://digiland.tw/

很多朋友遇到BT下載回來的檔案,常遇到檔名亂碼、無法讀取、複製或甚至無法移除,這些問題基本上是因為Oleg韌體內建的SAMBA版本為2.x版,這個版本並不支援UTF-8編碼。

既然如此,Oleg兄為何不將SAMBA 3置入韌體呢?

好問題!因為SAMBA 3檔案下載回來就已經21MB左右,如此龐然大物當然放不進4MB/8MB的flash ROM裡,因此為了解決上述的困擾,只好自立自強裝SAMBA 3囉。

首先更新ipkg

$ ipkg update
$ ipkg upgrade

下載最新版SAMBA 3

代碼:
$ cd /opt
$ wget http://ipkg.nslu2-linux.org/feeds/optware/oleg/cross/stable/samba_3.0.30-1_mipsel.ipk

下載完成後,即可開始安裝 SAMBA 3

$ ipkg install samba_3.0.30-1_mipsel.ipk

注意:
1. samba 3.0 更新速度相當快,請自行下載最新版 samba_3.0.xxxx_mipsel.ipk ,xxxx 為一數據編號。
2. 這裡不建議直接下ipkg install samba指令,而是先下載samba_3.0.xxxx_mipsel.ipk再行安裝,因為安裝下載的時間冗長(約21MB),系統並無任何進度指示,疑似當機

編輯 /opt/etc/samba/smb.conf

$ nano /opt/etc/samba/smb.conf

內容請參考以下設定,藍色字請依實際環境做修正

[global]
bind interfaces only = yes
interfaces = 192.168.1.1/24
workgroup = Workgroup
server string = ASUS_500GP
guest account = admin
security = share
load printers = no
socket options = TCP_NODELAY IPTOS_LOWDELAY SO_KEEPALIVE
netbios name = ASUS_500GP
browseable = yes
dns proxy = no
guest ok = yes
guest only = no
log level = 1
max log size = 100
encrypt passwords = yes
preserve case = yes
short preserve case = yes
dos charset = UTF-8
unix charset = UTF-8
display charset = UTF-8
wins support = yes
time server = yes
os level = 255
local master = yes
domain master = yes
preferred master = yes
hosts allow = 192.168.1.1/24

[Share]
path = /opt/share
browseable = yes
writable = yes

[USB]
path = /tmp/mnt/disc1
browseable = yes
writable = yes

編輯 /opt/etc/init.d/S08samba

$ nano /opt/etc/init.d/S08samba

將設定 samba_active=0 改成 samba_active=1

將原有 /opt/etc/init.d/S97samba 移除或更名

$ mv /opt/etc/init.d/S97samba /opt/etc/init.d/K97samba

停止現有SAMBA 2程序

$ killall smbd
$ killall nmbd

啟動SAMBA 3

$ /opt/etc/init.d/S08samba

進入網路芳鄰瀏覽,如果能正常看到分享磁碟就可以收工
我的恩山、我的无线 The best wifi forum is right here.
回复

使用道具 举报

请楼主高手告诉我这是为什么啊?每一步都按你说的做了,在这个图添加种子后出现如图所示,下载列表没有任务

然后用rtwi登录进去后又出现如图所示,是否以为着rtorrent根本没启动啊?

本帖子中包含更多资源

您需要 登录 才可以下载或查看,没有账号?立即注册

×
我的恩山、我的无线 The best wifi forum is right here.
回复

使用道具 举报

 楼主| | 显示全部楼层
没错,请重新运行下rtorrent再打开
我的恩山、我的无线 The best wifi forum is right here.
回复

使用道具 举报

十分好的帖子,要顶,学习了。
我的恩山、我的无线 The best wifi forum is right here.
回复

使用道具 举报

我的与7楼的情况一样,还没有弄好,不过楼主的教程是很好的教程。顶!
我的恩山、我的无线 The best wifi forum is right here.
回复

使用道具 举报

运行rtwi和rutorrent才发现 rtorrent根本没启动
就是这步
/opt/bin/screen -d -m /opt/bin/rtorrent -n -o import=/opt/root/.rtorrent.rc
运行后无任何提示
之前之后的安装都无问题 何解
我也是啊
我的恩山、我的无线 The best wifi forum is right here.
回复

使用道具 举报

顶下,我也是11楼的问题
我的恩山、我的无线 The best wifi forum is right here.
回复

使用道具 举报

谁来帮我解决啊
我的恩山、我的无线 The best wifi forum is right here.
回复

使用道具 举报

rtwi的缺省密码是什么啊?
我的恩山、我的无线 The best wifi forum is right here.
回复

使用道具 举报

请楼主高手告诉我这是为什么啊?每一步都按你说的做了,在这个图添加种子后出现如图所示,下载列表没有任务
23370
然后用rtwi登录进去后又出现如图所示,是否以为着rtorrent根本没启动啊?
23371
roy325 发表于 2009-10-16 21:38


出现此问题的朋友注意
请把这句话
upload_rate = 60
改为
#upload_rate = 60
我试出来了
我的恩山、我的无线 The best wifi forum is right here.
回复

使用道具 举报

您需要登录后才可以回帖 登录 | 立即注册

本版积分规则

关闭

欢迎大家光临恩山无线论坛上一条 /1 下一条

有疑问请添加管理员QQ86788181|手机版|小黑屋|Archiver|恩山无线论坛(常州市恩山计算机开发有限公司版权所有) ( 苏ICP备05084872号 )

GMT+8, 2024-4-28 15:13

Powered by Discuz! X3.5

© 2001-2024 Discuz! Team.

| 江苏省互联网有害信息举报中心 举报信箱:js12377 | @jischina.com.cn 举报电话:025-88802724 本站不良内容举报信箱:68610888@qq.com 举报电话:0519-86695797

快速回复 返回顶部 返回列表