October 2013

How to install Git in CentOS in fastest way ?

yum install git git –version git version 1.7.1 Update git git clone https://github.com/git/git remote: Finding bitmap roots… remote: Counting objects: 163718, done. remote: Compressing objects: 100% (45304/45304), done. remote: Total 163718 (delta 117789), reused 162282 (delta 116441) Receiving objects: 100% (163718/163718), 50.96 MiB | 2.24 MiB/s, done. Resolving deltas: 100% (117789/117789), done.

How to install Git in CentOS in fastest way ? Read More »

Common Error in CentOS: Failed to set locale, defaulting to C

Failed to set locale, defaulting to C You can see this often in CentOS because you never set the locale for your Linux. You can try this [code lang="bash"] echo "export LC_ALL=en_US.UTF-8" >> /etc/profile export LC_ALL=en_US.UTF-8 export LANG=en_US.UTF-8 export LANGUAGE=en_US.UTF-8 export LC_COLLATE=C export LC_CTYPE=en_US.UTF-8 [/code] Then disconnect and reconnect to your bash.

Common Error in CentOS: Failed to set locale, defaulting to C Read More »