How To Install cliofetion on Debian 9

In this tutorial we learn how to install cliofetion on Debian 9. cliofetion is open source command line implementation of Fetion protocol

Introduction

In this tutorial we learn how to install cliofetion on Debian 9.

What is cliofetion

cliofetion is:

Fetion is an IM provided by China Mobile, with features like, text chat, voice call, file sharing, etc. Openfetion is an open source client implementation of the protocol.

It only supports the core Internet SMS service.

There are three methods to install cliofetion on Debian 9. We can use apt-get, apt and aptitude. In the following sections we will describe each method. You can choose one of them.

Install cliofetion Using apt-get

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

sudo apt-get update

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

sudo apt-get -y install cliofetion

Install cliofetion Using apt

Update apt database with apt using the following command.

sudo apt update

After updating apt database, We can install cliofetion using apt by running the following command:

sudo apt -y install cliofetion

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

sudo aptitude -y install cliofetion

How To Uninstall cliofetion on Debian 9

To uninstall only the cliofetion package we can use the following command:

sudo apt-get remove cliofetion

Uninstall cliofetion And Its Dependencies

To uninstall cliofetion and its dependencies that are no longer needed by Debian 9, we can use the command below:

sudo apt-get -y autoremove cliofetion

Remove cliofetion Configurations and Data

To remove cliofetion configuration and data from Debian 9 we can use the following command:

sudo apt-get -y purge cliofetion

Remove cliofetion configuration, data, and all of its dependencies

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

sudo apt-get -y autoremove --purge cliofetion

Dependencies

cliofetion have the following dependencies:

References

Summary

In this tutorial we learn how to install cliofetion package on Debian 9 using different package management tools: apt, apt-get and aptitude.