如何从命令行在 Lubuntu 中安装 bnetd?

如何从命令行在 Lubuntu 中安装 bnetd?

我正在尝试在 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文件夹中。要安装它:

  1. 从终端转到您的src文件夹:

    cd /home/andrey/Desktop/bnetd-0.4.25/src/

  2. 配置安装:

    ./configure

  3. 编译它:

    make

  4. 安装:

    sudo make install

现在你应该已经安装应用程序正确地


需要注意的是:在压缩包中你可以看到INSTALL文件,它包含该特定软件的安装说明。所以下次打开它;)

相关内容