edgemax ER-X基础知识
登录信息
默认密码ubnt:ubnt
默认登录界面
eth0 https://192.168.1.1
console端口速率:115200(ER-X没有console端口)
登录到root帐号
sudo su
sudo -i
出厂化
通电时 reset按10秒,直到eth2端口右侧的灯闪,会自动重启
关电按下reset,再插上电源,直到eth2端口右侧的灯闪
增加硬盘可用空间
(系统升级时硬盘容量不够)
delete system image
sudo apt-get autoclean
sudo du -hcd 2 / | more
sudo rm -R /var/lib/apt/lists
sudo rm -R /var/cache/apt/archives
/root.dev/w/应该是当前运行的系统,不能删除
/root.dev/w.o/是老的系统,自己添加的程序和配置会被移动到这里,容量不够时可以删除
/config这个目录备份配置的时候会被一起备份,并且系统升级也不会删除
自己的配置文件建议放到这里
添加apt-get源
edos版本1.6以后是Debian 7(Wheezy),之前是Debian 6(Squeeze)
https://help.ubnt.com/hc/en-us/articles/205202560-EdgeMAX-Add-other-Debian-packages-to-EdgeOS
configure
set system package repository wheezy components 'main contrib non-free'
set system package repository wheezy distribution wheezy
set system package repository wheezy url http://http.us.debian.org/debian
set system package repository wheezy-security components main
set system package repository wheezy-security distribution wheezy/updates
set system package repository wheezy-security url http://security.debian.org
commit
安装supervisor
pip在Python 2.7.9以后,Python 3.4以后自带
wget https://bootstrap.pypa.io/get-pip.py
python get-pip.py
pip install supervisor
echo_supervisord_conf > /etc/supervisord.conf
/etc/supervisord.conf
supervisord -c /etc/supervisord.conf
在/ect/rc.local 中 exit 0 之前添加
supervisord -c /etc/supervisord.conf
系统启动时自动运行
不过supervisor比较占内存