> What should I do in order to make it work? thanks
Please, if you have to use Google Groups, make sure you quote the original
text properly. The default behavior of Google Groups is broken, annoying
and stupid. Without a proper quote from the original, people who get just
a single line from you won't be able to know what you are really talking
about.
For instance, seeing the above one-liner, someone who hasn't watched the
entire thread can't tell what "it" refers to. The following post of mine
contains the part that Google Groups didn't quote for you:
% > Hi have installed CVS on solaris 8.
% > and add the following into tester1 system on /etc/inetd.conf
% >
% > cvspserver stream tcp nowait root /usr/local/bin/cvs cvs
% > --allow-root=/storages/test_cvs pserver
% >
% > and I issue a command as below on anther system, I got "root not
% > allowed"
% >
% > root not allowed
%
% Note the --allow-root option. Your CVS server will only allow checkouts
% from that repository.
You can make the remote repository access of CVS to work fine by making
sure that /backups/testcvs is included in the set of --allow-root options
the CVS server starts up with. Multiple options can be passed if
necessary:
# inetd.conf line (wrapped for USENET), make sure it's all on one line
# and the continuation "\" character is removed.
cvspserver stream tcp nowait root /usr/local/bin/cvs cvs \
--allow-root /storages/test_cvs --allow-root /backups/testcvs pserver
All the details of the options you can use and their significance are
described in the reference manual of CVS too.
Regards,
Giorgos