How To Install libitm on Fedora 34
Introduction
In this tutorial we learn how to install libitm
on Fedora 34.
What is libitm
This package contains the GNU Transactional Memory library which is a GCC transactional memory support runtime library. libitm 11.2.1 1.fc34 x86_64 90 k gcc-11.2.1-1.fc34.src.rpm updates The GNU Transactional Memory library http GPLv3+ and GPLv3+ with exceptions and GPLv2+ with exceptions and LGPLv2+ and BSD This package contains the GNU Transactional Memory library which is a GCC transactional memory support runtime library.
We can use yum
or dnf
to install libitm
on Fedora 34. In this tutorial we discuss both methods but you only need to choose one of method to install libitm.
Install libitm 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 libitm
using dnf
by running the following command:
sudo dnf -y install libitm
Install libitm 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 libitm
using yum
by running the following command:
sudo yum -y install libitm
How To Uninstall libitm on Fedora 34
To uninstall only the libitm
package we can use the following command:
sudo dnf remove libitm
libitm Package Contents on Fedora 34
/usr/lib/.build-id
/usr/lib/.build-id/0d
/usr/lib/.build-id/0d/fc5da293343bd674d39a256d63ae02c6077dda
/usr/lib64/libitm.so.1
/usr/lib64/libitm.so.1.0.0
/usr/share/info/libitm.info.gz
/usr/lib/.build-id
/usr/lib/.build-id/30
/usr/lib/.build-id/30/d1cb411a23df3cc9a353f80201ebbe2ff580b0
/usr/lib/libitm.so.1
/usr/lib/libitm.so.1.0.0
/usr/share/info/libitm.info.gz
/usr/lib/.build-id
/usr/lib/.build-id/32
/usr/lib/.build-id/32/3f81e5337f555be6cde91ae2530de726ff3b51
/usr/lib64/libitm.so.1
/usr/lib64/libitm.so.1.0.0
/usr/share/info/libitm.info.gz
/usr/lib/.build-id
/usr/lib/.build-id/de
/usr/lib/.build-id/de/006993a785ed1c3e82d13a2c037a1fc64e3208
/usr/lib/libitm.so.1
/usr/lib/libitm.so.1.0.0
/usr/share/info/libitm.info.gz
References
- [libitm website](http://gcc.gnu.org http://gcc.gnu.org)
Summary
In this tutorial we learn how to install libitm
on Fedora 34 using yum and dnf.