PHP沙龙 - PHPSalon.com - Justin's Blog - Sofee.cn

世界其实很简单,复杂的是人;生活其实很轻松,沉重的是感情!

吴文龙ID:ezdevelop
266831次访问,排名207好友0人,关注者1
ezdevelop的文章
原创 156 篇
翻译 0 篇
转载 37 篇
评论 818 篇
Justin的公告
-------------------------
点击进入我的新BLOG
-------------------------
作者声明:本人专栏内的所有文章,除注明转载外均为本人原创,未经许可,严禁任何形式转载。
最近评论
csnxlsh:也发个给我咯
谢谢了!我的邮箱是csnxlsh@sohu.com
ryl:robots.txt只是对好的搜索引擎google ,baidu....等一些好的,才遵守的规则
对垃圾的搜索引擎还是没用啊
所以不用phpmyadmin管理才是主要
ryl:居然有这么活宝的人
怎么把phpmyadmin都传上去
还安全吗
gudai:我等得花儿也谢了。
gudai:四、后记

本文仅是一篇入门级文章,旨在带你进入 PHP 扩展开发的行列,本人也将陆续写些高级开发的文章,敬请期待。


-------------------
嘿嘿。这个陆续,嘿嘿。。。。
文章分类
收藏
    相册
    My Photos
    .Personal
    Justin's Tech Blog(RSS)
    My Alumni
    My Website
    Friend's Blog
    PHP/MySQL经验点滴
    大麦英语学习论坛
    速推网
    存档
    软件项目交易
    订阅我的博客
    XML聚合  FeedSky
    订阅到鲜果
    订阅到Google
    订阅到抓虾
    订阅到BlogLines
    订阅到Yahoo
    订阅到GouGou
    订阅到飞鸽
    订阅到Rojo
    订阅到newsgator
    订阅到netvibes

    原创 CVS server on Ubuntu 6.0.6收藏

    新一篇: Timer on Windows and Linux | 旧一篇: Zend Framework Preview 0.1.1 Released

    1. Edit /etc/apt/sources.list
      sudo vi /etc/apt/sources.list 

       

      uncomment the following two lines:
      deb http://cn.archive.ubuntu.com/ubuntu/ dapper universe
      deb-src
      http://cn.archive.ubuntu.com/ubuntu/ dapper universe

       

      uncomment the following two lines:update package:
      sudo apt-get update
    2. Install CVS
      install CVS files:
      sudo apt-get install cvs 

       

      install CVS server:
      sudo apt-apt install cvsd
      When prompted in the cvsd installation process for Repository, type in “/cvsroot”.

    3. Configure CVS
      goto /var/lib/cvsd and build the cvsroot:
      sudo cvsd-buildroot /var/lib/cvsd 

       

      create the folder cvsroot:
      sudo mkdir cvsroot

      and then initilize the repository
      sudo cvs -d /var/lib/cvsd/cvsroot init
      sudo chown -R cvsd:cvsd cvsroot

      create a user and password:
      sudo cvsd-passwd /var/lib/cvsd/cvsroot +justin

      and then change the AUTH type:
      sudo vi /var/lib/cvsd/cvsroot/CVSROOT/config
      uncomment the “SystemAuto=no” line.

    4. Test it
      cvs -d :pserver:justin@localhost:/cvsroot login
      cvs -d :pserver:justin@localhost:/cvsroot checkout .
    5. Done
     

    发表于 @ 2006年07月08日 13:30:00|评论(loading...)|编辑

    新一篇: Timer on Windows and Linux | 旧一篇: Zend Framework Preview 0.1.1 Released

    评论:没有评论。

    发表评论  


    当前用户设置只有注册用户才能发表评论。如果你没有登录,请点击登录
    Csdn Blog version 3.1a
    Copyright © Justin