How To Install jday on Fedora 34
Introduction
In this tutorial we learn how to install jday
on Fedora 34.
What is jday
A simple command to convert calendar dates to julian dates. Quite useful in timing situations where you need elapsed time between dates. Also useful for astronomy applications. jday 2.4 26.fc34 x86_64 28 k jday-2.4-26.fc34.src.rpm fedora A simple command to convert calendar dates to julian dates http BSD A simple command to convert calendar dates to julian dates. Quite useful in timing situations where you need elapsed time between dates. Also useful for astronomy applications.
We can use yum
or dnf
to install jday
on Fedora 34. In this tutorial we discuss both methods but you only need to choose one of method to install jday.
Install jday 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 jday
using dnf
by running the following command:
sudo dnf -y install jday
Install jday 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 jday
using yum
by running the following command:
sudo yum -y install jday
How To Uninstall jday on Fedora 34
To uninstall only the jday
package we can use the following command:
sudo dnf remove jday
jday Package Contents on Fedora 34
/usr/bin/dbd
/usr/bin/j2d
/usr/bin/jday
/usr/lib/.build-id
/usr/lib/.build-id/38
/usr/lib/.build-id/38/aadc937c03363a356183cca47e7bbcf3c3c243
/usr/lib/.build-id/5b
/usr/lib/.build-id/5b/7143ef1cf2012556a10eec899ec3246f299712
/usr/lib/.build-id/9c
/usr/lib/.build-id/9c/b510d030af7d151b25f24257537dcda820c281
/usr/lib/.build-id/ea
/usr/lib/.build-id/ea/b6b54263c1453de03a45ed6527fb2cebf201d6
/usr/lib64/libjday.so.2
/usr/lib64/libjday.so.2.0.4
/usr/share/doc/jday
/usr/share/doc/jday/AUTHORS
/usr/share/doc/jday/ChangeLog
/usr/share/doc/jday/NEWS
/usr/share/doc/jday/README
/usr/share/man/man1/jday.1.gz
/usr/bin/dbd
/usr/bin/j2d
/usr/bin/jday
/usr/lib/.build-id
/usr/lib/.build-id/93
/usr/lib/.build-id/93/5006bf622ed87b0ef950262ebfe018395c8407
/usr/lib/.build-id/af
/usr/lib/.build-id/af/9f31a77384069d20a188e71e603bb9590f5c36
/usr/lib/.build-id/e2
/usr/lib/.build-id/e2/53ca738892178416f20c8857c13a63f4f9a1c3
/usr/lib/.build-id/fe
/usr/lib/.build-id/fe/8162897ca52b8c8e7f2a4b7fa21d8f8da53bcf
/usr/lib/libjday.so.2
/usr/lib/libjday.so.2.0.4
/usr/share/doc/jday
/usr/share/doc/jday/AUTHORS
/usr/share/doc/jday/ChangeLog
/usr/share/doc/jday/NEWS
/usr/share/doc/jday/README
/usr/share/man/man1/jday.1.gz
References
Summary
In this tutorial we learn how to install jday
on Fedora 34 using yum and dnf.