How To Install dasher on Kali Linux
Introduction
In this tutorial we learn how to install dasher
on Kali Linux.
What is dasher
dasher is:
Dasher is an information-efficient text-entry interface, driven by natural continuous pointing gestures. Dasher is a competitive text-entry system wherever a full-size keyboard cannot be used - for example,
- on a palmtop computer
- on a wearable computer
- when operating a computer one-handed, by joystick, touchscreen, trackball, or mouse
- when operating a computer with zero hands (i.e., by head-mouse or by eyetracker).
The eyetracking version of Dasher allows an experienced user to write text as fast as normal handwriting - 25 words per minute; using a mouse, experienced users can write at 39 words per minute.
Dasher uses a more advanced prediction algorithm than the T9(tm) system often used in mobile phones, making it sensitive to surrounding context.
There are three methods to install dasher
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 dasher Using apt-get
Update apt database with apt-get
using the following command.
sudo apt-get update
After updating apt database, We can install dasher
using apt-get
by running the following command:
sudo apt-get -y install dasher
Install dasher Using apt
Update apt database with apt
using the following command.
sudo apt update
After updating apt database, We can install dasher
using apt
by running the following command:
sudo apt -y install dasher
Install dasher 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 dasher
using aptitude
by running the following command:
sudo aptitude -y install dasher
How To Uninstall dasher on Kali Linux
To uninstall only the dasher
package we can use the following command:
sudo apt-get remove dasher
Uninstall dasher And Its Dependencies
To uninstall dasher
and its dependencies that are no longer needed by Kali Linux, we can use the command below:
sudo apt-get -y autoremove dasher
Remove dasher Configurations and Data
To remove dasher
configuration and data from Kali Linux we can use the following command:
sudo apt-get -y purge dasher
Remove dasher configuration, data, and all of its dependencies
We can use the following command to remove dasher
configurations, data and all of its dependencies, we can use the following command:
sudo apt-get -y autoremove --purge dasher
Dependencies
dasher have the following dependencies:
- libatspi2.0-0
- libc6
- libcairo2
- libexpat1
- libgcc-s1
- libglib2.0-0
- libgtk-3-0
- libpango-1.0-0
- libpangocairo-1.0-0
- libspeechd2
- libstdc++6
- libatk-adaptor
- dasher-data
References
Summary
In this tutorial we learn how to install dasher
package on Kali Linux using different package management tools: apt
, apt-get
and aptitude
.