How To Install casync on Fedora 36
Introduction
In this tutorial we learn how to install casync
on Fedora 36.
What is casync
casync provides a way to efficiently transfer files which change over time over the internet. It will split a given set into a git-inspired content-addressable set of smaller compressed chunks, which can then be conveniently transferred using HTTP. On the receiving side those chunks will be uncompressed and merged together to recreate the original data. When the original data is modified, only the new chunks have to be transferred during an update.
We can use yum
or dnf
to install casync
on Fedora 36. In this tutorial we discuss both methods but you only need to choose one of method to install casync.
Install casync on Fedora 36 Using dnf
Update yum database with dnf
using the following command.
sudo dnf makecache --refresh
After updating yum database, We can install casync
using dnf
by running the following command:
sudo dnf -y install casync
Install casync on Fedora 36 Using yum
Update yum database with yum
using the following command.
sudo yum makecache --refresh
After updating yum database, We can install casync
using yum
by running the following command:
sudo yum -y install casync
How To Uninstall casync on Fedora 36
To uninstall only the casync
package we can use the following command:
sudo dnf remove casync
casync Package Contents on Fedora 36
/usr/bin/casync
/usr/lib/.build-id
/usr/lib/.build-id/bc
/usr/lib/.build-id/bc/2a77a65a3903e50ec272e366ba687ae16248ee
/usr/lib/.build-id/da
/usr/lib/.build-id/da/cf215a677be287241a1bfc142871c790871598
/usr/lib/casync
/usr/lib/casync/protocols
/usr/lib/casync/protocols/casync-ftp
/usr/lib/casync/protocols/casync-http
/usr/lib/casync/protocols/casync-https
/usr/lib/casync/protocols/casync-sftp
/usr/lib/udev/rules.d/75-casync.rules
/usr/share/doc/casync
/usr/share/doc/casync/README.md
/usr/share/doc/casync/TODO
/usr/share/licenses/casync
/usr/share/licenses/casync/LICENSE.LGPL2.1
/usr/share/man/man1/casync.1.gz
References
Summary
In this tutorial we learn how to install casync
on Fedora 36 using yum and [dnf]((/fedora/36/dnf/).