How To Install tlx on Fedora 34
Introduction
In this tutorial we learn how to install tlx
on Fedora 34.
What is tlx
TLX is a collection of sophisticated C++ data structures, algorithms, and miscellaneous helpers. It contains - The fast tournament (loser) trees from MCSTL by Johannes Singler, with many fixes. - A fast intrusive reference counter called CountingPtr, which has considerably less overhead than std - Efficient and fast multiway merging algorithms from Johannes Singler, which were previously included with gcc. The tlx version has many fixes and is available for clang and MSVC++. - Many string manipulation algorithms for std - An improved version of the stx-btree implementation, which is basically always a better alternative to std std - A copy of siphash for string hashing. - Efficient sequential string sorting implementations such as radix sort and multikey quicksort. - Much more; see the doxygen documentation. tlx 0.5.20200222 3.fc34 x86_64 87 k tlx-0.5.20200222-3.fc34.src.rpm fedora Sophisticated C++ data structures, algorithms, and helpers http Boost TLX is a collection of sophisticated C++ data structures, algorithms, and miscellaneous helpers. It contains - The fast tournament (loser) trees from MCSTL by Johannes Singler, with many fixes. - A fast intrusive reference counter called CountingPtr, which has considerably less overhead than std - Efficient and fast multiway merging algorithms from Johannes Singler, which were previously included with gcc. The tlx version has many fixes and is available for clang and MSVC++. - Many string manipulation algorithms for std - An improved version of the stx-btree implementation, which is basically always a better alternative to std std - A copy of siphash for string hashing. - Efficient sequential string sorting implementations such as radix sort and multikey quicksort. - Much more; see the doxygen documentation.
We can use yum
or dnf
to install tlx
on Fedora 34. In this tutorial we discuss both methods but you only need to choose one of method to install tlx.
Install tlx 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 tlx
using dnf
by running the following command:
sudo dnf -y install tlx
Install tlx 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 tlx
using yum
by running the following command:
sudo yum -y install tlx
How To Uninstall tlx on Fedora 34
To uninstall only the tlx
package we can use the following command:
sudo dnf remove tlx
tlx Package Contents on Fedora 34
/usr/lib/.build-id
/usr/lib/.build-id/0c
/usr/lib/.build-id/0c/649782f9b6fc9b2fb5bbcbfb2f62e37a610084
/usr/lib/libtlx.so.0
/usr/lib/libtlx.so.0.5.20200222
/usr/share/doc/tlx
/usr/share/doc/tlx/AUTHORS
/usr/share/doc/tlx/README.md
/usr/share/licenses/tlx
/usr/share/licenses/tlx/LICENSE
/usr/lib/.build-id
/usr/lib/.build-id/98
/usr/lib/.build-id/98/a5907b1608d08dd960779c63fd443291e708c6
/usr/lib64/libtlx.so.0
/usr/lib64/libtlx.so.0.5.20200222
/usr/share/doc/tlx
/usr/share/doc/tlx/AUTHORS
/usr/share/doc/tlx/README.md
/usr/share/licenses/tlx
/usr/share/licenses/tlx/LICENSE
References
- [tlx website](http://panthema.net/tlx http://panthema.net/tlx)
Summary
In this tutorial we learn how to install tlx
on Fedora 34 using yum and dnf.