How To Install bullet-extras on CentOS 8

bullet-extras is Extra libraries for bullet

Introduction

In this tutorial we learn how to install bullet-extras on CentOS 8.

What is bullet-extras

Extra libraries for bullet.

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

Install bullet-extras on CentOS 8 Using dnf

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 bullet-extras using dnf by running the following command:

sudo dnf -y install bullet-extras

Install bullet-extras on CentOS 8 Using yum

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 bullet-extras using yum by running the following command:

sudo yum -y install bullet-extras

How To Uninstall bullet-extras on CentOS 8

To uninstall only the bullet-extras package we can use the following command:

sudo dnf remove bullet-extras

bullet-extras Package Contents on CentOS 8

/usr/lib/.build-id
/usr/lib/.build-id/0a
/usr/lib/.build-id/0a/d9ede721dcc255a69e5f67fcd0181acd8598fb
/usr/lib/.build-id/51
/usr/lib/.build-id/51/ce7a7d2af053b978910fc5e090edd118da3583
/usr/lib/.build-id/5c
/usr/lib/.build-id/5c/98fce2d279e8b8a6eec954ebf9392e4213b37a
/usr/lib/.build-id/76/14710e9f5e073475122c214b62b29613c5f03c
/usr/lib/.build-id/94
/usr/lib/.build-id/94/516687660bd3cb136984329d33efb9d3457b86
/usr/lib/.build-id/9e
/usr/lib/.build-id/9e/89130506a885fb7db4c98f467bcff174cfc257
/usr/lib/.build-id/c0
/usr/lib/.build-id/c0/48c3d57df17ec2b7d75ee72a7fb8db1a6282aa
/usr/lib/.build-id/dc
/usr/lib/.build-id/dc/c787b1b932543f015f93660a5cd685dca9cced
/usr/lib64/libBullet2FileLoader.so.2.87
/usr/lib64/libBulletFileLoader.so.2.87
/usr/lib64/libBulletInverseDynamicsUtils.so.2.87
/usr/lib64/libBulletWorldImporter.so.2.87
/usr/lib64/libBulletXmlWorldImporter.so.2.87
/usr/lib64/libConvexDecomposition.so.2.87
/usr/lib64/libGIMPACTUtils.so.2.87
/usr/lib64/libHACD.so.2.87

References

Summary

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