Archives

now browsing by author

 

How to Force Overwrite Local Files on Git Pull

undefined

Using Git pull, we download latest changes from Git remote repository to local repository code. During this process, we faced issues many times due to local changes. Then we need to force overwrite any local changes and update all files from remote repository. Important :- All the local changes willRead More

How to Checkout Remote Git Branch

undefined

This tutorial will help you to checkout remote git branch which is not available on local git repository. Use command git branch to list local branches available. Checkout Remote Git Branch Now use command git branch -a to list all available branches on local and remote git repository. After thatRead More

How to List all Remote Branches in Git

undefined

This tutorial will help you to list all branches available on remote git repository. It is helpful you to find names of branches, which has been created on remote repository by someone and you want to checkout this on your local repository. Option 1: Firstly run git fetch command toRead More

How to Install and Configure Monit on Linux Systems

undefined

In this article, I’ll show you how to install and configure monit  “servers and processes monitoring tool” on Linux systems (RPM Family “Redhat / CentOS  / Scientific Linux” and Debian Family “Debian / Ubuntu”). Monit has capability to monitor any service running on a Linux system, We only need toRead More

Howto setup and change the timezone on Debian 8 Linux systems

undefined

In this mini post, I’ll show you how to set or change the time zone on Linux systems (Debian Family “Debian 8 “jessie” and earlier – Ubuntu Linux”). Setting up the correct time zone for your Linux server is a simple but very important task. All your Linux machines mustRead More

Howto setup and change the timezone on CentOS 7 Linux systems

undefined

In this mini post, I’ll show you how to set or change the time zone on Linux systems (RPM Family “Redhat /CentOS /Scientific Linux  releases 7/6/5 and earlier – Fedora Linux”). Setting up the correct time zone for your Linux server is a simple but very important task. All yourRead More

How To Use Screen Command on Linux Systems

undefined

In this article, we will show you how to install and use screen command on Linux systems(RPM Family “Redhat / CentOS  / Scientific Linux / Fedora” and Debian Family “Debian / Ubuntu”). Screen is recommended with Linux servers that do not have a GUI to share sessions and run commandsRead More

How to Log Queries in PostgreSQL

undefined

Enabling logging within PostgreSQL is made quite easy by altering a handful of configuration settings and then restarting the server. While these settings can be altered “in memory”, thereby enabling temporary logging for only that particular client session, in this tutorial we’ll cover how to configure postgres to permanently createRead More

Perform SSH Login to Remote Server Without Password Using ssh-keygen & ssh-copy-id

undefined

In this article, I’ll show you how to login to remote nix server (RPM Family “Redhat / CentOS  / Scientific Linux” and Debian Family “Debian and Ubuntu”) without using a password, all you need to login to the remote server is uploading your public key to the remote server. Only threeRead More

Howto know which package provides a command or a file in RPM Linux systems

undefined

In this mini post, I’ll show you how to find which package/application provides a command or a file or even a directory in RPM Linux family “Redhat / CentOS  / Scientific Linux  releases 7 / 6 / 5”. We will use both yum and rpm to find the package whichRead More