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 ifconfig command is a useful utility to display and set network configuration on Ubuntu and Debian Linux systems. This command is available under the net-tools package is replaced with modern iproute2 Debian packages. When your type ifconfig command on the latest operating systems, you will get the following error on Ubuntu and Debian-based systems. -bash: ifconfig: command not found Install net-tools Package The ifconfig binary file comes with the net-tools Debian package. Install this package using the following command which is available under default repositories. sudo apt-get install net-tools Using ifconfig Then you can use this command to check…

Read More

MariaDB is an enhanced, drop-in replacement for MySQL. MariaDB can be a better choice for database professionals looking for a robust, scalable, and reliable SQL server. MariaDB has a number of updated features over MySQL. This article will help you to Install MariaDB 10.3 on Ubuntu 18.04 LTS via apt package manager. After installing MariaDB you may need to install phpMyAdmin to access database on the web interface. Step 1 – Prerequsiteis You can find the MariaDB Apt configuration file from the official website. Import the package singin key for MaraiDB packages on your system. sudo apt-get install software-properties-common sudo…

Read More

MariaDB is an enhanced, drop-in replacement for MySQL. MariaDB can be a better choice for database professionals looking for a robust, scalable, and reliable SQL server. MariaDB has a number of updated features over MySQL. This article will help you to Install MariaDB 10.4 on Debian 9 (Stretch) via apt package manager. Step 1 – Prerequsiteis You can find the MariaDB Apt configuration file from the official website. Import the package singin key for MaraiDB packages on your system. sudo apt-get install software-properties-common dirmngr sudo apt-key adv –recv-keys –keyserver hkp://keyserver.ubuntu.com:80 0xF1656F24C74CD1D8 After this, create a new Apt configuration file for…

Read More

PostgreSQL is an open source object-relational database system. It is one of leading database server used for production servers. This tutorial will help you to install the PostgreSQL database server on Debian 9 Stretch systems. How to Install pgAdmin4 on Debian 9 Step 1 – Enable Apt Repository 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 your operating system. These are suggested on official PostgreSQL website using following…

Read More

pgAdmin is a web-based interface for managing PostgreSQL database instances. With the help of pgAdmin4, We can create, access databases, run queries over databases easily. pgAdmin4 is available in both web and desktop versions. We can install it on a nix based systems, macOS, and Windows from official packages. The latest pgAdmin4 is helpful for managing PostgreSQL 9.2 and above versions. This tutorial will guide you through installation of pgAdmin4 on Debian Linux system. Prerequisites You must have PostgreSQL server installed on your system via an official apt repository. If you don’t have installed PostgreSQL, use below link to install.…

Read More

Introduction pgAdmin is a web-based interface for management of PostgreSQL database instances. It can be installed on Linux, Unix, Mac OS X, and Windows to manage PostgreSQL 9.2 and above. Prerequisites You must have PostgreSQL server installed on your system via an official apt repository. If you don’t have installed PostgreSQL, use below link to install. Install PostgreSQL on Ubuntu Install pgAdmin4 on Ubuntu pgAdmin4 packages are available under PostgreSQL official apt repository. We assume you already have configured apt repository during installation of database server. Execute below command on the terminal to begin pgAdmin4 installation on Ubuntu. sudo apt-get…

Read More

How to check the IP address on a Windows system using command prompt? The Windows operating systems provide ipconfig command to view local system IP address and other interface details. What is an IP Address? A Internet Protocol address (IP address) is the numerical label assigned to each hardware devices connected to a computer network that uses the Internet Protocol to identify the devices. In general terms, it is an identity of any devices. An IP address allows a device to communicate with other devices over an IP-based network like the LAN or Internet. Read: How to Flush/Clear DNS Cache…

Read More

For example, you are running time-consuming processes and you don’t want that job killed due to terminal closed. To handle this situation, you can simply remove a job from an active job table. So that the job will not be killed when the terminal is closed. Instructions Follow the below instruction to detach running jobs from the terminal. 1. Press CTRL + Z to suspend current running process. zip -q -r home.zip * ^Z [1]+ Stopped zip -q -r home.zip * 2. Then run the stopped process in the background by running bg command. It will put the last stopped…

Read More

Gulp is a toolkit that helps developers for the automation of painful workflow during development. This tutorial will help you to install Gulp.js on Fedora operating system. Step 1 – Installing Node.js First of all, you need to install node.js on your system. Use the following set of commands to add the node.js DNF repository on your Fedora system and install it. sudo dnf install -y gcc-c++ make curl -sL https://rpm.nodesource.com/setup_18.x | sudo -E bash – Then install the Nodejs package on your system. sudo dnf install nodejs -y Step 2 – Install Gulp.js on Fedora After installation of Node.js…

Read More

Gulp is a toolkit that helps developers for the automation of painful workflow during development. This tutorial will help you to install Gulp on Linux Mint operating systems. Step 1 – Installing Node.js First of all, you need to install node.js on your system. Use the following set of commands to add node.js PPA in your Linuxmint system and install it. curl -sL https://deb.nodesource.com/setup_16.x | sudo -E bash – sudo apt-get install nodejs Make sure you have successfully installed node.js and NPM on your system node –version npm –version Step 2 – Install Gulp.js on Linux Mint After installation of…

Read More