Install LAMP ( Linux, Apache, MySQL, PHP ) in ubuntu in single command
Install LAMP ( Linux, Apache, MySQL, PHP ) in Ubuntu server: Please use the following command to install the LAMP...
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...
Introduction: Todays article, We are going to discuss about the FTP server installation on Ubuntu based systems. We have VSFTP...
Getting rid of “500 OOPS: cannot change directory” vsftpd error : We usually get the “500 OOPS: cannot change directory”...
Admin / Linux / openssl / Uncategorized
Installing OpenSSL from the Source code : First of all, Download the OpenSSL from the official website download page https://www.openssl.org/source/
1 2 3 4 |
tar zxf openssl-VERSION.tar.gz cd openssl-VERSION ./config [options] make make install |
...