×


Blog


Install Buttercup on Linux Mint 20 - Best Method ?

This article covers methods to install Buttercup on a Linux Mint 20 system. In fact, Buttercup is a simple, yet mature and fully functional password manager. If you ever need a password manager, Buttercup may be a good option. For more details, see the site project website.


Install OnlyOffice on Linux Mint 20 - Best Method ?

This article covers the Installation procedure of OnlyOffice on your Linux Mint 20 system. In fact, ONLYOFFICE for Linux Mint 20 is an online office that enables you to manage documents, projects, team and customer relations in one place. Also, it offers a complete productivity suite with document management, project management, CRM, calendar, mail, and corporate network. 


How to Install ONLYOFFICE Desktop Editors via Snap ?

The easiest way of installing ONLYOFFICE Desktop Editors might be using a snap package.

1. To get the application installed, just execute the following command:

$ snap install onlyoffice-desktopeditors

2. When the installation process is over, you can launch ONLYOFFICE Desktop Editors using this terminal command:

$ snap run onlyoffice-desktopeditors


Install CUPS Print Server on Linux Mint 20 - Best Method ?

This article covers steps to install the CUPS print server on a Linux Mint 20 system. In fact, Linux uses the Common UNIX Printing System, also known as CUPS. CUPS uses the Internet Printing Protocol (IPP) to allow local printing and print sharing. The /etc/cups/ directory stores all the configuration files for printing. However, these files can be easily managed with the Printer Configuration Tool in Linux. Once it is installed on your system, you can use it very effectively for managing multiple printers and computers that wish to use those printers.


Enable SSH on Debian 9 System - Step by Step procedure ?

This article covers how to install and Enable SSH service on Debian 9 system. In short, SSH stands for Secure Shell. SSH is used for connecting to a remote computer accessing files and perform administrative tasks. You can now login remotely to your server using any SSH client from Linux or Windows system. To increase security of SSH connection by Changing default SSH port to custom one on you system. Get more details about SSH server from official SSH site.


How to Install SSH Server ?

On the system that acts as a server, run the following command:

$ sudo apt install openssh-server

You can check the status of the SSH service with the following command:

$ sudo systemctl status ssh

The system confirms that the SSH service is running.


Install Pip on Ubuntu 18.04 System - Step by Step Procedure ?

This article covers how to install PIP on Ubuntu 18.04 for Python 3 and Python 2. In fact, PIP is the default package manager for Python packages which allows you to install, and manage Python packages in an easy and convenient manner. 


How to Install pip for Python3 ?

Pip3 can be installed on Ubuntu using the APT package manager. 

1. To start off, update the package lists as shown:

$ sudo apt update

2. To install pip3 run the command:

$ sudo apt install python3-pip

3. Verify that pip3 is installed by running the command:

$ pip3 --version


For assistance on more command options and usage of pip3, run the below command:

$ pip3 --help


Install Python on Ubuntu 18.04 - Step by Step Process ?

This article covers the different ways to install Python on Ubuntu Linux system. In fact, Python is an object-oriented, high-level programming language. It is open-source with a large community. Python is used as a key language among the top tech companies like Google. Now you can start developing your Python 3 project.