How To Install libticalcs2 on Fedora 34
Introduction
In this tutorial we learn how to install libticalcs2
on Fedora 34.
What is libticalcs2
The ticalcs library is a library which brings about all the functions needed to communicate with a Texas Instruments graphing calculator (or hand-held). Currently, it does not support some education devices (such as CBL/CBR and others). This library is able to communicate with handhelds in a fairly transparent fashion. With this library, the developer does not have to worry about the packet oriented protocol, the file management and some other stuff. libticalcs2 1.1.9 11.fc34 x86_64 173 k libticalcs2-1.1.9-11.fc34.src.rpm fedora Texas Instruments calculator communication library https GPLv2+ The ticalcs library is a library which brings about all the functions needed to communicate with a Texas Instruments graphing calculator (or hand-held). Currently, it does not support some education devices (such as CBL/CBR and others). This library is able to communicate with handhelds in a fairly transparent fashion. With this library, the developer does not have to worry about the packet oriented protocol, the file management and some other stuff.
We can use yum
or dnf
to install libticalcs2
on Fedora 34. In this tutorial we discuss both methods but you only need to choose one of method to install libticalcs2.
Install libticalcs2 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 libticalcs2
using dnf
by running the following command:
sudo dnf -y install libticalcs2
Install libticalcs2 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 libticalcs2
using yum
by running the following command:
sudo yum -y install libticalcs2
How To Uninstall libticalcs2 on Fedora 34
To uninstall only the libticalcs2
package we can use the following command:
sudo dnf remove libticalcs2
libticalcs2 Package Contents on Fedora 34
/usr/lib/.build-id
/usr/lib/.build-id/10
/usr/lib/.build-id/10/54e88dd838c98c42d2111c34512aa5133a1b05
/usr/lib64/libticalcs2.so.12
/usr/lib64/libticalcs2.so.12.0.3
/usr/share/doc/libticalcs2
/usr/share/doc/libticalcs2/AUTHORS
/usr/share/doc/libticalcs2/ChangeLog
/usr/share/doc/libticalcs2/README
/usr/share/licenses/libticalcs2
/usr/share/licenses/libticalcs2/COPYING
/usr/share/locale/de/LC_MESSAGES/libticalcs2.mo
/usr/share/locale/fr/LC_MESSAGES/libticalcs2.mo
/usr/lib/.build-id
/usr/lib/.build-id/ce
/usr/lib/.build-id/ce/29b94446dd9633fd5ae3b3e8385eeab27080f9
/usr/lib/libticalcs2.so.12
/usr/lib/libticalcs2.so.12.0.3
/usr/share/doc/libticalcs2
/usr/share/doc/libticalcs2/AUTHORS
/usr/share/doc/libticalcs2/ChangeLog
/usr/share/doc/libticalcs2/README
/usr/share/licenses/libticalcs2
/usr/share/licenses/libticalcs2/COPYING
/usr/share/locale/de/LC_MESSAGES/libticalcs2.mo
/usr/share/locale/fr/LC_MESSAGES/libticalcs2.mo
References
- [libticalcs2 website](https://sourceforge.net/projects/tilp/ https://sourceforge.net/projects/tilp/)
Summary
In this tutorial we learn how to install libticalcs2
on Fedora 34 using yum and dnf.