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..

PHP

In the dynamic world of web development, creating a seamless, user-friendly experience is a top priority. A crucial aspect of this is enhancing the form submission process for better user engagement. Typically, form submission on websites demands a page reload, leading to a less-than-ideal user experience. However, by integrating PHP and jQuery, you can efficiently bypass this hurdle. This comprehensive guide delves into the nuances of submitting forms without a page refresh, leveraging the power of PHP and jQuery to elevate your website’s user experience. What is PHP? PHP, or Hypertext Preprocessor, stands as a cornerstone in server-side scripting languages,…

Read More
IDE

NetBeans is the most popular IDE for development on Linux systems. NetBeans editor provides many pre-configured code templates and code generation tools for faster development support. This article will help you to install NetBeans IDE on Ubuntu Systems. Step 1 – Install JAVA Java is the primary requirement for the Netbeans installation on the system. Use below command to verify if Java is already installed or not. java -version java version “1.8.0_171” Java(TM) SE Runtime Environment (build 1.8.0_171-b11) Java HotSpot(TM) 64-Bit Server VM (build 25.171-b11, mixed mode) If you don’t have Java installed, use tutorial => Install Java on Ubuntu…

Read More

Ruby is a popular programming language among a large number of developers. Rails are the framework to run the ruby language. Ruby language was created by Yukihiro โ€œMatzโ€ Matsumoto and first published in 1995. This article will help you to install ruby on rails on Ubuntu and LinuxMint Linux systems using RVM. RVM is the Ruby Version Manager that helps for installing and managing Ruby language on systems. In this blog post, you will get instructions to install Ruby on a Ubuntu and Debian system. Step 1 – Installing RVM First of all, install the latest stable version of RVM…

Read More

Working with Git, you often create multiple branches to manage different features or stages of your project. However, as you merge these branches or they become obsolete, it’s essential to clean them up. This tutorial will guide you through the process of deleting local and remote Git branches. Prerequisites Basic understanding of Git commands Git installed on your system Access to a Git repository Step 1: List All Your Branches Before deleting any branches, it’s a good idea to see a list of all existing branches. Command: git branch Purpose: Lists all local branches Example: git branch Step 2: Delete…

Read More

In the world of software development, version control systems are a godsend. They allow us to track changes to our code, collaborate with others, and even revert to previous versions of our work if something goes wrong. One of the most popular version control systems is Git. Today, we will delve into a practical guide on how to clone Git repositories and add files. 1. Understanding Git Before we dive into the practicalities, let’s clarify what Git is. Git is a distributed version control system. This means that every contributor has a complete local copy of the project history and…

Read More

OpenSSH is the most popular ssh server for Linux-based systems. It is used to connect the ssh server securely from remote systems having ssh clients. This article will help you install the OpenSSH server on Debian Linux systems. OpenSSH is the most widely used ssh server for Linux-based systems. This article describes how to install the OpenSSH server on Debian Linux systems. OpenSSH is used to connect securely to the server from remote ssh client systems. Step 1 – Installing OpenSSH Server on Debian OpenSSH server can be installed on Debian systems using the default Apt repositories. You can update…

Read More

LibreOffice 6.2 has been released and available in the official backports PPA for the installation on Ubuntu systems. It is a free office suite application with many enhancement over previous versions. It has included lots of useful features, which becomes office management very easy. It is the most powerful free & open source office suite specifically for Linux desktop users. This article will help you to install LibreOffice 6.2 on Ubuntu 19.04, 18.04 LTS, 16.04 LTS systems. Install Libreoffice on Ubuntu Use the following commands to add LibreOffice PPA to your system and install it on your system with simple…

Read More

NRPE (Nagios Remote Plugin Executor) is used for executing Nagios plugins on remote client systems. In previous article we had described about installation of Nagios Server on Ubuntu operating system. This article will help you to install NRPE on Ubuntu 18.04 LTS, 16.04 LTS & LinuxMint 19/18 systems. Useful Articles: How to Monitor Remote Linux System with Nagios How to Monitor Remote Linux System over SSH Step 1 – Install NRPE on Ubuntu NRPE packages are available under the default repositories on Ubuntu systems. Open a terminal and run the following command to install: sudo apt update sudo apt install…

Read More

For the security purpose by default IP forwarding is disabled in modern Linux operating system. If you are required to enable IP forwarding on your system, follow the below steps. In this article, you will get how to check that IP forwarding is enabled or not. If not, enable it. Check Current IP Forwarding Check the value if ip_forward in /proc filesystem as following command. cat /proc/sys/net/ipv4/ip_forward 0 or we can use sysctl command line to query for kernel values like below command. sudo sysctl net.ipv4.ip_forward net.ipv4.ip_forward = 0 Enable Kernel IP Forwarding Let’s enable the IP forwarding for your…

Read More

While writing a JavaScript program, I faced following error many times. If you are also getting the same error, This article will help you to fix this error. Solution 1 :- Generally this error found when we forgot to include core jQuery JavaScript file. So make sure you have included jQuery JavaScript in your web page. <script src=”http://code.jquery.com/jquery-1.11.3.min.js”></script> Solution 2 :- If you already have included jQuery file in your webpage. Now check the sequence of adding JavaScript files in your webpage. Might be you have included some JavaScript files before core jQuery script file. So make sure that code…

Read More