Messages

melissa:2YJaA7 http://google.com sdf http://google.com http://google.com sdfgwq

melissa:YhmI00 http://google.com sdf http://google.com http://google.com sdfgwq

melissa:N5ppGb http://google.com sdf http://google.com http://google.com sdfgwq

Oyuduaod:comment6

Fgmaebwo:comment2

User Name:

Content:

Tags:

gae(3)    css(3)    日志(3)    python(3)    svn(3)    weblogic(2)    ie(2)    ftp(2)    c++(2)    原则(2)    bugfree(2)    jira(2)    turbolinux(2)    tinyMCE(1)    南京(1)    static_dir(1)    django(1)   

 

 Categories:   All    管理 (27)    GAE (7)    杂谈 (14)    网站 (7)    Python (6)    Java (8)    c++ (1)    生活 (8)    我的儿子 (4)    Database (4)    骗局 (2)    source code (1)

Install svn on turbolinux whith rpm package

2009-03-09 08:03:36   Category:管理   Comments:0   Reference:0   Tags: svn , turbolinux , rpm

  I installed the rpm version on my turbolinux and it work fine. Three files are needed:
    http://www.open.collab.net/nonav/downloads/subversion/gpg-key/RPM-GPG-KEY-csvn.asc
    http://downloads-guests.open.collab.net/files/documents/61/1375/CollabNetSubversion-client-1.5.5-1.i386.rpm
    http://downloads-guests.open.collab.net/files/documents/61/1376/CollabNetSubversion-server-1.5.5-1.i386.rpm
First, import the GPG key.
     sudo rpm --import /path/to/RPM-GPG-KEY-csvn.asc
Second, install the client.
     sudo rpm -ivh /path/to/client.rpm
Third, install the server.
     sudo rpm -ivh /path/to/server.rpm
Fourth, configure the path. add the following line to /etc/profile:
     PATH=/opt/CollabNet_Subversion/bin:$PATH
Fifth, configure the server and start the service.
    sudo Configure-CollabNet-Subversion
  The subversion server will be started automatically when the OS is started, because the collabnet_subversion is put in the /etc/rc.d/init.d/.

TrackBack URL:http://jum.appspot.com/feeds/trackBack/9644/

Inatall svn on turbolinux with souce code

2009-03-05 07:22:13   Category:管理   Comments:2   Reference:0   Tags: turbolinux , svn

  1. Download the source code from http://subversion.tigris.org/servlets/ProjectDocumentList?folderID=9755&expandFolder=9755&folderID=10269
  2. Uncompress the tar file.
  3. tar xvzf Subversion-1.5.5.tar.gz
  4. Go into the directory.
  5. cd Subversion-1.5.5
  6. Configure the path and enviroment.

  7. ./configure --prefix=/opt/subversion
    make
    make install
  8. Create the repository.

  9. cd /opt/subversion/bin
    svnadmin create /tmp/project1
  10. Configure the repository(It is same with install svn server in my computer).

  11. Start the svn server.
  12. svnserve -d -r /tmp/project1

 

TrackBack URL:http://jum.appspot.com/feeds/trackBack/9641/