解决DM8168平台Linux系统环境配置中的bin文件安装错误

3星 · 超过75%的资源 需积分: 35 31 下载量 164 浏览量 更新于2024-09-12 收藏 334KB PDF 举报
bin文件安装解决方法 本文将详细介绍bin文件安装解决方法,该方法适用于解决在安装arm-2009q1-203-arm-none-linux-gnueabi.bin编译软件时出现的错误信息“The installer has detected that your system uses the dash shell as /bin/sh. This shell is not supported by the installer.”的解决方法。 一、问题描述 在使用DM8168作为开发平台时,通常需要配置自己的Linux系统环境。由于程序最终是从PC机上移植到目标板上的,因此需要安装交叉编译环境。从ti的网站上下载了arm-2009q1-203-arm-none-linux-gnueabi.bin这个编译软件后,在安装的时候会跳出一个错误信息。 二、错误信息 错误信息如下: 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 Please refer to the Getting Started guide for more information, or contact CodeSourcery Support for assistance. 三、解决方法 解决方法是,在命令行下输入以下命令: #chmod +x arm-2009q1-203-arm-none-linux-gnueabi.bin #sudo dpkg-reconfigure -plow dash 在出现的对话框中选择NO。 四、分析 在安装arm-2009q1-203-arm-none-linux-gnueabi.bin编译软件时,出现错误信息的原因是因为系统使用的dash shell不被支持。解决方法是将/bin/sh更改为符号链接到支持的shell,如bash。然后,在命令行下输入命令chmod +x arm-2009q1-203-arm-none-linux-gnueabi.bin和sudo dpkg-reconfigure -plow dash,选择NO,问题即可解决。 五、结论 本文详细介绍了bin文件安装解决方法,解决了在安装arm-2009q1-203-arm-none-linux-gnueabi.bin编译软件时出现的错误信息。该方法适用于解决类似的问题,希望能够帮助开发者更好地解决问题。
2012-12-09 上传