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

As today, Debian Buster is the latest release available for the Debian operating systems. Which is also known as Debian 10. The newer Debian release has MariaDB as default in their repositories. Now, this tutorial will help you to install MySQL 8 or MySQL 5.7 on Debian 10 (Buster) Linux systems. Step 1 – Prerequisites Login to your Debian 10 system using shell access. For remote systems connect with SSH. Windows users can use Putty or other alternatives applications for SSH connection. ssh root@debian10 Run below commands to upgrade the current packages to the latest version. sudo apt update sudo…

Read More

PostgreSQL is an open-source object-relational database system. PostgreSQL 11 is the latest version available for the installation on Debian systems. It is one of the leading database server used for production servers. This tutorial will help you to install the PostgreSQL database server on Debian 10 Buster Linux systems. Installing pgAdmin4 on Debian 10 Step 1 – Setup PostgreSQL PPA First, you need to import PostgreSQL packages signing key on your system. Use the below command to import the key. wget -q https://www.postgresql.org/media/keys/ACCC4CF8.asc -O – | sudo apt-key add – Now add PostgreSQL apt repository in your system as per…

Read More

1. Overview Angular CLI (Command Line Interface) is a powerful toolset that helps developers initialize, develop, scaffold, and maintain Angular applications. It provides a set of tools to create projects, generate application and library code, perform a variety of ongoing development tasks such as testing, bundling, and deployment. Installing and using Angular CLI on a Debian machine is a straightforward process but requires careful attention to detail, especially for new developers. This article provides step-by-step instructions to help you set up Angular on your Debian machine. 2. System Requirements Before installing Angular CLI, ensure your system meets the following requirements:…

Read More

Node.js stores all the command line arguments in an array. The first element of an array is the node command (binary location) itself. The second element is the javascript file we refer to that often comes after the node command. After that, the arguments are stored in third, fourth and so on. To understand this create a sample Node.js script and execute script with some arguments. For example, assuming the following script for process-args.js:

Launching the Node.js process as: node process-args.js hello “Rahul Kumar” 123 Would generate the output: 0: /usr/local/bin/node 1: /home/rahul/process-args.js 2: hello 3: Rahul Kumar 4:…

Read More

Docker is a container-based application framework, which wraps a specific application with all its dependencies in a container. Docker containers can easily to ship to the remote location on start there without making entire application setup. This tutorial will help you to install Docker on Debian 10 Buster Linux distribution. Step 1 – Prerequisites First of all, remove any default Docker packages from the system before installation Docker on a Linux VPS. Execute commands to remove unnecessary Docker versions. sudo apt-get purge docker lxc-docker docker-engine docker.io Now, install some required packages on your system for installing Docker on Debian system.…

Read More

Install PHP Ioncube Loaders in Debian Linux System. Ioncube is used as the encryption and decryption utility for PHP applications by which we can keep safe our data. It also can restrict PHP application to execute unauthorized. It also assists in speeding up the pages that are served. IonCube loaders are used for decoding encoded files while running on the webserver. read more details on official site. This tutorial will help you to install the PHP ionCube Loaders on Debian Linux system. How to Install Ioncube Loader in CentOS/RHEL 7/6/5 How to Install Ioncube Loader in WHM/cPanel Prerequsities Running Debian…

Read More

ImageMagick is a software suite to create, edit, compose, or convert bitmap images. It can read and write images in a variety of formats like GIF, JPEG, PNG, Postscript, and TIFF. We can also use ImageMagick to resize, flip, mirror, rotate, distort, shear and transform images, adjust image colors, apply various special effects, or draw text, lines, polygons, ellipses and Bézier curves. Install ImageMagick Execute the following commands to install ImageMagick with ImageMagick development tools on your Amazon Linux machine. sudo yum makecache fast sudo yum install ImageMagick ImageMagick-devel All done

Read More

If you are using Laravel and you see an error message that says “Please provide a valid cache path,” it means that Laravel is unable to write to the specified cache directory. This can be caused by a number of factors, such as incorrect permissions on the cache directory, or a lack of write access to the directory. Please provide a valid cache path. Problem: After more debugging and Google it, I found that the storage/framework directory is missing from deployment. Because the .gitignore file has an entry of storage/framework directory to prevent them from adding code to the git…

Read More

The Debian team has announced the latest version Debian 10 “Buster” released on July 6th, 2019. This release has code name “Buster”. Debian 10 is full of new features and upgrades than the previous release. In this tutorial, I will help you to Upgrade Debian 10 Buster from Debian 9 Stretch with simple steps. In this tutorial, all commands are running with the root account. So you must have root user privilege or sudo privileges to complete this. The Desktop users can upgrade it immediately and use the new features, But the users with Debian servers can wait for their…

Read More

Keeping in touch with friends and family is important, especially when you live far away from them. Thanks to modern technology, keeping in touch has become much easier over the last few years. We can send text messages, snap selfies, and video calls with just a few taps. If you use Linux as your primary operating system or as a secondary OS on your computer, you might be interested in installing Skype on it. This article will help you learn how to install Skype on Debian. Read on to discover more. How to Install Skype on Debian First of all,…

Read More