我成功下载了Dell 命令 | 配置但如果我运行“cctk”命令,它会说:
Command 'cctk' not found, did you mean:
command 'cct' from deb proj-bin (5.2.0-1)
command 'sctk' from deb sctk (2.4.10-20151007-1312Z+dfsg2-3)
command 'cmtk' from deb cmtk (3.3.1p1+dfsg-1)
Try: sudo apt install <deb name>
可执行文件似乎位于/opt/dell/dcc/cctk
(查看其他问题)。如果我运行可执行文件,则会出现另一个错误:
Usage error.
Dell Command Configure Version 4.2.0 553 (Linux - Mar 20 2019, 11:35:21)
Copyright 2009 - 2019 Dell Inc. All rights reserved.
Usage: cctk --option[=argument]
For more information about a particular command,
use the option '-H' followed by the command name.
Example: cctk -H --Asset
...
有什么办法可以让它运行吗?谢谢!
答案1
为了使二进制文件dcc
可被发现而不必每次都输入完整路径,请打开文件~/.bashrc
并将以下内容添加到末尾,
export PATH="/opt/dell/dcc:$PATH"
然后当您打开一个新终端时,只需cctk
在其中查找并执行此文件即可/opt/dell/dcc
。
至于实际用法,您必须阅读手册或帮助指南才能了解其工作原理。usage error
意味着程序已执行,但没有传递所需的命令行参数。
答案2
另一个解决方案是添加符号链接到您的/usr/local/sbin
目录。
$ sudo ln -s /opt/dell/dcc/cctk /usr/local/sbin/
检查链接
$ type cctk
cctk is /usr/local/sbin/cctk