首先根据处理器选择对应的版本
CPU对应版本:http://luyou.xunlei.com/thread-7465-1-1.html
所有版本集合:http://luyou.xunlei.com/thread-12545-1-1.html
R6100处理器是Atheros AR9344 rev 2
都是用Xware1.0_mipseb_32_uclibc
于是下载Xware1.0.31_mipseb_32_uclibc.zip,解压,并将4个文件上传到路由中或者路由外接的U盘/硬盘中,
我这里把他存在/mnt/sda1/xunlei中,也就是我挂载的U盘的根目录下的xunlei文件夹
当然你也可以把它存在路由器的系统中,如存入/usr/bin/xunlei中也是可以的。
SSH连上路由IP,192.168.1.1
cd /mnt/sda1/xunlei
chmod 777 * -R #设置权限
./portal #启动迅雷
接着就会开始访问迅雷远程地址,获取激活码,
有时候迅雷服务器有问题,获取几十次都失败,过几十分钟再试试
获取到激活码后,就进入yuancheng.xunlei.com,登录进去,捆绑下载器,输入激活码,这样你账号中就有一台下载器关联着你的路由器了,可以通过yuancheng.xunlei.com这个地址操作路由中的迅雷,添加任务下载之类的。
设置开机启动
vi /etc/init.d/xunlei
输入以下内容
#!/bin/sh /etc/rc.common
START=99
start(){
/mnt/sda1/xunlei/portal
}
stop(){
/mnt/sda1/xunlei/portal -s
}
restart(){
/mnt/sda1/xunlei/portal
}
然后保存,退出
cd /etc
chmod -R 777 init.d/xunlei #设置权限
/etc/init.d/xunlei enable #激活开机启动
/etc/init.d/xunlei start #运行start函数启动程序
如果要停止迅雷
cd /mnt/sda1/xunlei
./portal -s
如果要卸载迅雷
rm -rf /mnt/sda1/xunlei #删除目录
rm -rf /etc/init.d/xunlei #删除目录
reboot