1、用sercureCRT远程登陆时连不上提示拒绝登陆,原因是ubuntu没有开启ssh
sudo apt-get install openssh-server
2、修改环境变量地址后很多命令不能用的解决办法:https://blog.youkuaiyun.com/chenxiaochan/article/details/78465912
3、安装交叉编译器时由于有其他版本的gcc,在修改环境变量将原来的隐掉后还是执行原来的,使用source /etc/profile不管用,还是重启ubuntu系统后才生效。在安装新的版本时,安装后一直调不出来arm-linux-,是因为写的环境变量的地址是错了,查看地址方法:在编译器的文件夹下使用pwd查看路径。
具体安装步骤:https://blog.youkuaiyun.com/mybelief321/article/details/9076583
http://ask.zol.com.cn/x/6706476.html
4、linux使用make menuconfig时报错:recipe for target 'scripts/kconfig/dochecklxdialog' failed
解决办法:安装ncurses
sudo apt-get install ncurses-dev
具体参见:https://blog.youkuaiyun.com/ytfdhb/article/details/60959336
5、make zImage时出现的错误:
解决办法:打开文件夹kernel下的timeconst.pl 373行的if(!define(@val)) 改为if(!@val),将define去掉