
Data Structure
Networking
RDBMS
Operating System
Java
MS Excel
iOS
HTML
CSS
Android
Python
C Programming
C++
C#
MongoDB
MySQL
Javascript
PHP
- 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 2003 Articles for Operating System

6K+ Views
Linux is an operating system, it become popular for its open-source nature, flexibility, and reliability. Including its many features, Linux also provides powerful tools for managing files and data, including ability to concatenate files. The concatenation is process of joining two or more files together, creating single file that contains contents of all original files. In this article, we will explore different methods of concatenating files in Linux, including examples and subheadings. Concatenating Files Using cat Command The cat command is a powerful tool for managing text files in Linux. It can be used to create new files, view ... Read More

3K+ Views
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

426 Views
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

14K+ Views
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

19K+ Views
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

12K+ Views
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

6K+ Views
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

4K+ Views
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

7K+ Views
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

7K+ Views
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