How To Install scour on Kali Linux
Introduction
In this tutorial we learn how to install scour
on Kali Linux.
What is scour
scour is:
Scour is a Python module that aggressively cleans SVG files, removing a lot of unnecessary information that certain tools or authors embed into their documents. The goal of scour is to provide an identically rendered image (i.e. a scoured document should have no discernible visible differences from the original file) while minimizing the file size.
WARNING: Scour is intended to be run on files that have been edited in Vector Graphics editors such as Inkscape or Adobe Illustrator. Scour attempts to optimize the file, and as result, it will change the file’s structure and (possibly) its semantics. If you have hand-edited your SVG files, you will probably not be happy with the output of Scour.
This package provides the “scour” command line utility and a dh_scour debhelper extension which optimizes all shipped SVGs during package build. If gir1.2-rsvg-2.0 and python3-gi-cairo are available, it will also do a before/after comparison and discard the optimized image if they differ by more than 0.05%.
There are three methods to install scour
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 scour Using apt-get
Update apt database with apt-get
using the following command.
After updating apt database, We can install scour
using apt-get
by running the following command:
Install scour Using apt
Update apt database with apt
using the following command.
After updating apt database, We can install scour
using apt
by running the following command:
Install scour 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.
After updating apt database, We can install scour
using aptitude
by running the following command:
How To Uninstall scour on Kali Linux
To uninstall only the scour
package we can use the following command:
Uninstall scour And Its Dependencies
To uninstall scour
and its dependencies that are no longer needed by Kali Linux, we can use the command below:
Remove scour Configurations and Data
To remove scour
configuration and data from Kali Linux we can use the following command:
Remove scour configuration, data, and all of its dependencies
We can use the following command to remove scour
configurations, data and all of its dependencies, we can use the following command:
Dependencies
scour have the following dependencies:
References
Summary
In this tutorial we learn how to install scour
package on Kali Linux using different package management tools: apt
, apt-get
and aptitude
.