1.在
www.sunfreeware
cvs1.11.2
3 .2.建立乙個使用者組:web,所有的開發人員隸屬於這個組,其中cvsadmin是管理員,test用來測試。
#groupadd web
#useradd -m -g web -g gid -d /export/home/cvsadmin -s /bin/bash cvsadmin
#useradd -m -g web -g gid -d /export/home/test -s /bin/bash test
#gunzip cvs-1.11.20-sol9-sparc-local.gz
#pkgadd -d cvs-1.11.20-sol9-sparc-local
安裝完成後,cvs位於/usr/local/bin下。可以將/usr/local/bin加在path中,以方便使用,完成後可以使用/usr/local/bin/cvs -version檢視版本資訊
在export/home目錄下建立cvs目錄,並初始化cvs資料庫,將cvs目錄授權給web使用者組
#mkdir /export/home/cvs
#/usr/local/bin/cvs -d /export/home/cvs init
#chgrp web /export/home/cvs
#chmod -r 770 /export/home/cvs
pserver模式要求在inetd中載入,需要修改兩個檔案/etc/services檔案和/etc/inetd.conf檔案,並需要重新啟動inetd,執行以下命令。
#vi /etc/services
cvspserver 2401/tcp #cvs server tcp port
cvspserver 2401/udp #cvs server udp port
#vi /etc/inetd.conf
cvspserver stream tcp nowait root /usr/local/cvs/bin/cvs cvs -f --allow-root=/opt/cvs/group1
#/etc/rc2.d/s72inetd stop
#/etc/rc2.d/s71inetd start
這時候最好的工具就是dmesg|grep inetd命令來觀查是否有錯誤資訊
主要是測試埠是否正常監聽,telnet的作用太大了,玩mud,測試各種tcp服務,這個也不例外。
#telnet 127.0.0.1 2401
trying 127.0.0.1...
connected to localhost.
escape character is '^]'.
ok回車
cvs [pserver aborted]: bad auth protocol start: ok
伺服器正常。
進入eclipse,開啟工程,右鍵,選擇team-》share project,輸入cvs伺服器引數。萬里長征第一步完成。
windows下CVS安裝與配置
我安裝的是cvsnt2.5.04 zen build 3236 系統win7 注意按照完後要將系統防火牆關閉,否則其他使用者無法登入 安裝一路next就行 安裝完後在server settings 中run as 選擇當前系統的乙個超級使用者 預設是 client user 例如我的 adminis...
linux 下cvs安裝與配置
方法1 1.mkdir home cvsroot 2.cvs d home cvsroot init 方法21.export cvsroot home cvsroot 2.cvs init note d將會覆蓋cvsroot環境變數 新增使用者與組 1.groupadd cvs 2.useradd ...
Visual Studio 開發環境安裝與配置
0001開發環境全屏顯示 在選單欄中選擇 檢視 全屏顯示 選項 快捷鍵 shift alt enter 0002為資料庫建立快取依賴 002 為程式設定版本和幫助資訊 有關程式集的常規資訊通過下列屬性集 控制。更改這些屬性值可修改 與程式集關聯的資訊。assembly assemblytitle 為...