CVS Server Configuration under Ubuntu
Author
Zhou Renjian
Create@
2007-02-01 10:45
Source: http://doc.ubuntu.com/ubuntu/serverguide/C/cvs-server.html
sudo apt-get install cvs
sudo apt-get install xinetd
cvs -d /your/new/cvs/repo init
/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
}sudo /etc/init.d/xinetd restart
sudo netstat -a | grep tcp
tcp 0 0 *:cvspserver *:* LISTEN