装交叉编译环境遇到问题了,泪流满面ing

编译打包和其他
回复
wylbxiaoyue
帖子: 50
注册时间: 2009-03-20 20:20

装交叉编译环境遇到问题了,泪流满面ing

#1

帖子 wylbxiaoyue » 2009-08-04 21:36

搞嵌入式,不过没啥基础。装一个CodeSourcery都没有成功,弄了好长时间了。
今天在官网上下了一个新的版本,安装时遇到了一个新的问题。

The installer has detected that your system uses the dash shell
as /bin/sh. This shell is not supported by the installer.
You can work around this problem by changing /bin/sh to be a
symbolic link to a supported shell such as bash.
For example, on Ubuntu systems, execute this shell command:
% sudo dpkg-reconfigure -plow dash
Install as /bin/sh? No


大概是说我的系统默认的shell是sh 该软件不支持,需要做点小动作。请问哪位大哥知道具体怎么操作的,教教小弟,不胜感激
在下用的UBUNTU8.04
头像
princelai
帖子: 920
注册时间: 2007-01-06 21:00
联系:

Re: 装交叉编译环境遇到问题了,泪流满面ing

#2

帖子 princelai » 2009-08-04 22:03

ls -l /bin/

lrwxrwxrwx 1 root root 4 2009-08-01 19:23 sh -> dash


sudo rm /bin/sh

sudo ln -s /usr/bin/bash /bin/sh

前提时你安装了其他的
wylbxiaoyue
帖子: 50
注册时间: 2009-03-20 20:20

Re: 装交叉编译环境遇到问题了,泪流满面ing

#3

帖子 wylbxiaoyue » 2009-08-04 22:05

好的
谢了先
princelai 写了:ls -l /bin/

lrwxrwxrwx 1 root root 4 2009-08-01 19:23 sh -> dash


sudo rm /bin/sh

sudo ln -s /usr/bin/bash /bin/sh

前提时你安装了其他的
回复