How To Install websvn on CentOS 7

In this tutorial we learn how to install websvn on CentOS 7. websvn is Online subversion repository browser

Introduction

In this tutorial we learn how to install websvn on CentOS 7.

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 CentOS 7. In this tutorial we discuss both methods but you only need to choose one of method to install websvn.

Install websvn on CentOS 7 Using yum

Update yum database with yum using the following command.

sudo yum makecache

After updating yum database, We can install websvn using yum by running the following command:

sudo yum -y install websvn

Install websvn on CentOS 7 Using dnf

If you don’t have dnf installed you can install DNF on CentOS 7 first. Update yum database with dnf using the following command.

sudo dnf makecache

After updating yum database, We can install websvn using dnf by running the following command:

sudo dnf -y install websvn

How To Uninstall websvn on CentOS 7

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 CentOS 7 using yum and dnf.