我是Unix / Linux的新手。当我在终端输入dbx时,没有找到命令。你能告诉我如何解决这个问题吗?感谢。
我的Solaris版本是11.2
答案 0 :(得分:1)
由于我们不知道,您不知道我假设默认安装路径:
ls /opt/sun/*
如果此命令返回错误或未显示任何文件,则表示您没有sun studio,因此您没有dbx。
如果上述命令有效,现在让我们找到命令:
要找到dbx(它应该在/opt/sun/sunstudio11/bin
但可能在其他地方)
尝试:
find /opt/sun -name dbx
让我们假装它返回/opt/sun/sunstudio11/bin/dbx
这意味着
/opt/sun/sunstudio11/bin/
是dbx所在的目录。将其添加到PATH变量:
PATH=${PATH}:/opt/sun/sunstudio11/bin/
export PATH
现在,只需键入dbx
如果您希望它是永久性的,那么编辑(在您的主目录中)
您的.profile
(或.bash_profile
for bash)文件,上面有两行。