发布时间:2013-06-10 13:20:12
1.安装yum-priorities插件这个插件是用来设置yum在调用软件源时的顺序的。因为官方提供的软件源,都是比较稳定和被推荐使用的。因此,官方源的顺序要高于第三方源的顺序。如何保证这个顺序,就需要安装yum-priorities这插件了。[root@ www.linuxidc.com ~]# yum install yum-priorities #安装yum.........【阅读全文】
发布时间:2013-06-10 13:04:38
git clone下载内容过大git clone下载的东西太多了,jquery本来只有几十k,clone一下竟要18M。想一下如果你clone一下rails,非搞半天不可。后来查了一下,其实解法很简单。 以下内容来自:http://wendal.net/344.html。非常感谢Wendal#仅获取最新版和一个历史版本,即最后2个版本git clone git@github.com:nutzam/n.........【阅读全文】
发布时间:2013-06-10 13:02:17
Article ID: 1272Last updated on February 13, 2013Authored by: Rackspace Support(45 Comments)How to install RHEL EPEL repository on Centos 5.x or 6.xThe following article will describe how to configure a CentOS 5.x-based or Centos .........【阅读全文】
发布时间:2013-06-10 12:53:25
创建一个git用户: useradd gitpasswd git创建git仓库: su - git mkdir project git init --bare 然后就可以从本地clone了 git clone ssh://git@10.5.0.170/projec......【阅读全文】