下载稳定版 coreseek wget http://www.coreseek.cn/uploads/csft/3.2/coreseek-3.2.14.tar.gz 解压 tar -zxvf coreseek-3.2.14.tar.gz cd coreseek-3.2.14/mmseg-3.2.14/ 安装mmseg(如出现错误见附1) ./configure --prefix=/usr/local/mmseg make make install 安装csft cd ../csft-3.2.14/ ./configure --prefix=/usr/local/coreseek --with-mmseg=/usr/local/mmseg --with-mmseg-includes=/usr/local/mmseg/include/mmseg/ --with-mmseg-libs=/usr/local/mmseg/lib/ --with-mysql=/usr/local/mysql/ make make install 附1: 报:config.status: error: cannot find input file: src/Makefile.in 依次执行以下代码 yum -y install autoconf automake aclocal automake --add-missing autoconf autoheader make clean 在进行 ./configure --prefix=/usr/local/mmseg make make install