How To Install libi2c on Fedora 34
Introduction
In this tutorial we learn how to install libi2c
on Fedora 34.
What is libi2c
libi2c offers a way for applications to interact with the devices connected to the I2C or SMBus buses of the system. libi2c 4.2 3.fc34 x86_64 22 k i2c-tools-4.2-3.fc34.src.rpm fedora I2C/SMBus bus access library https LGPLv2+ libi2c offers a way for applications to interact with the devices connected to the I2C or SMBus buses of the system.
We can use yum
or dnf
to install libi2c
on Fedora 34. In this tutorial we discuss both methods but you only need to choose one of method to install libi2c.
Install libi2c 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 libi2c
using dnf
by running the following command:
sudo dnf -y install libi2c
Install libi2c 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 libi2c
using yum
by running the following command:
sudo yum -y install libi2c
How To Uninstall libi2c on Fedora 34
To uninstall only the libi2c
package we can use the following command:
sudo dnf remove libi2c
libi2c Package Contents on Fedora 34
/usr/lib/.build-id
/usr/lib/.build-id/92
/usr/lib/.build-id/92/76699f3382bff4157d49fb7bbaf4a0bf7e3ca9
/usr/lib/libi2c.so.0
/usr/lib/libi2c.so.0.1.1
/usr/share/licenses/libi2c
/usr/share/licenses/libi2c/COPYING.LGPL
/usr/lib/.build-id
/usr/lib/.build-id/af
/usr/lib/.build-id/af/1cddff981f02be12f2788475237c15d748772d
/usr/lib64/libi2c.so.0
/usr/lib64/libi2c.so.0.1.1
/usr/share/licenses/libi2c
/usr/share/licenses/libi2c/COPYING.LGPL
References
- [libi2c website](https://i2c.wiki.kernel.org/index.php/I2C_Tools https://i2c.wiki.kernel.org/index.php/I2C_Tools)
Summary
In this tutorial we learn how to install libi2c
on Fedora 34 using yum and dnf.