
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

2K+ Views
Nginx is a popular open-source web server software that can be used as a reverse proxy, load balancer, HTTP cache, and more. It’s known for its speed and scalability, and is widely used to serve web content for high-traffic websites. If you’re running an Ubuntu 20.04 server and want to use Nginx as your web server, this guide will walk you through installation and basic configuration process. Step 1: Update system Before we begin, it’s a good idea to update system to ensure that all packages are up to date. You can do this by running following command − sudo ... Read More

2K+ Views
Nginx is a popular web server that is known for its performance, reliability, and ease of use. It is widely used for hosting websites, serving as a reverse proxy, load balancer, and caching server. In this article, we will discuss how to install and configure Nginx on CentOS 8. Before we begin, make sure that you have root access to your CentOS 8 server. Additionally, you should have a basic understanding of Linux command line and be comfortable working with terminal-based applications. Step 1: Update System The first step is to ensure that your CentOS 8 system is up-to-date. You ... Read More

9K+ Views
Nginx is a popular web server that is known for its high performance, scalability, and low resource usage. It is commonly used as a reverse proxy, load balancer, and HTTP cache. In this article, we will discuss how to install and configure Nginx on CentOS 7. Step 1: Update System Before we start installing any packages, it's essential to update system to latest version. To do this, run following command − sudo yum update Step 2: Install Nginx Once system is updated, we can proceed with installation of Nginx. We can install Nginx using following command − sudo yum ... Read More

3K+ Views
Introduction The ISC DHCP server is a popular open-source software package that allows network administrators to dynamically allocate IP addresses and configure network settings to clients on a local area network (LAN). In some cases, it may be necessary to configure a server with multiple network interfaces, which is known as a multihomed server. This tutorial will guide you through process of installing and configuring ISC DHCP server on a Debian Linux system with multiple network interfaces. Prerequisites Before you begin, you will need − A Debian Linux system with root access Two or more network interfaces installed on ... Read More

565 Views
Introduction Memcached is a free and open-source, high-performance, distributed memory caching system. It is commonly used to speed up dynamic web applications by caching data and objects in memory, which reduces number of times an application must query a database or other data store. Memcached is also commonly used in a microservices architecture, where it is used as a shared cache between different services. In this article, we will discuss how to install and configure Memcached on Ubuntu. Step 1: Install Memcached The first step is to install Memcached package on your Ubuntu system. You can install it using following ... Read More

2K+ Views
The LAMP stack, which stands for Linux, Apache, MySQL/MariaDB, and PHP/Perl/Python, is a popular web application development and hosting environment. Installing LAMP on a Debian 11 (Bullseye) system is a straightforward process that involves installing and configuring individual components. In this article, we will go through step-by-step process of installing and configuring LAMP on a Debian 11 (Bullseye) system. Step 1: Update and Upgrade Your System Before installing LAMP on your Debian 11 (Bullseye) system, it is important to update and upgrade your system to ensure that you have latest software packages and security patches. You can do this by ... Read More

3K+ Views
GitLab is an open-source platform that allows you to manage your source code repositories and collaborate with your team members. With GitLab, you can host your Git repositories, manage code reviews, automate CI/CD pipelines, and much more. In this article, we will guide you through process of installing and configuring GitLab on CentOS 8/7. Before we start with installation, there are a few prerequisites that you need to fulfill − Prerequisites A CentOS 8/7 server with a minimum of 4GB of RAM and 2 CPU cores. A domain name pointing to server's IP address. A valid SSL certificate for ... Read More

6K+ Views
FTP (File Transfer Protocol) is a popular protocol used for transferring files between client and server machines. An FTP server allows clients to connect to server and access files stored on server. Ubuntu, a popular Linux distribution, comes with many FTP servers available for installation. In this article, we will discuss how to install and configure an FTP server in Ubuntu. Step 1: Install FTP Server The first step in setting up an FTP server in Ubuntu is to install FTP server package. There are several FTP server packages available for Ubuntu, including vsftpd, proftpd, and pure-ftpd. In this article, ... Read More

7K+ Views
In today's era, use of clusters has become increasingly important in field of computing. A cluster is a group of interconnected computers that work together as a single entity. They are used for high-performance computing, data analysis, and other applications where a single computer is not sufficient to handle load. In this article, we will discuss how to install and configure a cluster with two nodes in Linux. Before we proceed, it's important to understand concept of a cluster. A cluster consists of two or more nodes that work together as a single system. Each node is a separate computer ... Read More

1K+ Views
Cloudera Manager is an enterprise-level software solution for managing Apache Hadoop clusters. It provides a web-based interface for deploying, configuring, and monitoring Hadoop clusters. Cloudera Manager is available in both open-source and enterprise editions. In this article, we will discuss how to install and configure Cloudera Manager on CentOS/RHEL 8. Prerequisites Before we proceed with installation, make sure that following prerequisites are met − A fresh installation of CentOS/RHEL 8 A user with sudo privileges A stable internet connection Step 1: Install Java Cloudera Manager requires Java to be installed on system. CentOS/RHEL 8 comes with OpenJDK pre-installed, ... Read More