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

Apache Cordova is an open-source mobile development framework. It allows you to use standard web technologies such as HTML5, CSS3, and JavaScript for cross-platform development, avoiding each mobile platforms’ native development language. Apache Cordova command-line requires Node.js to run and available on NPM. You may like: Setup Ionic Framework on CentOS for open-source SDK for hybrid mobile app development Step 1 – Prerequsities In order to install Cordova, you must have installed Node.js and NPM on your system. Skip this step if you already have installed but if Not, run the following commands to install it first. sudo yum install…

Read More

MySQL is the most popular relational database management system. As an assumption MySQL is used by every third website running on www. MySQL installation on a Linux is very straightforward. This tutorial will help you to install MySQL server on Ubuntu 18.04 Bionic Beaver systems. Step 1 – Prerequisites Login to your Ubuntu 18.04 system using shell access. For remote systems connect with SSH. Windows users can use Putty or other alternatives applications for SSH connection. ssh ubuntu@remote.host Run below commands to upgrade the current packages to the latest version. sudo apt update sudo apt upgrade Step 2 – Configure…

Read More

Generally, web hosting manager used a separate server for each PHP version application deployment. Which increases the hosting cost. Alternatively, you can run multiple Docker containers for multiple PHP versions. This tutorial helps you with the installation and configuration of two VirtualHost on the Nginx web server with different PHP versions. First VirtualHost will work with PHP 5.6 and another VirtualHost will run with PHP 7.2. So just go through this tutorial. You can also use more than two PHP versions with Nginx as required but this tutorial covers two only. PHP Installation For the installation of PHP versions, we…

Read More

There is a large number of graphical email clients for Linux systems. You can install them easily to access mailboxes of remote systems via POP(s)/IMAP(s) protocols. For the Linux server editions which doesn’t have GUI interface can use command line mail clients to access remote mailboxes. This tutorial will help you to access mailbox with POP/IMAP on Linux terminal. Mutt Mutt is a mail user agent, a powerful text-based email client for Unix-like (Linux) operating systems. You can easily use this tool on the command line to access remote mailboxes. You can install mutt package from default package repositories on…

Read More

How do I install Java 17 on Debian? The first Oracle Java 17 stable version was released on September 2021, and available to download and install. Java 17 comes with multiple improvements and bug fixes. The workstation users should consider to upgrade to this version. This tutorial will help you to install Java 17 on Debian 11/10/9 systems using PPA and apt-get command. Ubuntu and Linux Mint users use the below link to install Java on their system. Read this => Install Java 8 LTS on Debian Read this => Install latest Java on Ubuntu & LinuxMint Step 1 -…

Read More

Apache Solr is a popular open-source search platform built on Apache Lucene. It’s widely used for enterprise search and analytics applications. Installing Solr on Debian Linux involves setting up Java, downloading Solr, and configuring it to run as a service. Installing Apache Solr on Debian Linux is a technical process that involves several steps. Here’s a comprehensive guide on how to accomplish this: Prerequisites A Debian Linux system Basic knowledge of Linux commands Root or sudo privileges Step 1: Update the System Before installing any package, it’s always a good idea to update your system. Open the terminal and run:…

Read More

Sublime Text is a versatile and sophisticated text editor designed for code, markup, and prose. Its sleek user interface, extraordinary features, and amazing performance make it a favorite among developers. If you’re running Debian, one of the most popular Linux distributions, and you want to install Sublime Text, this article will guide you through the process step by step. Prerequisites Before you start, you should have: A system running Debian desktop system. Access to a terminal. Sudo privileges or access to the root user. Step-by-Step Guide to Install Sublime Step 1: Update Your Package List Open your terminal. The first…

Read More

Samba is the standard Windows interoperability suite of programs for the Unix-based operating systems. It allows network administrators for file and print sharing between the computers running Microsoft Windows and Unix/Linux systems. Basically, Samba uses SMB/CIFS protocol for secure, stable, and file/printer sharing including multiple other protocols like NetBIOS over TCP/IP (NBT). Samba sharing allows multiple systems to share single resources over a network, like sharing a printer reduces hardware cost. Also, share the directory server using samba and mount it on remote systems easily. This tutorial will help you to mount remote samba share to Ubuntu, Debian, or Linux…

Read More

In the world of Windows scripting, batch files are a powerful tool for automating repetitive tasks. Sometimes, it’s necessary to pause or delay the execution of a script for a specific period. This can be useful in various scenarios, such as waiting for a network service to start, allowing time for a file to unlock, or simply pacing the execution of commands to prevent overwhelming system resources. In this guide, we will explore how to implement sleep and wait functions in Windows batch scripts effectively. Using timeout Function The primary method to introduce a delay in a batch script is…

Read More

Nginx is another most popular web server than Apache HTTP Server. It is used by a large number of popular websites worldwide. This web server is highly useful for heavy traffic websites. This tutorial will help you to install Nginx on Ubuntu 18.04 and 16.04 using apt-get. 1. Prerequisites In order to install Nginx on Ubuntu, you must have root or sudo privileged user access to your system. For the remote systems can use ssh command or putty for Windows user to login. ssh ubuntu@remote 2. Install Nginx on Ubuntu The Nginx latest packages are available under default repositories for…

Read More