The Python development team has released the latest version of Python 3.10. This includes more new features, security patches, and many other improvements. This version includes a new feature that is “Parenthesized context managers”. Using enclosing parentheses for continuation across multiple lines in context managers is now supported. For more details read the complete changelog. This tutorial will help you with the installation of Python 3.10 on Debian 11 & Debian 10 Linux systems. The tutorial will compile and install Python 3.10 source code on your system. Prerequisites First of all, Log in to your Debian-based system with sudo privileged…
Author: Rahul
The Python development team has released the latest version of Python 3.10. This includes more new features, security patches, and many other improvements. This version includes a new feature that is Parenthesized, context managers. Using enclosing parentheses for continuation across multiple lines in context managers is now supported. For more details read the complete changelog. This tutorial will help you with the installation of Python 3.10 on all Fedora versions and CentOS/RHEL 8 Linux systems. The tutorial will compile and install Python 3.10 source code on your system. Prerequisites The system must have a pre-installed GCC compiler on your system.…
Git is a powerful and widely used distributed version control system (VCS) essential for managing code projects. It allows you to track changes, collaborate effectively, and revert to previous versions if necessary. This guide will walk you through the straightforward process of installing Git on your Fedora Linux system. Prerequisites A Fedora Linux system with an active internet connection. Basic understanding of using the terminal. Administrative privileges (sudo access) on your system. Method 1: Installing Git from Default Repository This method is the easiest way to get Git up and running on your Fedora system. The official Fedora repositories contain…
A TXT file is a plain text file that contains unformatted text. It is a common file type that is supported by most text editors and word processors, making it a versatile and widely-used file format. One of the key characteristics of a TXT file is its simplicity. Unlike other file formats, such as Microsoft Word documents or PDFs, which can contain a variety of different formatting options and multimedia elements, a TXT file only contains text. This makes it a great choice for storing and sharing simple, unformatted information, such as notes, lists, or code snippets. TXT files can…
Sometimes the long running requests failed with the error message “504: Gateway Timeout” in NGINX web server. To solve this issue, you need to increase request timeout in NGINX server configuration. The default, NGINX request timeout is 60 seconds. Which can be increased or decreased by updating the configuration files. In this quick FAQ, you will learn to change the request timeout in NGINX web server. Increase Request Timeout in NGINX For example, you want to increase request timeout to 300 seconds. Then you need to add proxy_read_timeout, proxy_connect_timeout, proxy_send_timeout directives to http or server block. Here the http block…
Apache, being a widely used web server, offers flexibility in configuring and securing web services. One effective measure to secure an Apache server is by disabling HTTP methods that are unnecessary or pose security risks. The process involves modifying server configuration, specifically through the use of the .htaccess file. Before proceeding, ensure that both the Apache rewrite module and the .htaccess file functionality are enabled on your server. This is crucial for the rewrite rules to be recognized and applied. This comprehensive guide delves into the process of disabling unwanted HTTP methods on an Apache web server, enhancing its security…
FTP is a file transfer network protocol used to efficiently transfer files among servers and clients over a computer network without any complexity. FTP first applications were written on the command line before GUI OS appeared. Although there are various clients of GUI FTP, software developers still create FTP clients for users based on CLI who prefer utilizing the old-fashioned way. There are numerous Linux FTP Clients which are secure and robust and easily accessible in the market. This article conveys the most reliable and best Linux FTP Clients that one ought to select the finest one to fulfill the…
Bash is a popular command-line shell used in Linux and Unix operating systems. One of the most useful commands in Bash is printf, which allows users to format and print text in various ways. In this article, we will provide an overview of the Bash printf command and offer a basic usage guide. Overview of Bash printf Command The printf command is used to format and print text in Bash. It allows users to specify the format of the output, including the width of the output, the number of decimal places, and the alignment of the text. The syntax for…
In this new age watching movies or tv shows is easily done through online streaming sites such as Netflix, Amazon Prime, and Hulu. But not always these streaming sites are available in your region nor everyone can afford a paid subscription. In such cases, people prefer free-online sites but those come with excessive ads pop-ups every few mins. To avoid such situations and hassle-free watching of your favorite movies and shows users simply download their favorite shows and movies from different online sources and watch them using Video Players. Finding the best video player is also a task, sometimes they’re…
The Sequence Expression is used to create a range of characters and integers by defining a start and endpoint. Usually, the Bash Sequence Expression is used with For Loops. The syntax of Sequence Expression is: {START..END[..INCREMENT]} Here the start and end values are mandatory and can be either characters or integers. Next, the increment value is optional and if we use it then it must be separated from the End value with two dots. If we do not use an increment value then the default value would be 1. Sequence Expression Examples in Bash Let’s take some examples of printing…