How To Install elinks on CentOS 8

elinks is A text-mode Web browser

Introduction

In this tutorial we learn how to install elinks on CentOS 8.

Elinks is a text-based Web browser. Elinks does not display any images, but it does support frames, tables and most other HTML tags. Elinks’ advantage over graphical browsers is its speed–Elinks starts and exits quickly and swiftly displays Web pages.

We can use yum or dnf to install elinks on CentOS 8. In this tutorial we discuss both methods but you only need to choose one of method to install elinks.

Update yum database with dnf using the following command.

sudo dnf makecache --refresh

The output should look something like this:

CentOS Linux 8 - AppStream                                       43 kB/s | 4.3 kB     00:00    
CentOS Linux 8 - BaseOS                                          65 kB/s | 3.9 kB     00:00    
CentOS Linux 8 - ContinuousRelease                               43 kB/s | 3.0 kB     00:00    
CentOS Linux 8 - Extras                                          23 kB/s | 1.5 kB     00:00    
CentOS Linux 8 - FastTrack                                       40 kB/s | 3.0 kB     00:00    
CentOS Linux 8 - HighAvailability                                36 kB/s | 3.9 kB     00:00    
CentOS Linux 8 - Plus                                            24 kB/s | 1.5 kB     00:00    
CentOS Linux 8 - PowerTools                                      50 kB/s | 4.3 kB     00:00    
Extra Packages for Enterprise Linux Modular 8 - x86_64           13 kB/s | 9.2 kB     00:00    
Extra Packages for Enterprise Linux 8 - x86_64                   24 kB/s | 8.5 kB     00:00    
Metadata cache created.

After updating yum database, We can install elinks using dnf by running the following command:

sudo dnf -y install elinks

Update yum database with yum using the following command.

sudo yum makecache --refresh

The output should look something like this:

CentOS Linux 8 - AppStream                                       43 kB/s | 4.3 kB     00:00    
CentOS Linux 8 - BaseOS                                          65 kB/s | 3.9 kB     00:00    
CentOS Linux 8 - ContinuousRelease                               43 kB/s | 3.0 kB     00:00    
CentOS Linux 8 - Extras                                          23 kB/s | 1.5 kB     00:00    
CentOS Linux 8 - FastTrack                                       40 kB/s | 3.0 kB     00:00    
CentOS Linux 8 - HighAvailability                                36 kB/s | 3.9 kB     00:00    
CentOS Linux 8 - Plus                                            24 kB/s | 1.5 kB     00:00    
CentOS Linux 8 - PowerTools                                      50 kB/s | 4.3 kB     00:00    
Extra Packages for Enterprise Linux Modular 8 - x86_64           13 kB/s | 9.2 kB     00:00    
Extra Packages for Enterprise Linux 8 - x86_64                   24 kB/s | 8.5 kB     00:00    
Metadata cache created.

After updating yum database, We can install elinks using yum by running the following command:

sudo yum -y install elinks

To uninstall only the elinks package we can use the following command:

sudo dnf remove elinks
/etc/elinks.conf
/usr/bin/elinks
/usr/bin/links
/usr/lib/.build-id
/usr/lib/.build-id/f3
/usr/lib/.build-id/f3/29b1ed0ffc9465525ac94a52ef721a049d08b8
/usr/share/doc/elinks
/usr/share/doc/elinks/COPYING
/usr/share/doc/elinks/README
/usr/share/locale/af/LC_MESSAGES/elinks.mo
/usr/share/locale/be/LC_MESSAGES/elinks.mo
/usr/share/locale/bg/LC_MESSAGES/elinks.mo
/usr/share/locale/ca/LC_MESSAGES/elinks.mo
/usr/share/locale/cs/LC_MESSAGES/elinks.mo
/usr/share/locale/da/LC_MESSAGES/elinks.mo
/usr/share/locale/de/LC_MESSAGES/elinks.mo
/usr/share/locale/el/LC_MESSAGES/elinks.mo
/usr/share/locale/es/LC_MESSAGES/elinks.mo
/usr/share/locale/et/LC_MESSAGES/elinks.mo
/usr/share/locale/fi/LC_MESSAGES/elinks.mo
/usr/share/locale/fr/LC_MESSAGES/elinks.mo
/usr/share/locale/gl/LC_MESSAGES/elinks.mo
/usr/share/locale/hr/LC_MESSAGES/elinks.mo
/usr/share/locale/hu/LC_MESSAGES/elinks.mo
/usr/share/locale/id/LC_MESSAGES/elinks.mo
/usr/share/locale/is/LC_MESSAGES/elinks.mo
/usr/share/locale/it/LC_MESSAGES/elinks.mo
/usr/share/locale/lt/LC_MESSAGES/elinks.mo
/usr/share/locale/nb/LC_MESSAGES/elinks.mo
/usr/share/locale/nl/LC_MESSAGES/elinks.mo
/usr/share/locale/pl/LC_MESSAGES/elinks.mo
/usr/share/locale/pt/LC_MESSAGES/elinks.mo
/usr/share/locale/pt_BR/LC_MESSAGES/elinks.mo
/usr/share/locale/ro/LC_MESSAGES/elinks.mo
/usr/share/locale/ru/LC_MESSAGES/elinks.mo
/usr/share/locale/sk/LC_MESSAGES/elinks.mo
/usr/share/locale/sr/LC_MESSAGES/elinks.mo
/usr/share/locale/sv/LC_MESSAGES/elinks.mo
/usr/share/locale/tr/LC_MESSAGES/elinks.mo
/usr/share/locale/uk/LC_MESSAGES/elinks.mo
/usr/share/man/man1/elinks.1.gz
/usr/share/man/man1/links.1.gz
/usr/share/man/man5/elinks.conf.5.gz
/usr/share/man/man5/elinkskeys.5.gz

References

Summary

In this tutorial we learn how to install elinks on CentOS 8 using yum and dnf.