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

Thanks to WANdisco, which is maintaining the rpm packages for latest Subversion version. This article will help you to install subversion 1.9 ( svn client ) on CentOS/RHEL 7/6/5 Systems. If you want to configure Subversion server visit this article. Step 1 – Setup Yum Repository Firstly we need to configure yum repository on our system. Create a new repo file /etc/yum.repos.d/wandisco-svn.repo and add following content as per your operating system version. vim /etc/yum.repos.d/wandisco-svn.repo [WandiscoSVN] name=Wandisco SVN Repo baseurl=http://opensource.wandisco.com/centos/$releasever/svn-1.9/RPMS/$basearch/ enabled=1 gpgcheck=0 Step 2 – Install Subversion 1.9 Before installing latest package remove existing subversion packages from system to remove the…

Read More

Thanks to Wandisco Team, which is maintaining the Debian packages for latest subversion versions. This article will help you to Install Subversion 1.8.15 ( SVN ) on Ubuntu and Debian systems. 1. Setup Apt Repository First you need to configure apt repository in your system. Use the following commands to add repository on your Ubuntu and Debian systems. For Ubuntu Systems:- $ sudo sh -c ‘echo “deb http://opensource.wandisco.com/ubuntu `lsb_release -cs` svn18” >> /etc/apt/sources.list.d/subversion18.list’ $ sudo wget -q http://opensource.wandisco.com/wandisco-debian.gpg -O- | sudo apt-key add – $ sudo apt-get update For Debian Systems:- $ sudo sh -c ‘echo “deb http://opensource.wandisco.com/debian `lsb_release -cs`…

Read More

Magento is the best eCommerce software and solution for online services. Recently the Magento team has released its new version Magento 2.0 with lots of improvements changes and optimizations over Magento 1. Step 1 – Install Apache2 and PHP You can use following commands to install all requirements from default repositories. sudo apt install apache2 Then install PHP and other required PHP modules. sudo apt install php libapache2-mod-php php-mysql php-dom php-simplexml sudo apt install php-curl php-intl php-xsl php-mbstring php-zip php-xml Step 2 – Install MySQL Server You can use MySQL or MariaDB as the database server for Magento application. sudo…

Read More

Development tools are required to install on your system if you have planned to build software. It’s also useful for building packages on your system. Development tools contain a few general useful tools like GCC, g++, make, libc6-dev, and dpkg-dev packages. You need to install build-essential on Ubuntu and LinuxMint systems which include all other required packages as dependencies. Install Development Tools on Ubuntu, Debian and Mint The development tools packages are available under default apt repositories for most of the Ubuntu-based systems. Use the following commands to install the development tools package on your Ubuntu and Linuxmint systems. sudo…

Read More

Development tools packages are required to install on your system if you have planned to build software. It’s also useful for building packages on your system. Development tools contain useful tools like GCC, g++, make, libtool, rpmbuild and autoconf etc packages. This tutorial will help you to install development tools on CentOS, RHEL & Fedora systems. Development Tools Installation Use the following set of commands to install development packages on your RedHat and their derivative systems. ### CentOS/RHEL 7/6/5 yum update yum groupinstall “Development Tools” ### Fedora 28/27/26/25/24/23 dnf update dnf groupinstall “Development Tools” To find out what is in…

Read More

Web communication has undergone significant evolution since the inception of the internet, with various protocols and technologies being developed to facilitate faster and more efficient communication. One of these developments is HTTP/2.0, a major revision of the HTTP network protocol used by the World Wide Web. Alongside it, Node.js, a popular JavaScript runtime built on Chrome’s V8 JavaScript engine, has made substantial strides in web development. This article explores how these two technologies can be combined to transform web communication, backed by practical examples. An Overview of HTTP/2.0 Before diving into the specifics, let’s first understand HTTP/2.0. HTTP/2.0 is a…

Read More

The Latest version CentOS 7.8 is available to upgrade. All the CentOS 7.7, 7.6, 7.5, 7.4, 7.3, 7.2 7.1 and 7.0 users can upgrade their system to the latest release. All the users running with WHM/cPanel don’t need to do anything. WHM/cPanel will automatically upgrade its operating system to the next scheduled upgrade. This article will help to upgrade your current CentOS 7.x to the latest CentOS 7.8. Step 1 – Check Current CentOS Version CentOS systems keep version details in /etc/redhat-release and /etc/centos-release. You just need to check content of one of these files. cat /etc/centos-release CentOS Linux release…

Read More

Ionic Framework is useful for building mobile apps like Android and iOS. This article will help you to install Node.js, Cordova and Ionic framework on your Ubuntu 18.10, 18.04 and 16.04 LTS system. Step 1 – Installing Node.js First, use the following commands to install NPM and Node.js on your system. In below commands, the first command will install some required packages on the system. The second command will add PPA for node.js to your system. After that update, your all attached PPA and last command will install Node.js and NPM on your system. You can visit our tutorial to…

Read More

The PHP team has released upgrade version 7.2. Which has a number of changes and improvements than over version 5.X. This article will help you to install PHP 7 Apache 2.4 and MySQL 5.6 on CentOS/RHEL 7 & 6 operating systems. This tutorial has been tested with CentOS 7.4, so all the services command are used with systemctl. The CentOS 6 users change all systemctl command correspondence service command. Recommended Article: 15 Best Security Tips for LAMP Stack (Apache-MySQL-PHP) for Linux Step 1 – Setup Yum Repository In the first step install all the required yum repositories in your system…

Read More

Ruby 2.2.4 Released, This is an upgrade of Ruby 2.2 series. Ruby is a dynamic, object-oriented programming language.We are using RVM, which stands for Ruby Version Manager, which makes easier to install Ruby on Linux platform. RVM is also helpful for managing multiple version of Ruby without conflicting, and we can switch system to any version of Ruby using a single command. This article will help you to How to Install Ruby 2.2.4 on CentOS, Red Hat Systems using RVM. Step 1: Install Required Packages Firstly we need to install all required packages for ruby installation on our system using…

Read More