Creating SSL Certificates using CertBot Certificate Authoriy (CA) in Debian 8 Jessie
Creating SSL Certificates using Certbot in Debian Jessie 8.7: Adding backport repository: First of all, add the backport Repository to...
cron / How-to / Linux / Linux Tips / security
Creating SSL Certificates using Certbot in Debian Jessie 8.7: Adding backport repository: First of all, add the backport Repository to...
How-to / Linux / Linux Tips
Change the SSH port ( default Port ) in ubuntu, CentOS Linux Server: Changing the SSH port number is a...
How-to / Linux / Linux Tips
Speedtest from the command line. Check upload and download speed of the Linux server, Check the Transfer speed of the Ubuntu, CentOS, Debian or any Linux.
Install LAMP ( Linux, Apache, MySQL, PHP ) in Ubuntu server: Please use the following command to install the LAMP...
Installing Git on Linux Ubuntu / Debian: Git is an essential tool for all developer. In this tutorial, We will...
Let’s install zeromq from the source code. Go ahead and install the git and CMake. Then clone the zeromq GitHub repo and...
Here is the one cool script which will install the FFMPEG in centOS based systems
Basics of git and GitHub Intro: In this article, We are going to discuss the basics of git and GitHub....
To view the commit history of the current project:
1 |
$ git log |
Sample output :
1 2 3 |
commit fb0d90ec75601304348168bb988ebdbf10c260 Author: Author name<email@somedomain.com> Date: Thu Oct 13 17:30:46 2016 +0300 |
You will get the output like...
How to redirecting cron job output to log file :
1 |
*/5 * * * * /home/venkatesh/campaign.sh >> /var/log/precampaign.log 2>&1 |
Note : 2>&1 indicates that the standard error (2>) is...