我有一个专用的Ubuntu8.04服务器,我想在上面建立一个CVS存储库。我遵循了不同的指南,试图设置它,但总是卡在同一点上。
$ cvs -d :pserver:pcm@localhost:/cvsrepo checkout .
cvs [checkout aborted]: could not get working directory: Function not implemented
我已经通过两种不同的方法设置了服务器,一种是使用cvs和xinetd来运行服务器,目前我正在尝试使用cvs/cvsd方法。通过这两种方式,我都可以启动服务器,并使用本地帐户或cvs创建的帐户登录到服务器。一旦我尝试检出或导入任何东西,我就会得到错误。
在我当前的尝试中,我使用的不是本地帐户,而是cvsd生成的用户名/密码。
我使用的是CVS版本1.12.13。
下面是跟踪信息:
$ cvs -t -d :pserver:pcm@localhost:/cvsrepo checkout .
-> main: Session ID is cZozIZVrlXzLEMLt
-> main loop with CVSROOT=/cvsrepo
-> safe_location( where=(null) )
-> open_connection_to_server (:pserver:pcm@localhost:/cvsrepo)
-> Connecting to localhost(127.0.0.1):2401.
cvs checkout: warning: unrecognized response `S -> serve_directory (.)'
from cvs server
cvs checkout: warning: unrecognized response `S -> dirswitch (., /cvsrepo/)'
from cvs server cvs checkout: warning: unrecognized response `S -> my_module (.,
Updating, NULL, NULL)' from cvs server cvs checkout: warning: unrecognized response
`S -> serve_directory (.)'
from cvs server
cvs checkout: warning: unrecognized response `S -> dirswitch (., /cvsrepo/)' from cvs
server cvs checkout: warning: unrecognized response `S -> do_cvs_command (checkout)' from cvs server cvs checkout: warning: unrecognized response `S -> server_notify()' from cvs server cvs [checkout aborted]: could not get working directory: Function not implemented S -> safe_location( where=(null) ) S -> Lock_Cleanup() S -> Simple_Lock_Cleanup() S -> server_cleanup()
-> close_connection_to_server ()
让我知道还需要什么其他信息。我觉得这只是一些被遗漏的小许可问题。
发布于 2009-06-30 16:43:03
cvs -t -d :pserver:pcm@localhost:/cvsrepo checkout。而不是。签出模块名称尝试CVSROOT
cvs -t -d :pserver:pcm@localhost:/cvsrepo checkout CVSROOT
应该转到您的本地目录
https://stackoverflow.com/questions/798074
复制相似问题