Sometimes when you try to install git on CentOS it doesn’t continue and output this error Requires: libcurl.so.3()(64bit) First try to install libcurl by : $ yum install libcurl libcurl-devel Then try installing git again. If this doesn’t work, try installing git with this command:
Month: September 2014
Quick & easy reference to read files in Linux CLI
There are many ways to read files in linux using bash screen. Command head <filename>, show the first few lines of the file. Command cat <filename>, display the file content on screen, not recommended with files longer than 10 lines. Command tail <filename>, used to show the last few lines of the file, it also has …