Most of the operation can be done in two ways i.e. via user interface and via the command line interface (CLI). This turotial of creating new user in CentOS will be donw via the command line terminal. Tutorial covers topics such as creation of user, adding a password, deleting user ans listing the user information.
Month: November 2020
Convert any format of the image to jpg format using python.
In this tutorial, we are going to learn how to convert the image format into jpg and other formats. Before starting the coding, please make sure you have installed the pillow library into your system. If you have not installed the pillow module yet install it using the following command.
How To send email using python.
Simple mail transfer protocol (SMTP) is an application layer protocol that transfers an email from one user to another user. As a software developer or programmer, we need to send lots of plain text email and also an email with reports, query results, images, text data, application form data, etc to the business client from a different …
HOW TO CREATE NEW PROCESS WITH FORK IN PYTHON?
fork() is an operation whereby a process creates a copy of itself. It is usually a system call, implemented in the kernel. With this system call, it creates a child process that runs concurrently with the process that created it (Parent Process).