我正在尝试在我的debian-lenny上编译VXI11源代码,但出现此错误:

make
rpcgen -M vxi11.x
make: rpcgen: command not found

有人知道rpcgen被安装吗?
无法找到解决方案。任何帮助是最感激的。

谢谢
彼得

最佳答案

在Debian和Ubuntu上,apt-file命令将告诉您可以安装哪个软件包来获取特定文件。首先安装apt-file软件包并运行apt-file update。然后apt-file search rpcgen将显示所有包含名称为rpcgen的文件的软件包。由于您知道要查找的是可执行文件,因此可以将搜索限制为apt-file search bin/rpcgen

如果要在Debian或Ubuntu上编译C或C++程序,请先安装build-essential软件包。

关于linux - 在Debian Lenny上安装rpcgen,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/3377868/

10-16 10:24