How to Install and Uninstall perl-Encode Package on openSuSE Tumbleweed

Last updated: May 15,2024

1. Install "perl-Encode" package

Please follow the instructions below to install perl-Encode on openSuSE Tumbleweed

$ sudo zypper refresh $ sudo zypper install perl-Encode

2. Uninstall "perl-Encode" package

This is a short guide on how to uninstall perl-Encode on openSuSE Tumbleweed:

$ sudo zypper remove perl-Encode

3. Information about the perl-Encode package on openSuSE Tumbleweed

Information for package perl-Encode:
------------------------------------
Repository : openSUSE-Tumbleweed-Oss
Name : perl-Encode
Version : 3.210.0-2.1
Arch : x86_64
Vendor : openSUSE
Installed Size : 9.8 MiB
Installed : No
Status : not installed
Source package : perl-Encode-3.210.0-2.1.src
Upstream URL : https://metacpan.org/release/Encode
Summary : Character encodings in Perl
Description :
The 'Encode' module provides the interface between Perl strings and the
rest of the system. Perl strings are sequences of _characters_.
The repertoire of characters that Perl can represent is a superset of those
defined by the Unicode Consortium. On most platforms the ordinal values of
a character as returned by 'ord(_S_)' is the _Unicode codepoint_ for that
character. The exceptions are platforms where the legacy encoding is some
variant of EBCDIC rather than a superset of ASCII; see perlebcdic.
During recent history, data is moved around a computer in 8-bit chunks,
often called "bytes" but also known as "octets" in standards documents.
Perl is widely used to manipulate data of many types: not only strings of
characters representing human or computer languages, but also "binary"
data, being the machine's representation of numbers, pixels in an image, or
just about anything.
When Perl is processing "binary data", the programmer wants Perl to process
"sequences of bytes". This is not a problem for Perl: because a byte has
256 possible values, it easily fits in Perl's much larger "logical
character".
This document mostly explains the _how_. perlunitut and perlunifaq explain
the _why_.