Installing git from tarballKernel Hackers' Guide to git
tarball build-deps: zlib, libcurl, libcrypto (openssl)
here is how to install tarball:
mkdir -p /opt/build
cd /opt/build
wget http://kernel.org/pub/software/scm/git/git-1.5.3.7.tar.bz2
tar -jxvf git-1.5.3.7.tar.bz2
cd git-1.5.3.7
./configure --prefix=/usr
make
sudo make install
cd ..
git-clone git://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux-2.6.git linux-2.6
Blogged with Flock
No comments:
Post a Comment