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

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

One notable aspect of Java’s release cycle is the distinction between Long-Term Support (LTS) versions and non-LTS versions. LTS versions, as the name suggests, receive long-term support from Oracle, with updates and security patches provided for an extended period, making them ideal for enterprise environments that prioritize stability and security. In contrast, non-LTS versions have a shorter support window, typically receiving updates for six months until the next non-LTS release is available. These versions serve as a testing ground for new features and enhancements, allowing developers to experiment with cutting-edge features before they are incorporated into LTS releases. Java 20…

Read More

The VirtualBox is the most used Virtualization platform by the users. It is free and opensource hypervisor for x86 computers. You can easily install VirtualBox on a Debian Linux system with simple steps. This article helps you to install VirtualBox on Debian 9 (Stretch) Linux machine. Step 1 – Prerequsities Login to your Debian server with root or sudo privileged user and update current packages of your system to the latest version. sudo apt-get update sudo apt-get upgrade Step 2 – Add VirtualBox PPA Now, you need to add Oracle VirtualBox PPA to Ubuntu system. You can do this by…

Read More

VirtualBox is a free and opensource hypervisor for x86 computers. You can easily install VirtualBox on a Debian Linux system with simple steps. The Oracle provides official PPAs for the installation of VirtualBox on a Linux machine. This article helps you to install VirtualBox on Debian 8 (Jessie) Linux machine. Step 1 – Prerequsities Login to your Debian server with a root or sudo privileged user and update current packages of your system to the latest version. sudo apt-get update sudo apt-get upgrade Step 2 – Add VirtualBox PPA Now, you need to add Oracle VirtualBox PPA to Ubuntu system.…

Read More
PHP

This article is a step-by-step guide on how to install and configure phpMyAdmin on a Debian operating system. phpMyAdmin is a web-based application used for managing MySQL and MariaDB databases. It provides a graphical interface, making it easier to manage, create, and modify databases, tables, fields, etc. Before we start, please ensure you have administrative access to the Debian system and that the LAMP (Linux, Apache, MySQL/MariaDB, PHP) stack is installed on your server. Step 1: Update Your System Firstly, you need to update your system to ensure that all the packages on the server are up-to-date. Open your terminal…

Read More

Java is a widely used programing language for creating software, and web applications. Basically, there are two types of Java environment available to configure. JDK is used for configuring the Java environment for developing Java applications and JRE is used for the runtime configuration. Multiple ways to install Java on Ubuntu You have two options available for installing Java on an Ubuntu system. You can choose one of them. #1. How to Install Default Java on Ubuntu with Apt-get This is the simple and quick way to install Java on Ubuntu systems. Run the following commands to install Java on…

Read More

C is a robust, structured programming language used for developing system software. By the design, C provides constructs that could be map efficiently to typical machine instructions. It was developed by Dennis Ritchie in Bell labs. The c program source is free-format text, using the semicolon as a statement terminator and curly braces for grouping the blocks of statements like conditions, functions or loops. C is a compiled programing language. After creating a C program, first, you need to compile it using C compilers. It will generate the binary file, which you can run on your system. This tutorial will…

Read More
How to Install PHP Composer on Debian 11 Linux PHP

The PHP Composer is a package management tool. It removes the hassle of maintaining PHP packages for an application manually. You can easily install all the required packages using Composer. It maintains a list of required packages in a JSON file called composer.json. This tutorial helps you to install and configure PHP composer on Debian 10 Buster, Debian 9 Stretch, and Debian 8 Jessie systems. 1. Prerequsities Shell access to a running Debian system with sudo privilege. PHP must be installed and configured, version 5.3 or higher. 2. Install Composer on Debian You can download the composer script from the…

Read More

A LAMP server is a web server combination of Apache, MySQL, and PHP on Linux server. It is widely used for hosting PHP and MySQL based websites on the world wide web. This tutorial is created to help administrators to setup LAMP stack on Debian 9. In this tutorial, we are installing Apache and MySQL from Debian 9 base repositories. We will help you to add a third-party repository for PHP installation. Step 1 – Prerequisites Login to your Debian 9 server using sudo privileges or root user on the command line. ssh root@debian9 After login to your Debian system…

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. You can simply install MySQL on a Debian system from its base repositories. But The Debian team replaced MySQL with MariaDB as the default database from Debian 9 Stretch. This tutorial will help you to install MySQL on Debian 9 systems with the latest MySQL version. Step 1 – Prerequisites Login to your Debian 9 system using shell access. For remote systems connect with SSH. Windows users can use Putty…

Read More