A problem met in converting CVS to SVN >>
<< Firefox Tip: View page source using an external program
CVS Server Configuration under Ubuntu

Author Zhou Renjian Create@ 2007-02-01 10:45
whizz Note icon
Source: http://doc.ubuntu.com/ubuntu/serverguide/C/cvs-server.html

  1. sudo apt-get install cvs
  2. sudo apt-get install xinetd
  3. cvs -d /your/new/cvs/repo init
  4. /etc/xinetd.conf

    service cvspserver
    {
    port = 2401
    socket_type = stream
    protocol = tcp
    user = root
    wait = no
    type = UNLISTED
    server = /usr/bin/cvs
    server_args = -f --allow-root /var/lib/cvs pserver
    disable = no
    }
  5. sudo /etc/init.d/xinetd restart
  6. sudo netstat -a | grep tcp
    tcp 0 0 *:cvspserver *:* LISTEN

本记录所在类别:
本记录相关记录: