How To Install websvn on AlmaLinux 8
Introduction
In this tutorial we learn how to install websvn
on AlmaLinux 8.
What is websvn
WebSVN offers a view onto your subversion repositories that’s been designed to reflect the Subversion methodology. You can view the log of any file or directory and see a list of all the files changed, added or deleted in any given revision. You can also view the differences between two versions of a file so as to see exactly what was changed in a particular revision.
We can use yum
or dnf
to install websvn
on AlmaLinux 8. In this tutorial we discuss both methods but you only need to choose one of method to install websvn.
Install websvn on AlmaLinux 8 Using dnf
Update yum database with dnf
using the following command.
sudo dnf makecache --refresh
After updating yum database, We can install websvn
using dnf
by running the following command:
sudo dnf -y install websvn
Install websvn on AlmaLinux 8 Using yum
Update yum database with yum
using the following command.
sudo yum makecache --refresh
After updating yum database, We can install websvn
using yum
by running the following command:
sudo yum -y install websvn
How To Uninstall websvn on AlmaLinux 8
To uninstall only the websvn
package we can use the following command:
sudo dnf remove websvn
References
Summary
In this tutorial we learn how to install websvn
on AlmaLinux 8 using yum and dnf.