在 CentOS 中运行程序

在 CentOS 中运行程序

我在 CentOS 7.1 上安装了一个软件,我想了解这意味着什么:

[root@001 install]# bash niagarad_generic
Usage: naxd {start|stop|restart|condrestart|status}

当我尝试使用 naxd 时,它告诉我找不到命令。这里有点新手。

答案1

Bash 是一个 shell,是 unix 中运行程序的环境。niagarad_generic 是一个正在运行的脚本。我猜 naxd 是它运行的另一个程序,但找不到它。尝试运行这个

find / -name "naxd"

看看它是否在你的驱动器上。

该程序需要参数。试试这个

bash niagarad_generic start

通常不需要“bash”部分,这可能会起作用 ./niagarad_generic start

“./” 仅表示“当前目录”。

如果这不能回答你的问题,请发表评论:)

相关内容