Article Categories
- All Categories
-
Data Structure
-
Networking
-
RDBMS
-
Operating System
-
Java
-
MS Excel
-
iOS
-
HTML
-
CSS
-
Android
-
Python
-
C Programming
-
C++
-
C#
-
MongoDB
-
MySQL
-
Javascript
-
PHP
-
Economics & Finance
Articles by Satish Kumar
Page 55 of 94
Auto Logout in Linux Shell Using TMOUT Shell Variable
When using a Linux shell, it's essential to ensure that users are logged out when they are not actively using the system to maintain security and efficiency. This can be achieved by setting an automatic logout timer using the TMOUT shell variable. In this article, we will explore how to set up auto logout in Linux shell using TMOUT, its benefits, and how to modify the settings. What is TMOUT Shell Variable? TMOUT is an environment variable in Linux shell that defines the number of seconds a shell session can be idle before it is automatically logged out. ...
Read MoreAutojump – An Advanced ‘cd’ Command to Quickly Navigate Linux Filesystem
As a Linux user, you probably find yourself navigating through your file system on a regular basis. Whether you're moving between directories to run commands or searching for specific files, you may have found that using the cd command can become cumbersome and time-consuming, especially if you have to navigate through multiple directories. Fortunately, there's a solution: Autojump. What is Autojump? Autojump is a smart command-line tool that allows you to quickly and easily navigate through your file system by learning your most frequently used directories. It's an intelligent alternative to the standard cd command, and it's especially ...
Read MoreHow to Install & Setup a Mumble Server {Murmur} on Linux CentOS 7
Mumble is an open-source, low-latency, high-quality voice chat software primarily designed for online gaming communities. It provides a secure, reliable, and scalable communication system for users. Mumble has two components: the client software that users install on their machines, and the server software (called Murmur) that runs on a dedicated server. This tutorial covers how to install and configure a Mumble server on Linux CentOS 7. Prerequisites Before starting the installation process, ensure the following requirements are met: A Linux CentOS 7 server with root access An SSH client such as PuTTY or Terminal A non-root ...
Read MoreExclude grep From ps Results on Linux
The ps command in Linux displays information about running processes on a system. It provides a snapshot of current processes, including process ID (PID), user ownership, CPU and memory usage, and the command that started the process. When using ps with grep to filter processes, the grep command itself often appears in the results, which can be unwanted. Common Problem with ps and grep When searching for specific processes using ps | grep, the grep command itself appears in the output because it's also a running process at that moment: $ ps aux | grep ssh ...
Read MoreAutomate RHEL 7 Installation Using ‘Kickstart’
Red Hat Enterprise Linux 7 (RHEL 7) is a popular operating system used in many enterprise environments. As a system administrator, automating the installation process of RHEL 7 can be very beneficial. Automating installation saves time and reduces the risk of human error. Kickstart is a tool that can be used to automate the installation process of RHEL 7. In this article, we will look at how to use Kickstart to automate RHEL 7 installations. What is Kickstart? Kickstart is a tool used to automate the installation process of RHEL 7. With Kickstart, you can create a script ...
Read MoreHow to Check Logs Using journalctl in Linux
Logs are a crucial component of any Linux system, as they provide a record of system activity, including system events, user actions, and system processes. journalctl is a command-line utility for viewing and managing logs on Linux systems using the systemd initialization system. It provides powerful filtering and formatting capabilities to help administrators monitor system health and troubleshoot issues effectively. Basic journalctl Commands The journalctl command can view and filter system logs for all system services, the kernel, and specific services or users. It can display the entire journal, view logs from a specific boot, or filter logs ...
Read MoreAutomated Deployment of Spark Cluster on Bare Metal Cloud
Apache Spark is a widely used distributed computing framework for big data processing. It provides a flexible and scalable solution for processing large amounts of data in a timely manner. However, deploying and managing a Spark cluster can be a challenging task, especially for those who are new to the field of big data. In recent years, Bare Metal Cloud (BMC) providers have emerged as a promising solution for running distributed systems. BMCs provide the benefits of cloud computing, such as flexible resource allocation, while also providing the performance benefits of dedicated hardware. This article discusses how to automate ...
Read MoreHow to Install a Debian 10 (Buster) Minimal Server
Debian 10 (Buster) is a reliable and secure server operating system known for its stability, security, and open-source nature. A minimal server installation provides a stripped-down version without graphical interface or unnecessary software, making it ideal for custom server configurations tailored to specific needs. Before proceeding, note that installing a Debian 10 minimal server requires basic Linux command-line knowledge. If you're new to Linux, consider starting with a desktop version like Debian 10 GNOME before moving to the minimal installation. Prerequisites Basic understanding of Linux command line USB drive with at least 4GB capacity Target server ...
Read MoreAutomated Installations of Multiple RHEL Distributions using PXE Server and Kickstart
In the world of IT, efficiency is key. Whether it's managing a data center, deploying a new software update, or configuring new hardware, streamlining processes can make all the difference. One of the most important areas where this is true is in the installation and configuration of operating systems. And when it comes to deploying multiple instances of Red Hat Enterprise Linux (RHEL), there's no better solution than automated installations using PXE server and Kickstart files. What is PXE Server? PXE (Preboot Execution Environment) is a network protocol that allows a computer to boot from a server on ...
Read MoreHow to Install a Desktop (GUI) on an Ubuntu Server
Ubuntu is a popular Linux distribution that is widely used for its reliability and security. One of the main advantages of using Ubuntu is that it is available in two versions: desktop and server. The desktop version comes with a graphical user interface (GUI), which makes it easy to use for beginners. On the other hand, the server version does not have a GUI, as it is designed for advanced users who prefer to work from the command line. However, in some cases, you may want to install a GUI on an Ubuntu server to make it easier to manage. ...
Read More