How To Install tkcvs on CentOS 7

In this tutorial we learn how to install tkcvs on CentOS 7. tkcvs is TkCVS and TkDiff

Introduction

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

What is tkcvs

TkCVS is a Tcl/Tk-based graphical interface to the CVS and Subversion configuration management systems. It will also help with RCS. TkDiff is included for browsing and merging your changes. TkCVS shows the status of the files in the current working directory, and has tools for tagging, merging, importing, exporting, checking in/out, and other user operations. TkCVS also aids in browsing the repository. For Subversion, the repository tree is browsed like an ordinary file tree. For CVS, the CVSROOT/modules file is read. TkCVS extends CVS with a method to produce a “user friendly” listing of modules. This requires special comments in the CVSROOT/modules file. Although TkCVS now supports Subversion, it will still work happily without it in your CVS directories. It didn’t abandon CVS, it just grew some new capabilities.

We can use yum or dnf to install tkcvs on CentOS 7. In this tutorial we discuss both methods but you only need to choose one of method to install tkcvs.

Install tkcvs on CentOS 7 Using yum

Update yum database with yum using the following command.

sudo yum makecache

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

sudo yum -y install tkcvs

Install tkcvs 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 tkcvs using dnf by running the following command:

sudo dnf -y install tkcvs

How To Uninstall tkcvs on CentOS 7

To uninstall only the tkcvs package we can use the following command:

sudo dnf remove tkcvs

References

Summary

In this tutorial we learn how to install tkcvs on CentOS 7 using yum and dnf.