How To Install svn-load on Kali Linux
Introduction
In this tutorial we learn how to install svn-load on Kali Linux.
What is svn-load
svn-load is:
svn-load is a free replacement for svn_load_dirs, an enhanced import facility for Subversion.
This utility will commit a single changeset that alters a repository subtree to match a local directory. It detects filenames that have been removed or created, and uses this knowledge to prompt the user about file and directory movements within the subtree. An automatic tagging option is also supported.
svn-load is well suited for vendor branch maintenance, where external source is routinely imported and merged.
There are three methods to install svn-load on Kali Linux. We can use apt-get, apt and aptitude. In the following sections we will describe each method. You can choose one of them.
Install svn-load Using apt-get
Update apt database with apt-get using the following command.
sudo apt-get updateAfter updating apt database, We can install svn-load using apt-get by running the following command:
sudo apt-get -y install svn-loadInstall svn-load Using apt
Update apt database with apt using the following command.
sudo apt updateAfter updating apt database, We can install svn-load using apt by running the following command:
sudo apt -y install svn-loadInstall svn-load Using aptitude
If you want to follow this method, you might need to install aptitude on Kali Linux first since aptitude is usually not installed by default on Kali Linux. Update apt database with aptitude using the following command.
sudo aptitude updateAfter updating apt database, We can install svn-load using aptitude by running the following command:
sudo aptitude -y install svn-loadHow To Uninstall svn-load on Kali Linux
To uninstall only the svn-load package we can use the following command:
sudo apt-get remove svn-loadUninstall svn-load And Its Dependencies
To uninstall svn-load and its dependencies that are no longer needed by Kali Linux, we can use the command below:
sudo apt-get -y autoremove svn-loadRemove svn-load Configurations and Data
To remove svn-load configuration and data from Kali Linux we can use the following command:
sudo apt-get -y purge svn-loadRemove svn-load configuration, data, and all of its dependencies
We can use the following command to remove svn-load configurations, data and all of its dependencies, we can use the following command:
sudo apt-get -y autoremove --purge svn-loadDependencies
svn-load have the following dependencies:
References
Summary
In this tutorial we learn how to install svn-load package on Kali Linux using different package management tools: apt, apt-get and aptitude.