什么是 hello 程序?

什么是 hello 程序?

hello我在很久之后登录的服务器上输入了一句幽默的问候语。我得到的是:

ubuntu@server:~$ hello
The program 'hello' can be found in the following packages:
 * hello
 * hello-debhelper
Try: sudo apt-get install <selected package>

那么,什么是hello程序hello-debhelper?它们有什么用处?

顺便说一句,这对于谷歌来说似乎是不可能的。

答案1

一种可能的解决方案如下:

apt-cache show hello
apt-cache show hello-debhelper

答案2

为了测试 Ubuntu 中的软件应用程序是否正常运行,你可以安装一个名为你好并从终端尝试一下。

来自默认 Ubuntu 存储库的 hello 程序输出Hello, world!

~$ hello
Hello, world!  

你好-debhelper是如何制作 Debian 包的一个示例。hello-debhelper 与 hello 包相同,只是它使用 debhelper 来制作 deb。帮助器是可以在 debian/rules 文件中使用的程序集合,用于自动执行与构建 Debian 软件包相关的常见任务(Ubuntu 使用与 Debian 相同的打包系统)。

相关内容