Introduction
In this tutorial we learn how to install svgtune
on Kali Linux.
What is svgtune
svgtune is:
svgtune is a little helper to generate a set of .svg files out
of a single .svg file, by tuning respective groups/layers visibility,
transparency or anything else.
It might come very handy for generation of incremental figures to be
embedded into the presentation in any format which inkscape could
render using original .svg file (e.g. pdf, png).
There are three methods to install svgtune
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 svgtune Using apt-get
Update apt database with apt-get
using the following command.
sudo apt-get update
After updating apt database, We can install svgtune
using apt-get
by running the following command:
sudo apt-get -y install svgtune
Install svgtune Using apt
Update apt database with apt
using the following command.
sudo apt update
After updating apt database, We can install svgtune
using apt
by running the following command:
sudo apt -y install svgtune
Install svgtune 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 update
After updating apt database, We can install svgtune
using aptitude
by running the following command:
sudo aptitude -y install svgtune
How To Uninstall svgtune on Kali Linux
To uninstall only the svgtune
package we can use the following command:
sudo apt-get remove svgtune
Uninstall svgtune And Its Dependencies
To uninstall svgtune
and its dependencies that are no longer needed by Kali Linux, we can use the command below:
sudo apt-get -y autoremove svgtune
Remove svgtune Configurations and Data
To remove svgtune
configuration and data from Kali Linux we can use the following command:
sudo apt-get -y purge svgtune
Remove svgtune configuration, data, and all of its dependencies
We can use the following command to remove svgtune
configurations, data and all of its dependencies, we can use the following command:
sudo apt-get -y autoremove --purge svgtune
Dependencies
svgtune have the following dependencies:
References
Summary
In this tutorial we learn how to install svgtune
package on Kali Linux using different package management tools: apt
, apt-get
and aptitude
.