How To Install unique3 on Fedora 34
Introduction
In this tutorial we learn how to install unique3
on Fedora 34.
What is unique3
Unique is a library for writing single instance applications, that is applications that are run once and every further call to the same binary either exits immediately or sends a command to the running instance. This version of unique works with GTK+ 3. unique3 3.0.2 23.fc34 x86_64 63 k unique3-3.0.2-23.fc34.src.rpm fedora Single instance support for applications http LGPLv2+ Unique is a library for writing single instance applications, that is applications that are run once and every further call to the same binary either exits immediately or sends a command to the running instance. This version of unique works with GTK+ 3.
We can use yum
or dnf
to install unique3
on Fedora 34. In this tutorial we discuss both methods but you only need to choose one of method to install unique3.
Install unique3 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 unique3
using dnf
by running the following command:
sudo dnf -y install unique3
Install unique3 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 unique3
using yum
by running the following command:
sudo yum -y install unique3
How To Uninstall unique3 on Fedora 34
To uninstall only the unique3
package we can use the following command:
sudo dnf remove unique3
unique3 Package Contents on Fedora 34
/usr/lib/.build-id
/usr/lib/.build-id/33
/usr/lib/.build-id/33/2c5a2b8eb29377e377cfdb7714b96ff87c3db9
/usr/lib/libunique-3.0.so.0
/usr/lib/libunique-3.0.so.0.0.2
/usr/share/doc/unique3
/usr/share/doc/unique3/AUTHORS
/usr/share/doc/unique3/COPYING
/usr/share/doc/unique3/ChangeLog
/usr/share/doc/unique3/README
/usr/lib/.build-id
/usr/lib/.build-id/4e
/usr/lib/.build-id/4e/9d36f1e39c3b9811ba2a6487c72361ef7cd8cd
/usr/lib64/libunique-3.0.so.0
/usr/lib64/libunique-3.0.so.0.0.2
/usr/share/doc/unique3
/usr/share/doc/unique3/AUTHORS
/usr/share/doc/unique3/COPYING
/usr/share/doc/unique3/ChangeLog
/usr/share/doc/unique3/README
References
- [unique3 website](http://www.gnome.org/~ebassi/source/ http://www.gnome.org/~ebassi/source/)
Summary
In this tutorial we learn how to install unique3
on Fedora 34 using yum and dnf.