Author: Rahul

I, Rahul Kumar am the founder and chief editor of TecAdmin.net. I am a Red Hat Certified Engineer (RHCE) and working as an IT professional since 2009..

How to check the IP address on a Windows system using command prompt? The Windows operating systems provide ipconfig command to view local system IP address and other interface details. What is an IP Address? A Internet Protocol address (IP address) is the numerical label assigned to each hardware devices connected to a computer network that uses the Internet Protocol to identify the devices. In general terms, it is an identity of any devices. An IP address allows a device to communicate with other devices over an IP-based network like the LAN or Internet. Read: How to Flush/Clear DNS Cache…

Read More

For example, you are running time-consuming processes and you don’t want that job killed due to terminal closed. To handle this situation, you can simply remove a job from an active job table. So that the job will not be killed when the terminal is closed. Instructions Follow the below instruction to detach running jobs from the terminal. 1. Press CTRL + Z to suspend current running process. zip -q -r home.zip * ^Z [1]+ Stopped zip -q -r home.zip * 2. Then run the stopped process in the background by running bg command. It will put the last stopped…

Read More

Gulp is a toolkit that helps developers for the automation of painful workflow during development. This tutorial will help you to install Gulp.js on Fedora operating system. Step 1 – Installing Node.js First of all, you need to install node.js on your system. Use the following set of commands to add the node.js DNF repository on your Fedora system and install it. sudo dnf install -y gcc-c++ make curl -sL https://rpm.nodesource.com/setup_18.x | sudo -E bash – Then install the Nodejs package on your system. sudo dnf install nodejs -y Step 2 – Install Gulp.js on Fedora After installation of Node.js…

Read More

Gulp is a toolkit that helps developers for the automation of painful workflow during development. This tutorial will help you to install Gulp on Linux Mint operating systems. Step 1 – Installing Node.js First of all, you need to install node.js on your system. Use the following set of commands to add node.js PPA in your Linuxmint system and install it. curl -sL https://deb.nodesource.com/setup_16.x | sudo -E bash – sudo apt-get install nodejs Make sure you have successfully installed node.js and NPM on your system node –version npm –version Step 2 – Install Gulp.js on Linux Mint After installation of…

Read More

Gulp is an toolkit helps developers for the automation of painful workflow during the development. This tutorial will help you to install Gulp on CentOS 7 and CentOS 6 operating systems. Step 1 – Installing Node.js First of all, you need to install node.js on your CentOS system. Use following set of commands to add node.js yum repository on your CentOS system and install it. sudo yum install -y gcc-c++ make curl -sL https://rpm.nodesource.com/setup_12.x | sudo -E bash – Then install the Nodejs package on your system. sudo yum install nodejs Step 2 – Install Gulp.js on CentOS After installation…

Read More

Apache Solr is a powerful, open-source search platform built on Java. It’s widely used to index, search, and analyze vast amounts of textual content. Installing it on Linux Mint is straightforward, and in this guide, we’ll go through the steps to get it up and running on your Linux Mint 21, 20, or 19. Install Apache Solr on CentOS, RedHat Prerequisites: Linux Mint 21/20/19 installed on your machine. You should have Java installed since Solr runs on the Java platform. We’ll cover this too. Step 1: Install Java Start by updating the package repository information: sudo apt update && sudo…

Read More

PostgreSQL, often simply known as Postgres, is an open-source object-relational database system with a strong reputation for reliability, feature robustness, and performance. pgAdmin4, on the other hand, is a popular and versatile open-source administration and development platform for PostgreSQL. For Fedora Linux users, installing these tools can greatly enhance data management and development capabilities. This guide provides a comprehensive walkthrough for installing PostgreSQL and pgAdmin4 on Fedora Linux. Prerequisites A system running Fedora Linux Access to a terminal Sudo privileges Step 1: Update Fedora System Before you begin, ensure your Fedora system is up-to-date with the latest packages and security…

Read More

PostgreSQL 11 Released. It is an open-source object-relational, highly scalable, SQL-compliant database management system. PostgreSQL is developed at the University of California at Berkeley Computer Science Department. This article will help you to install PostgreSQL 11 on CentOS/RHEL 7/6 system. This article has been tested on CentOS Linux release 7.5 Step 1 – Configure Yum Repository Firstly you need to configure the PostgreSQL repository in your system. Use one of the below commands as per your operating system version. sudo yum install https://download.postgresql.org/pub/repos/yum/reporpms/EL-7-x86_64/pgdg-redhat-repo-latest.noarch.rpm For more details visit PostgreSQL repositories link page where you can get repository package rpm for various…

Read More

Gulp is a toolkit that helps developers for the automation of painful workflow during development. This tutorial will help you to install Gulp on Debian 11, Debian 10, and Debian 9 operating systems. Step 1 – Installing Node.js First of all, you need to install node.js on your system. Use the following set of commands to add node.js PPA in your Debian system and install it. sudo apt-get install python-software-properties curl -sL https://deb.nodesource.com/setup_18.x | sudo -E bash – sudo apt-get install -y nodejs Make sure you have successfully installed node.js and NPM on your system node –version npm –version Step…

Read More

Squid is a popular Proxy server for Unix like operating systems. It also used for the web filtering. Its widely used for increasing web server speed by caching repeated data. This tutorial helps you to install Squid proxy server on your Debian 8 Jessie system. Also provide basic configuration details of Proxy server to allow traffic, restrict specific websites with keyword or domain names. Step 1 – Install Squid on Debian 8 Login to your Debian 8 system using root or sudo privileges user. Then run the following commands on the console to install Squid on Debian 8 system from…

Read More