用户管理,包括密码修改等(不可改权限)
打印机服务器管理
Delete Print Queue
打印机服务器设置删除
设置管理
包括报警设置、液晶屏亮度、重启、关机等
安装optware和BT软件rtorrent
在PC上安装JAVA,双击此处安装,
Java.exe。
关闭所有的防火墙(包括系统自带防火墙、杀毒软件等),
将下面文件保存在电脑分区根目录下(尽量放于根目录下)
在操作系统中,点击“开始”—“运行”—输入“CMD”打开以下界面
进入存放acp_commander.jar目录中,如存放在G:盘,则输入
回车后,输入
java -jar acp_commander.jar -t 192.168.1.XXX –o
192.168.1.XXX代表buffalo的地址,例如192.168.0.129
必须进行以上操作,否则无法进行下面的操作
如果看到以上信息后,证明已经成功打开设备的23端口,可以继续进行其他操作,在屏幕中输入
telnet 192.168.0.129 回车后
60秒无操作,自动退出。 用户:root 密码:空
成功进入
去WEB页面建立目录把下载optware复制过去,假设我建立了BT而且只接了1只硬盘.
在telnet里输入
cd /mnt/disk1/bt
sh lspro-bootstrap_1.2-5_arm.xsh
ipkg update
ipkg upgrade
跟着安装必要的软件
ipkg install openssh
ipkg install screen
ipkg install rtorrent
现在修改rtorrent的配置文件了
配置rtorrent
执行 vi /opt/etc/rtorrent.conf
按往下键找到 (修改是按 i 键) 。 。 。
# Global download rate in KiB. \
download_rate = 80 <--------全局下载速率,单位是KB. \代表无限制(默认是80)
# Global upload rate in KiB. \
upload_rate = 80 <--------全局上传速率,单位是KB. \代表无限制(默认是80) 。 。 。
# Default directory to save downloaded files. Note it doesn't support # space yet.
directory = /opt/share/torrent/work/
<--默认下载目录,下载好的文件会放到这里(建议改为/share/Public/bt/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
<--默认种子目录,放到这里就会自动开始下载(建议改为/share/Public/bt/dl目录下)
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
<--默认监视目录,是一个非常有用的功能(建议改为/share/Public/bt/session目录下) 。 。 。