分页: 1 / 1

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

发表于 : 2009-08-04 21:36
wylbxiaoyue
搞嵌入式,不过没啥基础。装一个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

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

发表于 : 2009-08-04 22:03
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

前提时你安装了其他的

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

发表于 : 2009-08-04 22:05
wylbxiaoyue
好的
谢了先
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

前提时你安装了其他的