[转]编译错误: /bin/sh: 1: pushd: not found的问题

时间:2023-12-29 16:58:26

[转]编译错误: /bin/sh: 1: pushd: not found的问题

http://blog.csdn.net/ojinxi/article/details/12186839

ubuntu环境中报如下错误:

[转]编译错误: /bin/sh: 1: pushd: not found的问题[转]编译错误: /bin/sh: 1: pushd: not found的问题

查看原因:

进入/bin目录,查看sh的链接文件,显示如下:表示sh命令链接到的是dash,而pushd命令需要在bash的环境中执行。

[转]编译错误: /bin/sh: 1: pushd: not found的问题[转]编译错误: /bin/sh: 1: pushd: not found的问题

解决方法:

执行sudo dpkg-reconfigure dash 命令,将dash设置为No。

[转]编译错误: /bin/sh: 1: pushd: not found的问题

[转]编译错误: /bin/sh: 1: pushd: not found的问题

[转]编译错误: /bin/sh: 1: pushd: not found的问题

再次查看sh的链接:已经修改为bash了。

[转]编译错误: /bin/sh: 1: pushd: not found的问题