Photo credit - Pixabay
Introduction
The GNU hello
program produces a familiar, friendly greeting. It allows non-programmers to use a classic computer science tool which would otherwise be unavailable to them.
This tutorial is written for Debian 11, however this process should work for most Debian or Ubuntu based systems. Follow along to learn how to install GNU Hello.
Updating the system
First, make sure your system is up to date. We will accomplish this by running apt update
& apt upgrade
.
Download updated package information from all configured sources:
1
sudo apt update
Upgrade all installed packages to their latest versions:
1
sudo apt upgrade
Installing Hello
Next, install Hello:
1
sudo apt install hello
That’s it, we’re done! Now, test the output of Hello:
1
hello
1
Hello, world!