创新互联www.cdcxhl.cn八线动态BGP香港云服务器提供商,新人活动买多久送多久,划算不套路!
成都创新互联公司是一家业务范围包括IDC托管业务,雅安服务器托管、主机租用、主机托管,四川、重庆、广东电信服务器租用,成都联通服务器托管,成都网通服务器托管,成都服务器租用,业务范围遍及中国大陆、港澳台以及欧美等多个国家及地区的互联网数据服务公司。小编给大家分享一下openwrt安装python的方法,希望大家阅读完这篇文章后大所收获,下面让我们一起去探讨吧!
首先配置opkg源。
# 备份初始conf mv /etc/opkg.conf /etc/opkg.conf.bak # 新建配置 vim /etc/opkg.conf # 添加如下内容: dest root / dest ram /tmp lists_dir ext /var/opkg-lists option overlay_root /overlay # notice dest usb /mnt/sdb1/opkg arch all 100 arch ramips_24kec 200 arch ramips 300 arch mips 400 arch unkown 500 src/gz barrier_breaker_base http://downloads.openwrt.org/barrier_breaker/14.07/ramips/mt7620a/packages/base src/gz barrier_breaker_luci http://downloads.openwrt.org/barrier_breaker/14.07/ramips/mt7620a/packages/luci src/gz barrier_breaker_management http://downloads.openwrt.org/barrier_breaker/14.07/ramips/mt7620a/packages/management src/gz barrier_breaker_oldpackages http://downloads.openwrt.org/barrier_breaker/14.07/ramips/mt7620a/packages/ oldpackages src/gz barrier_breaker_packages http://downloads.openwrt.org/barrier_breaker/14.07/ramips/mt7620a/packages/packages src/gz barrier_breaker_routing http://downloads.openwrt.org/barrier_breaker/14.07/ramips/mt7620a/packages/routing src/gz barrier_breaker_telephony http://downloads.openwrt.org/barrier_breaker/14.07/ramips/mt7620a/packages/telephony # wq保存 # 执行升级 opkg update
安装Python
需要注意的是,小米路由器的可用空间不多,但Python的安装会占用挺大的空间,所以我们指定opkg将程序安装在U盘或硬盘上。
这时我们回到刚才的配置文件里,找到notice,这里的dest usb /mnt/sdb1/opkg就是指定变量usb为外置存储路径/mnt/sdb1/opkg。外置存储的路径可以用df -h查看。
以后我们使用opkg -d usb install xxx即可将程序安装至/mnt/sdb1/opkg。
# 先需要安装libc,需要下载下来安装 ## 建立文件夹 mkdir -p /mnt/sdb1/opkg/src cd /mnt/sdb1/opkg/src wget http://downloads.openwrt.org/barrier_breaker/14.07/ramips/mt7620a/packages/base/libc_0.9.33.2-1_ramips_24kec.ipk ## 安装libc,最好安装到根下 opkg install libc_0.9.33.2-1_ramips_24kec.ipk # 接着安装Python opkg -d usb install libreadline opkg -d usb install python opkg -d usb install python-json opkg -d usb install python-curl opkg -d usb install python-openssl # 路径 export PATH=$PATH:/mnt/sdb1/opkg/usr/bin echo 'export PATH=$PATH:/mnt/sdb1/opkg/usr/bin' >> /etc/profile # 别名 echo "alias opintall='opkg -d usb install'" >> /etc/profile
看完了这篇文章,相信你对openwrt安装python的方法有了一定的了解,想了解更多相关知识,欢迎关注创新互联-成都网站建设公司行业资讯频道,感谢各位的阅读!