修改了IP地址,把Wifi打开后,驾轻就熟地修改了相关的配置,增加了第三方源,准备开始安装你懂的SS和ChinaDNS等组件。没想到往常屡试不爽的opkg install命令返回了安装失败提示:
Incompatible with the architectures configured
仔细比对了所有的配置,确认没有错误,但是安装新增的第三方包时总是报错。
arch all 1
arch noarch 1
arch arm_cortex-a9_vfpv3-d16 10
比原来系统打印出来的架构型号多了一个d16,而第三方源的库里貌似没有arm_cortex-a9_vfpv3-d16这样一个型号的源,尝试修改/etc/opkg.conf文件,把原来CPU型号列表增加不带d16行。
arch all 1
arch noarch 1
arch arm_cortex-a9_vfpv3 8
arch arm_cortex-a9_vfpv3-d16 10
再运行opkg install,包装成功。
系统升级后,因为要安装python开发环境方便,想安装brew,但尝试运行brew命令命令
/bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install.sh)"
系统却直接报错。
Error: Failure while executing; `git clone https://github.com/Homebrew/homebrew-core /usr/local/Homebrew/Library/Taps/homebrew/homebrew-core` exited with 128.
Error: Failure while executing; `/usr/local/bin/brew tap homebrew/core` exited with 1.
Failed during: /usr/local/bin/brew update –force
以为是网络问题,架上梯子后重新运行,问题依旧。
手工用git把brew拉到本地目录,重新把运行安装命令,成功解决。
git clone https://github.com/Homebrew/homebrew-core /usr/local/Homebrew/Library/Taps/homebrew/homebrew-core --depth=1
近期评论