How To Install CVector on Fedora 34
Introduction
In this tutorial we learn how to install CVector
on Fedora 34.
What is CVector
CVector is an ANSI C implementation of dynamic arrays to provide a crude approximation to the C++ vector class. CVector 1.0.3.1 22.fc34 x86_64 27 k CVector-1.0.3.1-22.fc34.src.rpm fedora ANSI C API for Dynamic Arrays http LGPLv2+ CVector is an ANSI C implementation of dynamic arrays to provide a crude approximation to the C++ vector class.
We can use yum
or dnf
to install CVector
on Fedora 34. In this tutorial we discuss both methods but you only need to choose one of method to install CVector.
Install CVector on Fedora 34 Using dnf
Update yum database with dnf
using the following command.
sudo dnf makecache --refresh
The output should look something like this:
Fedora 34 - x86_64 20 kB/s | 6.6 kB 00:00
Fedora 34 openh264 (From Cisco) - x86_64 1.4 kB/s | 989 B 00:00
Fedora Modular 34 - x86_64 68 kB/s | 6.5 kB 00:00
Fedora 34 - x86_64 - Updates 3.5 kB/s | 6.2 kB 00:01
Fedora Modular 34 - x86_64 - Updates 17 kB/s | 5.9 kB 00:00
Metadata cache created.
After updating yum database, We can install CVector
using dnf
by running the following command:
sudo dnf -y install CVector
Install CVector on Fedora 34 Using yum
Update yum database with yum
using the following command.
sudo yum makecache --refresh
The output should look something like this:
Fedora 34 - x86_64 20 kB/s | 6.6 kB 00:00
Fedora 34 openh264 (From Cisco) - x86_64 1.4 kB/s | 989 B 00:00
Fedora Modular 34 - x86_64 68 kB/s | 6.5 kB 00:00
Fedora 34 - x86_64 - Updates 3.5 kB/s | 6.2 kB 00:01
Fedora Modular 34 - x86_64 - Updates 17 kB/s | 5.9 kB 00:00
Metadata cache created.
After updating yum database, We can install CVector
using yum
by running the following command:
sudo yum -y install CVector
How To Uninstall CVector on Fedora 34
To uninstall only the CVector
package we can use the following command:
sudo dnf remove CVector
CVector Package Contents on Fedora 34
/usr/lib/.build-id
/usr/lib/.build-id/33
/usr/lib/.build-id/33/978b466a961933e4516416f0518747a1773724
/usr/lib64/libCVector-1.0.3.so.2
/usr/lib64/libCVector-1.0.3.so.2.0.0
/usr/share/doc/CVector
/usr/share/doc/CVector/README_CVector.html
/usr/share/doc/CVector/README_CVector.txt
/usr/share/doc/CVector/lgpl.txt
/usr/lib/.build-id
/usr/lib/.build-id/64
/usr/lib/.build-id/64/b0e327f7eb21379b90d39c80393e9cfd6461ca
/usr/lib/libCVector-1.0.3.so.2
/usr/lib/libCVector-1.0.3.so.2.0.0
/usr/share/doc/CVector
/usr/share/doc/CVector/README_CVector.html
/usr/share/doc/CVector/README_CVector.txt
/usr/share/doc/CVector/lgpl.txt
References
- [CVector website](http://cvector.sourceforge.net/ http://cvector.sourceforge.net/)
Summary
In this tutorial we learn how to install CVector
on Fedora 34 using yum and dnf.