How To Install basket on Debian 11
Introduction
In this tutorial we learn how to install basket
on Debian 11.
What is basket
basket is:
This application provides as many baskets (drawers) as you wish; Several kinds of objects (texts, URLs, images,…) can be drag-n-drop’d into it.
Objects can be edited, copied, dragged… So, they can be arranged according to users’ taste. Moreover, Basket allows you to keep all objects you want in one place, keep data on hand, take notes…
There are three methods to install basket
on Debian 11. We can use apt-get
, apt
and aptitude
. In the following sections we will describe each method. You can choose one of them.
Install basket Using apt-get
Update apt database with apt-get
using the following command.
sudo apt-get update
After updating apt database, We can install basket
using apt-get
by running the following command:
sudo apt-get -y install basket
Install basket Using apt
Update apt database with apt
using the following command.
sudo apt update
After updating apt database, We can install basket
using apt
by running the following command:
sudo apt -y install basket
Install basket Using aptitude
If you want to follow this method, you might need to install aptitude first since aptitude is usually not installed by default on Debian. Update apt database with aptitude
using the following command.
sudo aptitude update
After updating apt database, We can install basket
using aptitude
by running the following command:
sudo aptitude -y install basket
How To Uninstall basket on Debian 11
To uninstall only the basket
package we can use the following command:
sudo apt-get remove basket
Uninstall basket And Its Dependencies
To uninstall basket
and its dependencies that are no longer needed by Debian 11, we can use the command below:
sudo apt-get -y autoremove basket
Remove basket Configurations and Data
To remove basket
configuration and data from Debian 11 we can use the following command:
sudo apt-get -y purge basket
Remove basket configuration, data, and all of its dependencies
We can use the following command to remove basket
configurations, data and all of its dependencies, we can use the following command:
sudo apt-get -y autoremove --purge basket
Dependencies
basket have the following dependencies:
- basket-data
- kio
- libc6
- libgpgme11
- libkf5archive5
- libkf5codecs5
- libkf5completion5
- libkf5configcore5
- libkf5configgui5
- libkf5configwidgets5
- libkf5coreaddons5
- libkf5crash5
- libkf5dbusaddons5
- libkf5filemetadata3
- libkf5globalaccel-bin
- libkf5globalaccel5
- libkf5guiaddons5
- libkf5i18n5
- libkf5iconthemes5
- libkf5kcmutils5
- libkf5kiocore5
- libkf5kiowidgets5
- libkf5notifications5
- libkf5parts5
- libkf5service-bin
- libkf5service5
- libkf5textwidgets5
- libkf5widgetsaddons5
- libkf5windowsystem5
- libkf5xmlgui5
- libphonon4qt5-4
References
Summary
In this tutorial we learn how to install basket
package on Debian 11 using different package management tools: apt
, apt-get
and aptitude
.