[linux系列]为cvs建立用户脚本
摘要:#!/usr/bin/perl# Simple script to take a username and password and# return a line suitable for pasting into the CVS# password file#($u,$p,$g)=@ARGV;@d=(A..Z,a..z);$s=$d[rand(52)].$d[rand52];print $u...
阅读全文
[linux系列]CVS服务器安装
摘要:Red Hat Linux 8.0和9.0上设置CVS服务器 服务器的安装略过不提,因为安装了开发工具的话默认就已经有了CVS。就算没有,更新软件包就可以搞定,除非你一定要安装最新版本。 1.首先创建用于CVS的组和用户: 代码: #groupadd cvs #useradd cvs...
阅读全文