Python is most popular programming language. It is used by multiple ways to build different kinds of applications. Python 3.9 is the latest major release of the Python language. It includes many new features such as new dict operators, new str functions, support for IANA time zone, and more. This tutorial describes multiple ways to
Make Linux Great Again
Listing Linux Services with Systemctl
In Linux, a service is a program that runs in the background . Services can be started on-demand or at the boot time. If you are using Linux as your primary operating system or development, platform you will deal with different services such as webserver, ssh or, cron . Knowing how to list running services
How to Install Notepad++ on Debian 10
Notepad++ is one of the most used application by Windows users. It’s most advanced version of notepad which includes a large number of options. In this guide, we will show you how to install Notepad++ on Debian 10. Generally, the Linux users would like to use the command line editors such as nano and vim.
How to Install GIMP 2.10 on Ubuntu 20.04
GIMP is most popular open-source and cross platform application for image manipulation. It’s used to optimize images, convert the types of images and much more. GIMP is available for Linux, Windows, macOS, and FreeBSD etc. This tutorial will show you how to install the latest Gimp on Ubuntu 20.04. Prerequisites# You must logged in as
How to Install ONLYOFFICE Docs on Debian and Ubuntu
If you use the file sync & share platform and want to expand its functionality by adding online editing features, you should definitely give a try to ONLYOFFICE Docs. ONLYOFFICE Docs allows you to create a collaborative environment by adding its online editors to the platform of your choice, whether it be Alfresco, Confluence, Liferay,
How to Install Python 3.9 on Ubuntu 20.04
Python is most popular programming language. It is used by multiple ways to build different kinds of applications. Python 3.9 is the latest major release of the Python language. It includes many new features such as new dict operators, new str functions, support for IANA time zone, and more. This tutorial describes multiple ways to
How to List Installed Repositories on Ubuntu & Debian
In Linux, a collection of packages knowns as repository. You can make a common repository with the actual package and connect your other systems with this central repository. After that you can install and update packages from there. In this tutorial, we will show you how to list all installed repositories on Ubuntu and Debian
How to Install Notepad++ on Ubuntu 20.04
Notepad++ is one of the most used application by Windows users. We can say it’s most advanced version of notepad which includes a large number of options. In this guide, we will show you how to install Notepad++ on Ubuntu 20.04. Generally, the Linux users would like to use the command line editors such as
What IP – A Network Information Tool for Linux
What IP is a graphical-based simple network information tool which provides information about IP address and listening ports. It is written in Python and GTK3. It is released under GPL3 license and the source code is available in GitLab. Features Get public, virtual, or local IP address. The IP address is based on our location
How to Use sed to Find and Replace String in Files
When working with text files, you’ll often need to find and replace strings of text in one or more files. The sed is a stream editor. It is used to search, find and replace, insert and delete words and lines. You also can use the regular expressions. In this article we will show you how