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

The LAMP Stack (Linux, Apache, MySQL, and PHP) is the most popular web hosting environment for the PHP based application. Here Linux is an operating system, Apache is the popular web server developed by Apache Foundation, MySQL is relational database management system used for storing data and PHP is the widely used programming language. This article explain you to how to install Linux, Apache, MySQL and PHP (LAMP Stack) on Ubuntu 18.04 (Bionic Beaver) Linux Systems. Let’s begin: Prerequisites You must have root or sudo privileged user access to your Ubuntu 18.04 system. Login to your Ubuntu system using GUI…

Read More

This tutorial uses PHP strtotime() and date() functions to convert date time format. For example you have stored a date YYYY-MM-DD format in a variable and need to change this to MM-DD-YYYY format. We can achive this by converting date first to seconds using strtotime() function. After that reconstruct date to any format using date() function. Below is few examples of conversion: 1. Change YYYY-MM-DD => MM-DD-YYYY Here we have date yyyy-mm-dd (“2019-01-15”) format and converting it to mm-dd-yyyy (“01-15-2019”) format.

Output: 01-15-2019 2. Change YYYY-MM-DD => DD-MM-YYYY Here we have date yyyy-mm-dd (“2019-01-15”) format and converting it to…

Read More

Ubuntu, one of the most popular Linux distributions, is known for its ease of use and stability. It is based on Debian, another highly respected Linux distribution. While Ubuntu has its own set of software repositories, sometimes users may find the need to add Debian repositories to access software that is not available in the Ubuntu repositories. This guide will walk you through the process of adding Debian repositories to your Ubuntu system, including the precautions you need to take to avoid potential system stability issues. Why Add Debian Repositories? Adding Debian repositories to an Ubuntu system can provide access…

Read More

VLC is a powerful media player available for Linux-based systems as well as for windows. It is a free and open-source cross-platform multimedia player and framework that plays most types of multimedia files as well as DVD, Audio CD, VCD, and various streaming protocols. To install VLC Media Player on Debian, you can follow these steps: Open a terminal and update the package manager’s package list: sudo apt update Install VLC Media Player by running the following command: sudo apt install vlc This will install VLC Media Player and all of its dependencies. Alternatively, you can also install VLC Media…

Read More

Struggling to install Yarn on your Ubuntu, Debian, or LinuxMint system? Don’t worry! With these three simple methods, you’ll be able to install Yarn in no time. Yarn is a powerful package manager that allows you to install, update, and uninstall applications with ease. It also helps you manage multiple versions of libraries and applications, so you can easily switch between them. With these three methods, you can easily install Yarn on your Ubuntu, Debian, or LinuxMint system and get started with your projects! So why wait? Let’s dive in and explore the three methods to install Yarn. Assuming that…

Read More

In this comprehensive guide, we’ll explore the methods of installing Yarn on CentOS, Redhat, and Fedora systems. Yarn is a highly sophisticated package management tool specifically designed for Node.js applications, offering a fast, secure, and reliable alternative to other Node.js package managers. Whether you’re a seasoned developer or new to Node.js, understanding how to install Yarn can enhance your development workflow. Here, we’ll delve into three distinct methods to install Yarn, each suited for different requirements and system setups. Method 1: Install Yarn Using NPM One straightforward approach to install Yarn is through NPM, a widely-used package manager for JavaScript.…

Read More

Dropbox is a file hosting service widely used as a cloud storage. You can signup for free with Dropbox and get free cloud storage for the limited size. The Dropbox client is also available for most of the operating systems and Mobile devices. You can use client software to access dropbox space from your system easily. This tutorial helps you to Install Dropbox on Ubuntu 18.04, 17.10, 16.04 and 14.04 LTS systems. Step 1 – Prerequsites You must have an account with the Dropbox. If you don’t have an account sign up here. Now login to your system and continue…

Read More

RabbitMQ is a lightweight application available for the most popular operating systems. RabbitMQ supports multiple messaging protocols. RabbitMQ can be easily deployed in distributed and federated configurations to meet high-scale, high-availability requirements. This tutorial will help you to install RabbitMQ on Debian 11 and Debian 10 systems. Step 1 – Installing Erlang RabbitMQ requires Erlang to be installed on the system. So first of all, You can simply download the erlang repository package from its official website and install it on your system. wget https://packages.erlang-solutions.com/erlang-solutions_1.0_all.deb sudo dpkg -i erlang-solutions_1.0_all.deb Run the following commands to update the Apt cache and install…

Read More

Erlang is a programming language used to build massively scalable soft real-time systems with requirements on high availability. Erlang runtime system has built-in support for concurrency, distribution and fault tolerance. This tutorial will help you to install Erlang on Debian 10 (Buster), Debian 9 (Stretch) and Debian 8 (Jessie). Step 1 – Prerequsiteis Before starting the installation process make sure you have root or sudo privileged user access to your Debian system. Now login to your system: ssh root@debian Upgrade the current packages to the latest version. sudo apt update sudo apt upgrade Step 2 – Enable Erlang Repository Use…

Read More

Bower is a famous JavaScript framework for hybrid mobile application development for seamless native-like experiences. This tutorial will help you to install Node.js, NPM, and Bower on a Debian system. Step 1 – Prerequsites Login to your Debian system using root or sudo privilege user and update the current packages to latest version. sudo apt-get update sudo apt-get upgrade Step 2 – Install Node.js Bower required Node.js to be installed on the system. Use following set of commands to add node.js PPA on your Debian system and install. sudo apt-get install software-properties-common curl -sL https://deb.nodesource.com/setup_10.x | sudo -E bash -…

Read More