How To Install choqok on Debian 12
Introduction
In this tutorial we learn how to install choqok
on Debian 12.
What is choqok
choqok is:
Choqok is a fast, efficient and simple to use micro-blogging client for KDE. It currently supports the twitter.com and identi.ca microblogging services.
Other notable features include: * Support for user + friends time-lines. * Support for @Reply time-lines. * Support for sending and receiving direct messages. * Twitpic.com integration. * The ability to use multiple accounts simultaneously. * Support for search APIs for all services. * KWallet integration. * Support for automatic shortening urls with more than 30 characters. * Support for configuring status lists appearance.
There are three methods to install choqok
on Debian 12. We can use apt-get
, apt
and aptitude
. In the following sections we will describe each method. You can choose one of them.
Install choqok Using apt-get
Update apt database with apt-get
using the following command.
sudo apt-get update
After updating apt database, We can install choqok
using apt-get
by running the following command:
sudo apt-get -y install choqok
Install choqok Using apt
Update apt database with apt
using the following command.
sudo apt update
After updating apt database, We can install choqok
using apt
by running the following command:
sudo apt -y install choqok
Install choqok 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 choqok
using aptitude
by running the following command:
sudo aptitude -y install choqok
How To Uninstall choqok on Debian 12
To uninstall only the choqok
package we can use the following command:
sudo apt-get remove choqok
Uninstall choqok And Its Dependencies
To uninstall choqok
and its dependencies that are no longer needed by Debian 12, we can use the command below:
sudo apt-get -y autoremove choqok
Remove choqok Configurations and Data
To remove choqok
configuration and data from Debian 12 we can use the following command:
sudo apt-get -y purge choqok
Remove choqok configuration, data, and all of its dependencies
We can use the following command to remove choqok
configurations, data and all of its dependencies, we can use the following command:
sudo apt-get -y autoremove --purge choqok
Dependencies
choqok have the following dependencies:
- libqca-qt5-2-plugins
- kio
- libc6
- libkf5attica5
- libkf5configcore5
- libkf5configgui5
- libkf5configwidgets5
- libkf5coreaddons5
- libkf5emoticons-bin
- libkf5emoticons5
- libkf5globalaccel-bin
- libkf5globalaccel5
- libkf5guiaddons5
- libkf5i18n5
- libkf5jobwidgets5
- libkf5kcmutils5
- libkf5kiocore5
- libkf5kiofilewidgets5
- libkf5kiowidgets5
- libkf5notifications5
- libkf5notifyconfig5
- libkf5parts5
- libkf5purpose-bin
- libkf5purpose5
- libkf5service-bin
- libkf5service5
- libkf5sonnetcore5
- libkf5textwidgets5
- libkf5wallet-bin
- libkf5wallet5
- libkf5webkit5
- libkf5widgetsaddons5
- libkf5xmlgui5
- libqt5core5a
- libqt5dbus5
- libqt5gui5
- libqt5networkauth5
- libqt5webkit5
- libqt5widgets5
- libqt5xml5
- libstdc++6
- libtelepathy-qt5-0
References
Summary
In this tutorial we learn how to install choqok
package on Debian 12 using different package management tools: apt
, apt-get
and aptitude
.