yum remove git
yum install perl-CPAN
wget https://git-core.googlecode.com/files/git-1.8.3.2.tar.gz
tar -zxvf git-1.8.3.2.tar.gz
cd git-1.8.3.2
./configure && make && make install
# Install man pages
tar xzv -C /usr/local/share/man -f git-manpages-1.8.3.2.tar.gz
Configure GitHub
cd ~/.ssh
ssh-kengen
# Copy *id_rsa.pub* to *SSH Keys* @github.com
Already the latest version[1.2.0]. Use e in magit mode to use the
magicediff XD.
. Input method : [eim]
. Markup language : [markdown, rst]
. Python support
highlight-indentation
pyflakes
jedi
. Database access
postgresql
mysql
sqlite
. Global varibles : []
. Little modes:
saveplace --- automatically save place in files
ffap --- file file (or url) at point
uniquify --- unique buffer names dependent on file name
recentf --- setup a menu of recently opened files
open-next-line --- Behave like vi's o command
tramp --- Transparent Remote Access, Multiple Protocol
ansi-color --- translate ANSI escape sequences into faces
git clone git://github.com/imathis/octopress.git octopress
cd octopress # If you use RVM, You'll be asked if you trust the
.rvmrc file (say yes).
ruby --version # Should report Ruby 1.9.3p194
# Add a user called *tom*adduser tom
passwd tom
# Change usersu - postgres
# Start postgresql clientpsql
2. Inside Postgresql
123456
CREATEUSERtomWITHPASSWORD'public';-- Use this to change password >>> \password tom;CREATEDATABASEjerry;GRANTALLPRIVILEGESONDATABASEjerrytotom;\q
Authentication issue
By default, the authentication method is (peer for Unix domain
socket connections AND ident for IPV4 local connections), if you
login postgresql server by:
psql -d myDB -U kafka -h 127.0.0.1
It will report an error like this:
psql: FATAL: Ident authentication failed for user "kafka"
In pg_hba.conf, Change all authentication type to md5 (means by
password that after md5 processed).