- Trending Categories
Data Structure
Networking
RDBMS
Operating System
Java
MS Excel
iOS
HTML
CSS
Android
Python
C Programming
C++
C#
MongoDB
MySQL
Javascript
PHP
Physics
Chemistry
Biology
Mathematics
English
Economics
Psychology
Social Studies
Fashion Studies
Legal Studies
- Selected Reading
- UPSC IAS Exams Notes
- Developer's Best Practices
- Questions and Answers
- Effective Resume Writing
- HR Interview Questions
- Computer Glossary
- Who is Who
Found 1019 Articles for Operating System

Updated on 03-Mar-2023 14:38:17
When working with files and directories in Linux, it’s important to understand how to set permissions. Permissions define who can access and modify files and directories on a system. In this article, we will go through how to use chown and chmod commands to set permissions on files and directories. Understanding Linux File Permissions In Linux, each file and directory has three types of permissions: read, write, and execute. These permissions can be set for three different categories of users − owner of file or directory, group to which file or directory belongs, and all other users. The read permission ... Read More 
Updated on 03-Mar-2023 14:37:22
Introduction Linux is powerful operating system it provides a variety of command-line tools to managing files or directories. One of most useful tool is find command, it allows users to search any files and directories based on a wide range of search criteria. In this article, you will get a comprehensive guide to using find command, including a variety of examples that demonstrate its capabilities. Basic Usage The basic syntax of find command is as follows − find [path] [expression] The path argument specifies starting directory for search, and expression argument specifies criteria for search. Here are ... Read More 
Updated on 03-Mar-2023 14:35:14
Introduction Postfix is open-source mail transfer agent (MTA) it allows users to send and receive email on Linux system. It is efficient and easy-to-use solution, it can configured to work with various email providers, including Gmail. In this article, we will show you steps to configure Postfix using Gmail SMTP on Ubuntu. This process involve setting up Gmail account to allow any apps to access it, installing and configuring Postfix, testing setup to ensure it works. Before dive into details, let's take why you might want to use Gmail SMTP with Postfix. Why Use Gmail SMTP with Postfix? Using ... Read More 
Updated on 03-Mar-2023 14:33:41
When it comes to sending email using Linux system, there are a few options to choose from. However, Sendmail is popular choices, and for good reason. Sendmail is efficient and reliable mail transfer agent (MTA) that handle large volume of emails. In this article, we will show you step-by-step how to set up Sendmail on your Ubuntu system. Before we start installation process, let's talk to understand how Sendmail works. Sendmail works by accepting email messages from local or remote mail clients, then relaying them to destination mail servers. This messages can delivered to other machines on the local network ... Read More 
Updated on 03-Mar-2023 14:32:19
Sendmail is a popular mail transfer agent used to send emails from one computer to another. It may installed by default on Ubuntu, which makes it a convenient option to sending emails from server. If you use Gmail, you can configure sendmail to send emails through Gmail account. In this article, we will show you the process of configuring sendmail with Gmail on Ubuntu. Requirements Before starting, there are few requirements that need to configure sendmail with Gmail on Ubuntu − A Gmail account A Ubuntu server Sendmail installed on your Ubuntu server OpenSSL installed on your Ubuntu server ... Read More 
Updated on 03-Mar-2023 11:03:02
Introduction Postfix is used mail transfer agent that is used to send and receive emails. It is easy to install and configure on Ubuntu server. In this tutorial, we will show you how to configure Postfix with Gmail on Ubuntu. Prerequisites Before you proceed, you will need the following − A running Ubuntu server A Gmail account A valid domain name that is configured to point to the server's IP address Step 1: Install Postfix In the first step install Postfix on your Ubuntu system. You can do this by running following command − sudo apt-get install postfix ... Read More 
Updated on 02-Mar-2023 16:44:55
Apple created and developed the Mac operating system. Microsoft, on the other hand, created and produced the Windows operating system. The Mac operating system's intuitive interface and charming design are well known. Windows is praised for being tough and working with a variety of software functionalities. Read this article to find out more about Mac and Windows and how they are different from each other. What is Mac? The Mac operating system is a collection of graphic user interfaces. Mac OS is designed to run on Apple hardware, which includes products such as the MacBook, Mac Mini, and Mac Pro. ... Read More 
Updated on 02-Mar-2023 15:29:43
Egrep and Fgrep, two different command-line utilities, are used to search for text patterns in files. These two commands are often used in operating systems built on Unix, like Linux and macOS. An enhanced version of the ordinary grep tool is known as "extended grep." It supports the use of extended regular expressions, which enable searches that are more complicated than those possible with standard grep. fgrep, which stands for "fixed grep, " is designed to search for fixed strings rather than patterns. Because of this, fgrep is quicker than grep and egrep but also less customizable. We ... Read More 
Updated on 02-Mar-2023 15:20:28
Linux is a popular operating system among computer enthusiasts. It is a free and open operating system. Shells are the screens that we utilize to control an operating system. Shells are CSH and BASH. Shells act as a channel for communication between programmers and the device. We issue orders and obtain results. The C-shell was named after the C programming syntax. One of its many benefits is the ability to regulate jobs. It may be accessed via script shell command runner and interactive shell login. It might not be easy to use at times. Bash is a shell software similar ... Read More 
Updated on 27-Feb-2023 12:50:42
Firewalls are an integral component of every contemporary computer system, safeguarding the network and protecting the system from illegal access. We'll take a deep dive into the realm of Linux firewalls and learn how to configure one in this post. Before we involve into the technical details of establishing a firewall in Linux, let us clarify what a firewall is and why it is so important! A firewall is a network security device that monitors and restricts network traffic based on predefined security rules. A firewall's principal function is to block unauthorised access to a computer system or network while ... Read More Advertisements