我正在尝试在 lubuntu 上安装 bnetd,但在编译时出现错误(我还没有编译过任何东西)我在终端执行此操作:
loading cache ./config.cache
checking host system type... Invalid configuration `x86_64-pc-linux-gnuoldld': machine `x86_64-pc' not recognized
checking target system type... Invalid configuration `x86_64-pc-linux-gnuoldld': machine `x86_64-pc' not recognized
checking build system type... Invalid configuration `x86_64-pc-linux-gnuoldld': machine `x86_64-pc' not recognized
checking for gcc... no
checking for cc... no
configure: error: no acceptable cc found in $PATH
从命令中:
ls -l /home/andrey/Desktop/bnetd-0.4.25/
我明白了:
total 132
-rw-r--r-- 1 andrey andrey 50287 яну 21 2002 CHANGELOG
drwxr-xr-x 2 andrey andrey 4096 май 24 23:04 conf
-rw-r--r-- 1 andrey andrey 17992 апр 26 2001 COPYING
-rw-r--r-- 1 andrey andrey 6326 яну 15 2002 CREDITS
drwxr-xr-x 2 andrey andrey 4096 май 24 23:04 docs
drwxr-xr-x 2 andrey andrey 4096 май 24 23:04 files
-rw-r--r-- 1 andrey andrey 4723 апр 26 2001 INSTALL
drwxr-xr-x 2 andrey andrey 4096 май 24 23:04 man
drwxr-xr-x 3 andrey andrey 4096 май 24 23:04 packaging
-rw-r--r-- 1 andrey andrey 4997 ное 29 2001 README
drwxr-xr-x 2 andrey andrey 4096 май 24 23:04 scripts
drwxr-xr-x 15 andrey andrey 4096 май 24 23:04 src
-rw-r--r-- 1 andrey andrey 5696 яну 17 2002 TODO
在我读的教程中一切都很好。我不明白我的错误在哪里。另外我无法运行 make 命令,因为我仍然没有 make 文件...我正在使用 LXTerminal
答案1
该configure
文件位于src
文件夹中。要安装它:
从终端转到您的
src
文件夹:cd /home/andrey/Desktop/bnetd-0.4.25/src/
配置安装:
./configure
编译它:
make
安装:
sudo make install
现在你应该已经安装应用程序正确地
需要注意的是:在压缩包中你可以看到INSTALL
文件,它包含该特定软件的安装说明。所以下次打开它;)