|
发表于 2009-6-11 18:32:11
|
显示全部楼层
Post by 皓月lxl;638725
我装的是NVIDIA的驱动!结果#sh ./NVIDIA-Linux-x86-1.0-4363.run后,系统提示:ERROR:unable to find the system utility'ld'; please make sure you have package 'binutils'
installed. If you do have binutils installed. then please check that 'ld' is in your PATH
我是RH8.0 他说的应该是缺个'binutils'的依赖包吧!可是我却没有找到!谁可以帮我一下!谢谢了!万分感谢:)
ld is a linker. It combines binary programs into a loadable program. Presumably the nvidia will install correctly once it is able to use the ld command.
You can check whether ld is in your PATH with the which command:
which ld
On my system ld is at /usr/bin/ld.
You can check your PATH with this command:
echo $PATH |
|