How To Install scribus-data on Kali Linux

In this tutorial we learn how to install scribus-data on Kali Linux. scribus-data is Open Source Desktop Page Layout - data files

Introduction

In this tutorial we learn how to install scribus-data on Kali Linux.

What is scribus-data

scribus-data is:

Scribus is an open source desktop page layout program with the aim of producing commercial grade output in PDF and Postscript.

Scribus can be used for many tasks; from brochure design to newspapers, magazines, newsletters and posters to technical documentation.

Scribus supports professional DTP features, such as CMYK color and a color management system to soft proof images for high quality color printing, flexible PDF creation options, Encapsulated PostScript import/export and creation of 4 color separations, import of EPS/PS and SVG as native vector graphics, Unicode text including right to left scripts such as Arabic and Hebrew via freetype. Graphic formats which can be placed in Scribus as images include PDF, Encapsulated Post Script (eps), TIFF, JPEG, PNG and XPixMap(xpm), and any bitmap type supported by QT5.

This package contains the architecture-independent files.

There are three methods to install scribus-data 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 scribus-data Using apt-get

Update apt database with apt-get using the following command.

sudo apt-get update

After updating apt database, We can install scribus-data using apt-get by running the following command:

sudo apt-get -y install scribus-data

Install scribus-data Using apt

Update apt database with apt using the following command.

sudo apt update

After updating apt database, We can install scribus-data using apt by running the following command:

sudo apt -y install scribus-data

Install scribus-data 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 scribus-data using aptitude by running the following command:

sudo aptitude -y install scribus-data

How To Uninstall scribus-data on Kali Linux

To uninstall only the scribus-data package we can use the following command:

sudo apt-get remove scribus-data

Uninstall scribus-data And Its Dependencies

To uninstall scribus-data and its dependencies that are no longer needed by Kali Linux, we can use the command below:

sudo apt-get -y autoremove scribus-data

Remove scribus-data Configurations and Data

To remove scribus-data configuration and data from Kali Linux we can use the following command:

sudo apt-get -y purge scribus-data

Remove scribus-data configuration, data, and all of its dependencies

We can use the following command to remove scribus-data configurations, data and all of its dependencies, we can use the following command:

sudo apt-get -y autoremove --purge scribus-data

Dependencies

scribus-data have the following dependencies:

References

Summary

In this tutorial we learn how to install scribus-data package on Kali Linux using different package management tools: apt, apt-get and aptitude.