centos在线安装git的方法

在安装Git之前,需要先安装一些依赖包,安装依赖包之前可以先检查下是否已经安装。

shell命令如下:

# rpm -qa grep zlib-devel

如果没有安装,我们先要安装这些依赖包:

# yum -y install zlib-devel openssl-devel perl cpio expat-devel gettext-devel

# yum install curl-devel

# yum install autoconf

# wget <a href=”http://git-core.googlecode.com/files/git-1.8.3.2.tar.gz”>http://git-core.googlecode.com/files/git-1.8.3.2.tar.gz</a>

# chmod +x git-1.8.3.2.tar.gz

# tar xzvf git-1.8.3.2.tar.gz

# cd git-1.8.3.2

# autoconf

# ./configure –with-curl=/opt/git

# make

# make install

到这里git已经安装才成功了,下面我们来验证一下:

# git –version

[root@AY140331154108013a0bZ git-1.8.3.2]# git version

git version 1.8.3.2

最近的文章

ubuntu12.04 折腾安装RTL8723BE无线网卡驱动

折腾了一上午,亲测无误,同时解决了rtl8723be不稳定总掉线的问题首先是安装无线网卡驱动:sudo apt-get install linux-headers-generic build-essential gitgit clone http://github.com/lwfinger/rtlwifi_newcd rtlwifi_newmakesudo make install ubuntu 14.04的rtl8723be网卡驱动不稳定解决方法:sudo echo “options r...…

linux rtl8723be 无线网卡 驱动继续阅读
更早的文章

利用搜索引擎批量抓取url

有的时候爆出0day,我们需要抓取大量的url进行测试,这个时候需要用到搜索引擎,常用的有:google,fofa,shodan下面是整理的利用js对对不同搜索引擎进行批量抓取的代码:fofa: (如何使用:StartReq(搜索语法,开始页码,结束页码) ) <span class="typ">StartReq</span><span class="pun">(</span><span class="str">'bod...…

fofa google search shodan url 搜索引擎继续阅读