How To Install cellwriter on Kali Linux
Introduction
In this tutorial we learn how to install cellwriter on Kali Linux.
What is cellwriter
cellwriter is:
CellWriter is a grid-entry natural handwriting input panel. As you write characters into the cells, your writing is instantly recognized at the character level. When you press ‘Enter’ on the panel, the input you entered is sent to the currently focused application as if typed on the keyboard.
- Writer-dependent, learns your handwriting for reliable recognition
- Correcting preprocessor algorithms account for digitizer noise, differing stroke order, direction, and number of strokes
- Unicode support enables you to write in your native language
There are three methods to install cellwriter 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 cellwriter Using apt-get
Update apt database with apt-get using the following command.
sudo apt-get updateAfter updating apt database, We can install cellwriter using apt-get by running the following command:
sudo apt-get -y install cellwriterInstall cellwriter Using apt
Update apt database with apt using the following command.
sudo apt updateAfter updating apt database, We can install cellwriter using apt by running the following command:
sudo apt -y install cellwriterInstall cellwriter 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 cellwriter using aptitude by running the following command:
sudo aptitude -y install cellwriterHow To Uninstall cellwriter on Kali Linux
To uninstall only the cellwriter package we can use the following command:
sudo apt-get remove cellwriterUninstall cellwriter And Its Dependencies
To uninstall cellwriter and its dependencies that are no longer needed by Kali Linux, we can use the command below:
sudo apt-get -y autoremove cellwriterRemove cellwriter Configurations and Data
To remove cellwriter configuration and data from Kali Linux we can use the following command:
sudo apt-get -y purge cellwriterRemove cellwriter configuration, data, and all of its dependencies
We can use the following command to remove cellwriter configurations, data and all of its dependencies, we can use the following command:
sudo apt-get -y autoremove --purge cellwriterDependencies
cellwriter have the following dependencies:
- libc6
- libcairo2
- libgdk-pixbuf-2.0-0
- libglib2.0-0
- libgtk2.0-0
- libpango-1.0-0
- libpangocairo-1.0-0
- libx11-6
- libxtst6
- librsvg2-common
References
Summary
In this tutorial we learn how to install cellwriter package on Kali Linux using different package management tools: apt, apt-get and aptitude.