mss盒子的超频,增加内存,修改管理端口,自动加电命令注意:所有命令均在本人机器通过,但是这些命令务必输入正确,不能有多余空格或其他字符,否则可能刷坏机器。
重启机器,通过附件超级终端连上盒子,看看现在的CPU信息
# cat /proc/cpuinfo
system type : Broadcom BCM947XX
processor : 0
cpu model : BCM3302 V0.6
BogoMIPS : 263.78
wait instruction : no
microsecond timers : yes
tlb_entries : 32
extra interrupt vector : no
hardware watchpoint : no
VCED exceptions : not available
VCEI exceptions : not available
在#提示符下输入
# nvram set clkfreq=300,150
# nvram commit
# reboot
再看看
BusyBox v1.00-pre2 (2006.02.01-23:21+0000) Built-in shell (msh)
Enter ‘help’ for a list of built-in commands.
# cat /proc/cpuinfo
system type : Broadcom BCM947XX
processor : 0
cpu model : BCM3302 V0.6
BogoMIPS : 299.82
wait instruction : no
microsecond timers : yes
tlb_entries : 32
extra interrupt vector : no
hardware watchpoint : no
VCED exceptions : not available
VCEI exceptions : not available
2、设置128M内存
对于加到128M内存的盒子执行
#nvram set sdram_init=0×0011
#nvram set sdram_ncdl=0
#nvram commit
正常运行后reboot,就可以看见128M在眼前晃了!
# free
total used free shared buffers
Mem: 126872 110056 16816 0 50224
Swap: 499992 0 499992
Total: 626864 110056 516808
3、修改web管理的端口
为了下一步安装lighttpd不会产生端口冲突,先把默认的web管理的端口从80改到8080
#nvram set web_configuration_port=8080
#nvram commit
4、加电自动开机(Auto PowerOn)
#nvram unset cfe_boot_wait_gpio
#nvram commit
取消:
#nvram set cfe_boot_wait_gpio=0
#nvram commit
#reboot
文章评论