How to Rename Multiple Files on Linux

How to Rename Multiple Files on Linux

We’ll show you, how to rename multiple files on Linux . Every operating system in the modern world comes with several ways to interact with its file system. Whether it’s creating files, renaming them, copying them, or deleting them, they all come with functionality to efficiently carry out all of these tasks. However, one operation that most operating systems fall short with is renaming several files at the same time. Whether you need a pattern that the files need to follow, or if you just want to rename many files at one time, renaming files can be quite tedious.

Luckily, renaming software can help us solve this issue. In this tutorial, we will go through several options for batch renaming of files on Debian-based systems, as well as RHEL-based (RedHat Enterprise Linux) systems.

Read More

How To Install Node.js on Ubuntu 16.04

How To Install Node.js on Ubuntu 16.04

We’ll guide you, how to install Node.js on Ubuntu 16.04. Node.js is an open source JavaScript runtime built on Chrome’s V8 JavaScript engine and can be used to build different types of server-side applications. Node.js runs on most operating systems, including Linux, OSX and Windows. In this tutorial, we will guide you through the steps of installing Node.js on an Ubuntu 16.04 VPS. The installation of Node.js on Ubuntu 16.04, can be done using several different methods:

Read More

How to Install RPM Packages On Ubuntu

how to install rpm packages on ubuntu 16.04
ubuntu install rpm

We will show you how to install RPM packages on Ubuntu. Debian-based systems such as Ubuntu and RedHat-based systems such as CentOS are mostly similar in their design. However, there are a few differences here and there. For example, RedHat-based systems use .rpm files for representing software packages, while Debian-based systems use .deb files. These file types differ from one another in their design, and cannot be installed outside of their respective type of operating systems (e.g. installing a .deb file on CentOS, or installing a .rpm file on Ubuntu). However, there are ways to port these packages to other types of systems. Installing RPM packages on Ubuntu VPS is a fairly easy task if you carefully follow the guide below. Let’s get started!

Read More

Pip Uninstall | Uninstall a pip package

pip uninstall
pip uninstall

pip remove
pip remove

We will show you how to uninstall a pip package that you installed with pip install. pip is a package management tool that can be used to install and manage software packages written in Python, which can be found in the Python Package Index (PyPI). pip is a recursive acronym that can stand for either “Pip Installs Packages” or “Pip Installs Python”. Alternatively, pip stands for “preferred installer program”. Let’s see how you can use pip to remove packages.

Read More

Linux crontab

Linux crontab

We’ll show you, how to use Linux crontab. In a few simple steps we will explain, how to automate your system tasks using crontab in Linux. The cron software utility is a time-based job scheduler in Unix-like operating systems. Cron is driven by a crontab (cron table) file, a configuration file that specifies shell commands to run periodically on a given schedule. The crontab files are stored where the lists of jobs and other instructions to the cron daemon are kept. Users can have their own individual crontab files and often there is a system-wide crontab file (usually in /etc or a subdirectory of /etc) that only system administrators can edit.

You can use cron to automatically run scripts within a specified period of time, create a backup of your databases or other important files, monitor the services running on your server and many other things. Let’s start

Read More

Find Large Files in Linux

find large files in linux

Find Large files LinuxToday we will show you how you can find large files in Linux. One of the most common things you will do as a Linux system administrator is finding useless large files that consume disk space and removing them to free up space for applications that actually need it. Let’s dive in and find out how we can find large files in Linux.

Read More

How To Install Redmine on CentOS 7

How To Install Redmine on CentOS 7

In this tutorial, we will show you how to install Redmine on CentOS 7. Redmine is a free and open source issue tracking and web-based project management application . Redmine is built on Ruby on Rails framework and it is cross-platform and cross-database. This guide should work on other Linux VPS systems as well but was tested and written for CentOS 7 VPS. Let’s get started with installing Redmine on your CentOS 7 server.

Read More

How to Install Maven on Ubuntu 16.04

How to Install Maven on Ubuntu 16.04

In this tutorial, we will show you how to install Apache Maven 3 on  Ubuntu 16.04. Apache Maven is a free and open-source, software project management and comprehension tool written in Java. Based on the concept of a project object model (POM), Maven can manage an entire project’s build.

how to install maven on ubuntu 16.04

With Maven, you can easily store documents, generate reports and documentation from a central piece of information. Installing Maven on Ubuntu 16.04 is a fairly easy task if you follow the steps below carefully and should not take more than 10 minutes.

Read More