Check This.
我的CVS安装笔记(Solaris) :)
-------------------------------------------------------------------------------
Config cvs server on sun solaris system
//*** login as root
#useradd cvsroot
#groupadd cvs
// add your users (user1, user2) to the cvs group
#vi /etc/group
// add the following line
-------------------------------------------------------------------------------
cvs:x:105:user1,user2...
-------------------------------------------------------------------------------
#vi /etc/inet/inetd.conf
// add the following line
-------------------------------------------------------------------------------
cvsserver stream tcp nowait root /usr/local/bin/cvs cvs --allow-root=/home/cvsroot pserver
-------------------------------------------------------------------------------
#vi /etc/inet/services
// add the following line
-------------------------------------------------------------------------------
cvsserver 2401/tcp
-------------------------------------------------------------------------------