How To Install t1utils on Rocky Linux 8
Introduction
In this tutorial we learn how to install t1utils
on Rocky Linux 8.
What is t1utils
t1utils is a collection of programs for manipulating PostScript type 1 and type 2 fonts containing programs to convert between PFA (ASCII) format, PFB (binary) format, a human-readable and editable ASCII format, and Macintosh resource forks.
We can use yum
or dnf
to install t1utils
on Rocky Linux 8. In this tutorial we discuss both methods but you only need to choose one of method to install t1utils.
Install t1utils on Rocky Linux 8 Using dnf
Update yum database with dnf
using the following command.
sudo dnf makecache --refresh
After updating yum database, We can install t1utils
using dnf
by running the following command:
sudo dnf -y install t1utils
Install t1utils on Rocky Linux 8 Using yum
Update yum database with yum
using the following command.
sudo yum makecache --refresh
After updating yum database, We can install t1utils
using yum
by running the following command:
sudo yum -y install t1utils
How To Uninstall t1utils on Rocky Linux 8
To uninstall only the t1utils
package we can use the following command:
sudo dnf remove t1utils
t1utils Package Contents on Rocky Linux 8
/usr/bin/t1ascii
/usr/bin/t1asm
/usr/bin/t1binary
/usr/bin/t1disasm
/usr/bin/t1mac
/usr/bin/t1unmac
/usr/lib/.build-id
/usr/lib/.build-id/69
/usr/lib/.build-id/69/a98a1702f574d2db82ce4f94864c4d2e45d9d0
/usr/lib/.build-id/95
/usr/lib/.build-id/95/72cab92a50a813c43841c3ecddd11e033f30dc
/usr/lib/.build-id/9d
/usr/lib/.build-id/9d/374e0511db9812b5a53b462c16b24f4050d659
/usr/lib/.build-id/dd
/usr/lib/.build-id/dd/93ebb3c45e677e66554bb391f6dae5bb3cba3a
/usr/lib/.build-id/ea
/usr/lib/.build-id/ea/ac3edd637d2e6882ba4cdec03fc280b8a2907a
/usr/lib/.build-id/fb
/usr/lib/.build-id/fb/e94841555d1ab344bdd6f740c82a337e770348
/usr/share/doc/t1utils
/usr/share/doc/t1utils/NEWS.md
/usr/share/doc/t1utils/README.md
/usr/share/licenses/t1utils
/usr/share/licenses/t1utils/LICENSE
/usr/share/man/man1/t1ascii.1.gz
/usr/share/man/man1/t1asm.1.gz
/usr/share/man/man1/t1binary.1.gz
/usr/share/man/man1/t1disasm.1.gz
/usr/share/man/man1/t1mac.1.gz
/usr/share/man/man1/t1unmac.1.gz
References
Summary
In this tutorial we learn how to install t1utils
on Rocky Linux 8 using yum and dnf.