+ -
当前位置:首页 → 问答吧 → CentOS5.5下加载NTFS分区的问题?

CentOS5.5下加载NTFS分区的问题?

时间:2011-11-28

来源:互联网

我下载了ntfs-3g_ntfsprogs-2011.10.9-RC.tgz,解压后执行configure命令后出现如下问题,
[root@localhost ntfs-3g_ntfsprogs-2011.10.9-RC]# ./configure
checking build system type... i686-pc-linux-gnu
checking host system type... i686-pc-linux-gnu
checking target system type... i686-pc-linux-gnu
checking for a BSD-compatible install... /usr/bin/install -c
checking whether build environment is sane... yes
checking for a thread-safe mkdir -p... /bin/mkdir -p
checking for gawk... gawk
checking whether make sets $(MAKE)... yes
checking whether to enable maintainer-specific portions of Makefiles... no
checking for gcc... no
checking for cc... no
configure: error: no acceptable C compiler found in $PATH
See `config.log' for more details.
[root@localhost ntfs-3g_ntfsprogs-2011.10.9-RC]#
不知如何解决,希望高手指点。

作者: zbs08   发布时间: 2011-11-28

要从源码包开始编译安装软件,你需要编译器、开发包等做编译环境。错误信息显示你的系统上没有安装编译器gcc等。

ntfs-3g 在 epel 软件仓库里已有rpm包。配置好 epel 软件源即可用yum安装。这样最便捷。

实在需要编译安装的话,先从软件源里安装 gcc , make, 等编译环境。

作者: alick   发布时间: 2011-11-28

从你的错误信息里可以看出你没有安装GCC等编译环境导致你软件配置时不成功,从软件源里安装GCC编译器!

作者: zhoutingting   发布时间: 2011-12-01