Redhat 9.配置cvs步骤如下:
groupadd cvsgroup
adduser augo -g cvsgroup //augo是我采用的用户名
passwd augo
chmod 777 /home/augo
chmod 777 /home/augo/*
cd /etc/xinetd.d
vi cvspserver
设置内容如下:
service cvspserver
{
disable = no
socket_type = stream
wait = no
user = root
env = HOME=
server_args = -f --allow-root=/home/augo pserver
}
/etc/init.d/xinetd restart
利用lsof -i :2401 都能够看到ppserver一经在运行
cvs -d /home/augo init
cvs -d :pserver:augo@192.168.1.12:/home/augo login